/*
Theme Name: Om Yugam Final Theme
Author: Maneesha Gupta
Version: 2.1
*/


/* =========================================================
   01. GLOBAL STYLES
========================================================= */

body{
    margin:0;
    font-family:'Segoe UI', sans-serif;
    background:#F5F8F5;
    color:#333;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}


/* =========================================================
   02. HEADER
========================================================= */

header{
    background:#ffffff;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:50px;
    margin-right:10px;
}

nav a{
    margin:0 10px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s ease;
}

nav a:hover{
    color:#2E7D32;
}


/* =========================================================
   03. STICKY HEADER
========================================================= */

.site-header{
    background:#ffffff;
    padding:14px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-area img{
    width:58px;
    height:auto;
}

.site-title{
    font-size:30px;
    font-weight:600;
    color:#1d1d1d;
    margin:0;
}


/* =========================================================
   04. MENU
========================================================= */

.main-navigation ul{
    display:flex;
    gap:34px;
    list-style:none;
    margin:0;
    padding:0;
}

.main-navigation a{
    text-decoration:none;
    color:#1f1f1f;
    font-size:17px;
    font-weight:600;
    transition:0.3s ease;
    position:relative;
}

.main-navigation a:hover{
    color:#4a9b50;
}

.main-navigation a::after{
    content:'';
    width:0;
    height:2px;
    background:#4a9b50;
    position:absolute;
    left:0;
    bottom:-6px;
    transition:0.3s ease;
}

.main-navigation a:hover::after{
    width:100%;
}


/* =========================================================
   05. HERO SECTION
========================================================= */

.hero{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    background-size:cover;
    background-position:center center;
}

.hero-section{
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:100px 20px;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{
    font-size:58px;
    line-height:1.15;
    color:#ffffff;
    margin-bottom:24px;
}

.hero-content p{
    font-size:24px;
    color:#ffffff;
    max-width:900px;
    margin:auto;
    line-height:1.7;
}

.hero-button{
    display:inline-block;
    margin-top:34px;
    background:#3d9442;
    color:#ffffff;
    padding:16px 34px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.hero-button:hover{
    background:#2f7c34;
}


/* =========================================================
   06. BUTTONS
========================================================= */

.btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}


/* =========================================================
   07. CONTENT SECTIONS
========================================================= */

.story{
    padding:80px 20px;
    text-align:center;
}

.story h2{
    color:#2E7D32;
    margin-bottom:20px;
}

.content-section{
    padding:90px 8%;
    text-align:center;
    background:#f4f7f2;
}

.content-section h2{
    font-size:46px;
    color:#35763b;
    margin-bottom:28px;
}

.content-section p{
    font-size:22px;
    line-height:1.9;
    color:#444;
    max-width:1000px;
    margin:auto;
}


/* =========================================================
   08. INNER PAGE DESIGN
========================================================= */

.inner-banner{
    background:#eef3ee;
    padding:70px 0 50px;
    text-align:center;
}

.inner-banner h1{
    font-size:54px;
    color:#1f3d1f;
    margin-bottom:15px;
}

.inner-banner p{
    font-size:22px;
    color:#4d5c4d;
}

.page-content{
    padding:80px 0;
    background:#ffffff;
}

.content-block{
    max-width:900px;
    margin:0 auto 70px;
}

.content-block h2{
    font-size:42px;
    margin-bottom:30px;
    color:#1f3d1f;
    text-align:center;
}

.content-block p{
    font-size:20px;
    line-height:1.9;
    color:#444;
    margin-bottom:25px;
    text-align:center;
}

.section-divider{
    width:80px;
    height:4px;
    background:#2f6b2f;
    border:none;
    margin:0 auto 40px;
    border-radius:20px;
}


/* =========================================================
   09. TWO COLUMN SECTION
========================================================= */

.two-column-section{
    display:flex;
    gap:40px;
    margin-top:50px;
    flex-wrap:wrap;
}

.column-box{
    flex:1;
    min-width:300px;
    background:#f7faf7;
    padding:40px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:all 0.3s ease;
}

.column-box:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.column-box h3{
    font-size:30px;
    margin-bottom:20px;
    color:#2f6b2f;
}

.column-box p,
.column-box li{
    font-size:18px;
    line-height:1.8;
    color:#444;
    margin-bottom:12px;
}

.column-box ul{
    padding-left:20px;
    margin-bottom:12px;
}


/* =========================================================
   10. GAU SEVA PAGE
========================================================= */

.gau-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:25px;
    margin:70px 0;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    line-height:0;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

/* Middle image alignment */

.gallery-item:nth-child(2) img{
    object-position:center top;
}

.gallery-item img:hover{
    transform:scale(1.03);
}


/* =========================================================
   11. DONATION CTA
========================================================= */

.donation-cta{
    margin-top:100px;
    padding:80px 40px;
    background:#f7faf7;
    text-align:center;
    border-radius:24px;
}

.donation-cta h2{
    font-size:48px;
    color:#1f3d1f;
    margin-bottom:25px;
}

.donation-cta p{
    max-width:800px;
    margin:0 auto 35px;
    font-size:20px;
    line-height:1.9;
    color:#444;
}

.cta-button{
    display:inline-block;
    background:#2f6b2f;
    color:#fff;
    padding:18px 40px;
    border-radius:10px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:all 0.3s ease;
}

.cta-button:hover{
    background:#1f4f1f;
    transform:translateY(-3px);
}


/* =========================================================
   12. FOOTER
========================================================= */

footer{
    text-align:center;
    padding:30px;
    background:#fff;
    border-top:1px solid #eee;
}

.site-footer{
    background:#ffffff;
    text-align:center;
    padding:40px 20px;
    border-top:1px solid #e5e5e5;
}

.site-footer p{
    margin:10px 0;
    color:#666;
    font-size:16px;
}


/* =========================================================
   13. MOBILE RESPONSIVE
========================================================= */

@media(max-width:768px){

    .container{
        width:92%;
    }

    .site-header{
        flex-direction:column;
        gap:16px;
        padding:18px;
    }

    .main-navigation ul{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-section{
        height:auto;
        padding:100px 0;
        background-position:center;
    }

    .hero-content h1{
        font-size:36px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:18px;
        line-height:1.6;
    }

    .hero-button{
        padding:14px 28px;
        font-size:16px;
    }

    .content-section h2,
    .content-block h2{
        font-size:34px;
    }

    .content-section p,
    .content-block p{
        font-size:18px;
        line-height:1.8;
    }

    .logo-area img{
        width:48px;
    }

    .site-title{
        font-size:24px;
        text-align:center;
    }

    .column-box{
        padding:30px;
    }

    .gau-gallery{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:auto;
    }

    .donation-cta{
        padding:60px 25px;
    }

    .donation-cta h2{
        font-size:36px;
    }

    .donation-cta p{
        font-size:18px;
    }

    .site-footer{
        padding:30px 0;
    }

    .site-footer p{
        font-size:15px;
        line-height:1.8;
    }
}