/* ===========================
   LVIP DESIGN SYSTEM
=========================== */

:root{
  --primary:#26798C;
  --primary-dark:#339AA6;
  --primary-light:#D9C8BF;
  --secondary:#D9C8BF;
  --accent:#CC5500C8;

  --white:#FFFFFF;
  --light:#F4F1EF;
  --gray:#6C757D;
  --dark:#183B40;

  --shadow-sm:0 4px 12px rgba(0,0,0,.08);
  --shadow-md:0 10px 25px rgba(0,0,0,.12);
  --shadow-lg:0 18px 40px rgba(38,121,140,.25);

  --radius:16px;
  --transition:.35s ease;
}
/* ===========================
   GLOBAL
=========================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Segoe UI',sans-serif;
  background:var(--light);
  color:var(--dark);
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:80px 0;
}

h1,h2,h3,h4{
  font-weight:700;
  color:var(--primary);
}

h2{
  font-size:2.6rem;
  margin-bottom:20px;
  text-align:center;
}

.hero-p{
    color:var(--white);
}

p{
  color:var(--dark);
}

/* ===========================
   HEADER
=========================== */

/* HEADER */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 5%;

    background:
    linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );

    box-shadow:
    0 4px 15px rgba(0,0,0,.15);

    position:sticky;
    top:0;
    z-index:1000;
}

/* LOGO */

.logo{
    flex:0 0 auto;
    width:110px;
    height:110px;
    cursor:pointer;
    transition:.3s ease;
}

.logo a{
    display:block;
    width:100%;
    height:100%;
}

.logo img{
    display:block;
    width:100%;
    height:100%;
    max-width:110px;
    max-height:110px;
    object-fit:contain;
}

.logo:hover{
    transform:scale(1.03);
}

/* NAVIGATION */

nav{
    display:flex;
    align-items:center;
    gap:30px;
}

nav a{
    color:var(--white);
    text-decoration:none;

    font-weight:600;

    position:relative;

    transition:.3s ease;
}

/* UNDERLINE ANIMATION */

nav a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:3px;

    background:var(--white);

    transition:.3s ease;
}

nav a:hover::after{
    width:100%;
}

nav a:hover{
    transform:translateY(-2px);
}

/* MOBILE */

@media (max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
        padding:15px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .logo{
        width:84px;
        height:84px;
    }

    .logo img{
        max-width:84px;
        max-height:84px;
    }

    .hero-image img{
        display:none;
    }

}

/* ===========================
   HERO
=========================== */


.hero{
  min-height:90vh;

  background:
  linear-gradient(
    rgba(24,59,64,.78),
    rgba(51,154,166,.75)
  ),
  url('hero.jpg');

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
}

.hero-content{
  max-width:750px;
  color:white;
}

.hero-image{
    position:relative;
    left:20%;
    width:80%;
    height:80vh;
}

.hero-image img{
    top:15px
    width:50%;
    height:106%;
    object-position:right;
    opacity:0.86;
    object-fit:cover;
    border-radius:20px;
}

.hero h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:25px;
  color:var(--white);
  text-shadow:0 4px 15px rgba(0,0,0,.3);
  text-align:left;
}

.hero-subtitle{
  display:inline-block;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(10px);

  padding:14px 24px;
  border-radius:10px;

  font-size:1.2rem;
  margin-bottom:25px;
}

.hero{background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)), url(images/lansingskyline.jpg) center/cover;height:600px;color:var(--white);display:flex;align-items:center}
.hero-content{max-width:700px;padding:0 8%}
.hero p{font-size:1.3rem;background:var(--primary);display:inline-block;padding:10px 16px;border-radius:4px}

/* ===========================
   BUTTONS
=========================== */

.don-btn{display:inline-block;margin: 0 auto;background:var(--primary);color:var(--white);padding:12px 24px;text-decoration:none;border-radius:5px;margin-top:20px;transition:.3s ease}
.btn{display:inline-block;background:var(--primary);color:var(--white);padding:12px 24px;text-decoration:none;border-radius:5px;margin-top:20px}

/* ===========================
   PROGRAM CARDS
=========================== */

.program-section{
    padding:100px 0;
    background:#ffffff;
}

.program-section h4,
.program-section p{
    text-align:center;
}

.section-intro{
    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
    font-size:1.1rem;
}

