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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F8F6F2;
    color:#333;
}

/* NAVBAR */

.navbar{
    position:sticky;
    top:20px;
    width:90%;
    max-width:1200px;
    margin:20px auto;
    padding:16px 30px;

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

    background:rgba(255,255,255,.85);
    backdrop-filter:blur(20px);

    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    z-index:1000;
}

.nav-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.nav-brand img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.nav-brand span{
    font-size:1.3rem;
    font-weight:700;
    color:#0B5D56;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#555;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#0B5D56;
}

.nav-btn{
    text-decoration:none;
    background:#0B5D56;
    color:white;
    padding:12px 24px;
    border-radius:999px;
    font-weight:600;
}

.nav-links-cta{
    display:none;
}

.nav-toggle{
    display:none;
    width:44px;
    height:44px;
    padding:0;
    border:0;
    background:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    flex-shrink:0;
}

.nav-toggle span{
    display:block;
    width:22px;
    height:2px;
    background:#0B5D56;
    border-radius:2px;
    transition:transform .25s ease,opacity .25s ease;
}

.navbar.open .nav-toggle span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.navbar.open .nav-toggle span:nth-child(2){
    opacity:0;
}

.navbar.open .nav-toggle span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* HERO */

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
    padding:80px 8%;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
    aspect-ratio:1;
    object-fit:cover;
    display:inline-block;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-family:'Playfair Display',serif;
    font-size:5rem;
    line-height:1;
    color:#0B5D56;
    margin-bottom:25px;
}

.hero-content p{
    font-size:1.1rem;
    line-height:1.8;
    color:#666;
    margin-bottom:18px;
    max-width:550px;
}

.hero-content p:last-of-type{
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-primary{
    text-decoration:none;
    background:#0B5D56;
    color:white;
    padding:15px 30px;
    border-radius:999px;
    font-weight:600;
}

.btn-secondary{
    text-decoration:none;
    border:2px solid #0B5D56;
    color:#0B5D56;
    padding:15px 30px;
    border-radius:999px;
    font-weight:600;
}

/* SECTIONS */

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    font-family:'Playfair Display',serif;
    color:#0B5D56;
    font-size:3rem;
    margin-bottom:60px;
}

