/* =========================
   SOVAREL HEADER + HERO CSS
========================= */

:root{
    --green:#263A27;
    --gold:#C9A96E;
    --dark:#1A2A1B;
    --text:#34332C;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Plus Jakarta Sans', sans-serif;
    background:#ffffff;
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* HEADER */
.site-header {
    width: 100%;
     height: 94px;
    background: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
}

.header-inner{
    width:100%;
    max-width:1600px;
    margin:0 auto;
      padding: 0 110px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo {
    width: 138px;
    min-width: 134px;
    display: flex;
    align-items: center;
}

.logo img{
    width:100%;
    height:auto;
    display:block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: 80px;
}

.main-nav a{
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:14px;
    font-weight:500;
    color:var(--text);
    text-transform:uppercase;
       letter-spacing: 1px;
    line-height:1;
    white-space:nowrap;
}

.reserve-btn {
    width: 176px;
    height: 35px;
    background: var(--green);
    color: #c9a96ed1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE TOGGLE */
.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:0;
    background:var(--green);
    color:var(--gold);
    font-size:28px;
    line-height:1;
    cursor:pointer;
}

/* HERO */
.hero{
    width:100%;
    min-height:740px;
    background:
        linear-gradient(rgba(38,58,39,.92), rgba(38,58,39,.92)),
        url("../images/banner.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#ffffff;
}

.hero-content{
    max-width:980px;
    padding:40px 20px 0;
}

.hero-subtitle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:13px;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:35px;
}

.hero-subtitle .line{
     width: 47px;
    height:1px;
    background:var(--gold);
    opacity:.8;
    flex-shrink:0;
}

.hero-title{
    font-family:'Cinzel', serif;
    font-size:72px;
    font-weight:400;
    color:#F4F2ED;
    text-transform:uppercase;
    text-align:center;
    letter-spacing:-2px;
    line-height:.95;
    transform:scaleY(.86);
}

.hero-title span{
    display:block;
}

.india-line{
    margin-top:18px;
}

.first-letter{
    display:inline;
    font-size:1.14em; /* increase only first letter */
    font-weight:400;  /* NOT bold */
    line-height:inherit;
}

.hero-title{
    font-family:'Cinzel', serif;
    font-size:68px;
    font-weight:400;
    line-height:.95;
    letter-spacing:-2px;
    color:#F4F2ED;
    text-transform:uppercase;
    text-align:center;

    transform:scaleY(.90);
}

.hero-title .title-line{
    display:block;
}

.hero-title .india-line{
    margin-top:20px;
}

.hero-title .cap{
    display:inline;
    font-size:1.16em;
    font-weight:400;
 
}


.hero-title span:last-child {
    margin-top: 16px;
}
.hero-highlight{
    font-family:'Cormorant Garamond', serif;
    font-size:74px;
    font-style:italic;
    font-weight:400;
    line-height:1;
    color:#C9A96E;
    margin-top:10px;

    transform:scaleY(.92);
}

.hero-description{
    max-width:800px;
    margin:35px auto 0;
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:18px;
    font-weight:400;
    line-height:1.9;
    color:#ffffff;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:24px;
    margin-top:45px;
}

.btn-gold,
.btn-outline{
    width:265px;
    height:53px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:14px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
}

.btn-gold{
    background:var(--gold);
    color:#ffffff;
}

.btn-outline{
    border:1px solid rgba(255,255,255,.35);
    color:#ffffff;
}

/* RESPONSIVE */
@media(max-width:1500px){
    .header-inner{
        padding:0 60px;
    }

    .main-nav{
        gap:36px;
    }

    .main-nav a{
        font-size:13px;
        letter-spacing:3.5px;
    }

    .logo{
        width:190px;
        min-width:190px;
    }
}

@media(max-width:1200px){
    .site-header{
        height:90px;
    }

    .header-inner{
        padding:0 25px;
    }

    .logo{
        width:155px;
        min-width:155px;
    }

    .main-nav{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#ffffff;
        display:none;
        flex-direction:column;
        align-items:center;
        gap:0;
        padding:22px 0;
        border-top:1px solid #eee;
        box-shadow:0 12px 30px rgba(0,0,0,.08);
    }

    .main-nav.active{
        display:flex;
    }

    .main-nav a{
        width:100%;
        text-align:center;
        padding:18px 20px;
        font-size:14px;
        letter-spacing:4px;
    }

    .reserve-btn{
        display:none;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }
}

@media(max-width:768px){
    .hero{
        min-height:640px;
    }

    .hero-title{
        font-size:48px;
    }

    .hero-highlight{
        font-size:44px;
    }

    .hero-description{
        font-size:15px;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-gold,
    .btn-outline{
        width:250px;
    }
}

@media(max-width:480px){
    .logo{
        width:135px;
        min-width:135px;
    }

    .hero-title{
        font-size:38px;
    }

    .hero-highlight{
        font-size:36px;
    }

   .hero-subtitle{
    font-size:11px;
    letter-spacing:2px;
    gap:10px;
}

.hero-subtitle .line{
    width:30px;
}
}