.program-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:var(--white);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 20px 45px rgba(38,121,140,.20);
}

.card img{
    display:block;
    width:100%;
    height:180px;
    object-fit:contain;
    object-position:center;
    padding:22px;
    background:#ffffff;
}

.card-content{
    padding:25px;
}

.card-content h3{
    color:var(--primary);
    font-size:.95rem;
    text-transform:uppercase;
    margin-bottom:8px;
}

.card-content h4{
    margin-bottom:15px;
    font-size:1.4rem;
}

.card-content p{
    color:var(--dark);
    line-height:1.7;
}

/* ===========================
   IMPACT AND FAITH SECTION
=========================== */

.impact,
.faith{
    padding:90px 0;
}

.impact h2,
.faith h2{
    text-align:center;
    color:var(--primary);
    margin-bottom:25px;
}

.impact{
    background:#F4F1EF;
}

.faith{
    background:white;
}

.section-intro{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
    font-size:1.1rem;
}

.impact-grid,
.faith-content{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.impact-card,
.faith-card{
    background:var(--white);
    padding:30px;
    border-radius:16px;
    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s ease;
}

.impact-card:hover,
.faith-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(38,121,140,.18);
}

.impact-card h3,
.faith-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about,
.mission,
.why{
    padding:90px 0;
}

.about{
    background:#ffffff;
}

.mission{
    background:#F4F1EF;
}

.why{
    background:#ffffff;
}

.about h2,
.mission h2,
.why h2{
    text-align:center;
    color:var(--primary);
    margin-bottom:25px;
}

.about p,
.mission p,
.why p{
    max-width:900px;
    margin:0 auto 20px;
    text-align:center;
    font-size:1.1rem;
    line-height:1.9;
}

/* ===========================
   DONATION SECTION
=========================== */

.donate{
  background:
  linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary)
  );

  color:white;
  text-align:center;
}

.donate p{
  color:var(--white);
}

/* ===========================
   FOOTER
=========================== */

footer{
  background:var(--primary);
  color:var(--white);
  text-align:center;
  padding:40px 20px;
}

footer a{
  color:var(--accent);
  text-decoration:none;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media(max-width:992px){

  .hero h1{
    font-size:3rem;
  }

  .about-content{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .header-inner{
    flex-direction:column;
    gap:20px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero{
    text-align:center;
    min-height:75vh;
  }

  .hero h1{
    font-size:2.3rem;
  }

  h2{
    font-size:2rem;
  }

  .program-grid{
    grid-template-columns:1fr;
  }

  .stats{
    grid-template-columns:1fr;
  }
}




h2{text-align:center;font-size:2.4rem}


/* Contact Form Styles */
form{
    background:white;
    padding:40px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    max-width:800px;
    margin:auto;
}

.form-group{
    margin-bottom:20px;
}

input,
textarea,
select{

width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:10px;
font-size:1rem;
margin-top:8px;

}

input:focus,
textarea:focus,
select:focus{

outline:none;
border-color:var(--primary);
box-shadow:0 0 0 4px rgba(38,121,140,.15);

}

#formMessage,
#volunteerMessage{

margin-top:15px;
font-weight:600;
color:var(--primary);

}

/* Contact Section Styles */
.contact-section{
    padding:80px 0;
    background:white;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.contact-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.contact-card{
    background:white;
    padding:35px;
    text-align:center;

    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(38,121,140,.18);
}

.contact-icon{
    font-size:3rem;
    margin-bottom:15px;
}

.contact-card h3{
    color:var(--primary);
    margin-bottom:10px;
}

.contact-card a{
    color:var(--accent);
    text-decoration:none;
    font-weight:600;
}

.contact-card a:hover{
    text-decoration:underline;
}
@media(max-width:768px){
  .card img{
    height:150px;
    padding:18px;
  }
}


/* Rebuilt program icons */
.program-grid .card img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    object-position: center;
    padding: 18px;
    background: #ffffff;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .program-grid .card img {
        height: 165px;
        padding: 14px;
    }
}

/* Form submission status + hidden spam trap */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status { margin-top: 14px; font-weight: 700; }
.form-status.success { color: #176b37; }
.form-status.error { color: #9b1c1c; }
button[disabled] { opacity: .65; cursor: not-allowed; }