.about{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about-text{
    line-height:1.9;
    font-size:1.1rem;
    color:#555;
}

/* TEAM */

.team{
    background:white;
}

.team-grid{
    max-width:800px;
    margin:0 auto 50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.team-card{
    background:#F8F6F2;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
}

.team-avatar{
    width:150px;
    height:150px;
    overflow:hidden;
    margin:0 auto 20px;
    border-radius:50%;
    background:#0B5D56;
    color:white;
    font-family:'Playfair Display',serif;
    font-size:1.8rem;
    display:flex;
    align-items:center;
    justify-content:center;
}

.team-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.team-card h3{
    color:#0B5D56;
    font-size:1.3rem;
    margin-bottom:8px;
}

.team-role{
    color:#666;
    line-height:1.6;
}

.team-text{
    max-width:800px;
    margin:auto;
    text-align:center;
    line-height:1.9;
    font-size:1.1rem;
    color:#555;
}

.team-text p + p{
    margin-top:20px;
}

/* EVENTS */

.section-intro{
    max-width:800px;
    margin:-30px auto 50px;
    text-align:center;
    line-height:1.8;
    font-size:1.1rem;
    color:#555;
}

.event-photo{
    max-width:800px;
    margin:0 auto 40px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.event-photo img{
    width:100%;
    aspect-ratio:3/2;
    object-fit:cover;
    display:block;
}

.event-list{
    max-width:1000px;
    margin:auto;
    background:white;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    overflow:hidden;
}

.event-row{
    display:grid;
    grid-template-columns:220px 1fr auto;
    gap:30px;
    align-items:center;
    padding:30px 35px;
    border-bottom:1px solid #EEE9E1;
}

.event-row:last-child{
    border-bottom:none;
}

.event-row h3{
    color:#0B5D56;
    font-size:1.3rem;
    line-height:1.3;
}

.event-info p{
    color:#666;
    line-height:1.7;
}

.event-info a{
    color:#0B5D56;
    font-weight:600;
    text-decoration:none;
}

.event-info a:hover{
    text-decoration:underline;
}

.event-action{
    text-align:right;
}

.btn-small{
    display:inline-block;
    text-decoration:none;
    border:2px solid #0B5D56;
    color:#0B5D56;
    background:white;
    padding:11px 22px;
    border-radius:999px;
    font-weight:600;
    font-size:.95rem;
    white-space:nowrap;
    transition:.3s;
}

.btn-small:hover{
    background:#0B5D56;
    color:white;
}

.event-note{
    max-width:800px;
    margin:35px auto 0;
    text-align:center;
    line-height:1.8;
    color:#666;
}

.section-cta{
    text-align:center;
    margin-top:50px;
}

/* PRIVATE EVENTS */

.private{
    background:#0B5D56;
    color:white;
}

.private .section-title,
.private .section-intro{
    color:white;
}

.private .section-intro{
    color:rgba(255,255,255,.85);
}

.private-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.private-col{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:35px;
}

.private-col h3{
    margin-bottom:18px;
    font-size:1.3rem;
}

.private-col ul{
    list-style:none;
    padding:0;
}

.private-col li{
    line-height:1.6;
    padding:8px 0 8px 22px;
    position:relative;
    color:rgba(255,255,255,.9);
}

.private-col li::before{
    content:"•";
    position:absolute;
    left:4px;
    color:#E8807A;
}

.btn-light{
    text-decoration:none;
    background:white;
    color:#0B5D56;
    padding:15px 30px;
    border-radius:999px;
    font-weight:600;
    display:inline-block;
}

/* CONTACT */

.contact-box{
    max-width:700px;
    margin:auto;
    text-align:center;
}

.contact-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.contact-box p a{
    color:#0B5D56;
    font-weight:600;
    text-decoration:none;
}

.contact-box p a:hover{
    text-decoration:underline;
}

/* FOOTER */

footer{
    background:#0B5D56;
    color:white;
    text-align:center;
    padding:40px;
}

/* MOBILE */

@media(max-width:900px){

    .section-title{
        font-size:2.2rem;
        margin-bottom:40px;
    }

    .event-row{
        grid-template-columns:1fr;
        gap:14px;
        align-items:start;
        padding:25px;
    }

    .event-action{
        text-align:left;
    }


    .about{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .hero-content h1{
        font-size:3.5rem;
    }

    .hero-content p{
        margin:auto auto 35px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .navbar{
        width:95%;
        padding:12px 18px;
    }

    .nav-brand span{
        font-size:1.15rem;
    }

    .nav-btn{
        display:none;
    }

    .nav-toggle{
        display:flex;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:calc(100% + 10px);
        left:0;
        right:0;
        flex-direction:column;
        gap:0;
        padding:10px 20px 20px;
        background:white;
        border-radius:20px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .navbar.open .nav-links{
        display:flex;
    }

    .nav-links a{
        padding:14px 4px;
        border-bottom:1px solid #EEE9E1;
        font-size:1.05rem;
        color:#333;
    }

    .nav-links a:last-of-type{
        border-bottom:none;
    }

    .nav-links-cta{
        display:block;
        margin-top:14px;
        text-align:center;
        background:#0B5D56;
        color:white !important;
        border-radius:999px;
        padding:14px 24px !important;
        font-weight:600;
    }
}


/* GALLERY */

.gallery{
    background:white;
}

.gallery-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.gallery-item{
    margin:0;
    aspect-ratio:4/3;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.gallery-item:hover img{
    transform:scale(1.04);
}

@media(max-width:900px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }
}

@media(max-width:600px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}

/* OUR LOCATIONS */

.our-locations{
    background:white;
}

.location-grid{
    max-width:900px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.location-card{
    background:white;
    border-radius:20px;
    padding:40px 35px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    border-top:5px solid #0B5D56;
}

.location-tag{
    display:inline-block;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:#E8807A;
    margin-bottom:14px;
}

.location-card h3{
    font-family:'Playfair Display',serif;
    color:#0B5D56;
    font-size:1.7rem;
    margin-bottom:4px;
}

.location-venue{
    color:#0B5D56;
    font-weight:600;
    margin-bottom:16px;
}

.location-card p{
    color:#666;
    line-height:1.7;
}

.location-address{
    font-style:normal;
    color:#333;
    font-weight:500;
    line-height:1.6;
    margin-bottom:16px;
}

.location-note{
    margin-top:12px;
    font-size:.95rem;
    font-style:italic;
    color:#777;
}

.location-map{
    margin-top:22px;
    border-radius:14px;
    overflow:hidden;
    background:#EEE9E1;
}

.location-map iframe{
    display:block;
    width:100%;
    height:220px;
    border:0;
}

.location-link{
    display:inline-block;
    margin-top:16px;
    color:#0B5D56;
    font-weight:600;
    text-decoration:none;
}

.location-link:hover{
    text-decoration:underline;
}

.location-more{
    max-width:800px;
    margin:50px auto 0;
    text-align:center;
}

.location-more h3{
    font-family:'Playfair Display',serif;
    color:#0B5D56;
    font-size:1.6rem;
    margin-bottom:14px;
}

.location-more p{
    color:#555;
    line-height:1.8;
    font-size:1.05rem;
}
