/* ===========================================
   ELEGANT INN HOSPITALITY LLP
   COMING SOON WEBSITE
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --green:#12372A;
    --green2:#1B4D3E;
    --gold:#C9A227;
    --light:#F8F5EE;
    --white:#ffffff;
    --text:#555;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:#333;
    overflow-x:hidden;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

a{

    text-decoration:none;

}

/* ===========================
        HEADER
=========================== */

header{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:25px 0;

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo{

    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    color:white;
    font-weight:700;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    color:white;
    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:var(--gold);

}

/* ===========================
        HERO
=========================== */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

}

/* Hotel background */

.hero::before{

    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        #12372A 0%,
        #1B4D3E 50%,
        #0F2E24 100%
    );

}
.overlay{

    display:none;

}

.hero-content{

    position:relative;

    z-index:5;

    width:90%;

    max-width:850px;

}

.subtitle{

    display:inline-block;

    color:var(--gold);

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:25px;

    font-size:15px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:88px;

    color:white;

    margin-bottom:20px;

    line-height:1;

}

.hero p{

    color:#F1F1F1;

    font-size:20px;

    max-width:760px;

    margin:auto;

    line-height:1.9;

}

/* ===========================
        BUTTONS
=========================== */

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:45px;

}

.gold-btn{

    background:var(--gold);

    color:#12372A;

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.gold-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.25);

}

.outline-btn{

    border:2px solid white;

    color:white;

    padding:16px 38px;

    border-radius:50px;

    transition:.35s;

}

.outline-btn:hover{

    background:white;

    color:#12372A;

}

/* ===========================
      SECTION TITLE
=========================== */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    color:var(--green);

    position:relative;

    display:inline-block;

}

.section-title h2::after{

    content:"";

    width:70px;

    height:3px;

    background:var(--gold);

    position:absolute;

    left:50%;

    bottom:-15px;

    transform:translateX(-50%);

}
/*=========================================
            FEATURES
=========================================*/

.features{

    padding:90px 0;
    background:#fff;

}

.features .container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.feature{

    background:white;
    padding:40px 25px;
    text-align:center;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.feature:hover{

    transform:translateY(-10px);

}

.feature i{

    font-size:42px;
    color:var(--gold);
    margin-bottom:20px;

}

.feature h3{

    font-family:'Cormorant Garamond',serif;
    color:var(--green);
    font-size:30px;

}

/*=========================================
            BRANDS
=========================================*/

#brands{

    padding:110px 0;
    background:#F8F5EE;

}

.brand-grid{

    width:90%;
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.card{

    background:white;

    border-radius:25px;

    padding:55px 35px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(201,162,39,.35);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.card h3{

    font-family:'Cormorant Garamond',serif;

    color:var(--green);

    font-size:38px;

    margin-bottom:15px;

}

.card p{

    color:#666;

    font-size:18px;

}

/*=========================================
            CONTACT
=========================================*/

#contact{

    padding:110px 0;

    background:var(--green);

}

.contact-grid{

    width:90%;
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.contact-grid div{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:18px;

    padding:28px;

    color:white;

    display:flex;

    align-items:center;

    gap:18px;

}

.contact-grid i{

    color:var(--gold);

    font-size:28px;

    width:35px;

}

.contact-grid a{

    color:white;

}

.contact-grid a:hover{

    color:var(--gold);

}

/*=========================================
            FOOTER
=========================================*/

footer{

    background:#0E271E;

    padding:40px 20px;

    text-align:center;

    color:white;

}

.social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:20px;

}

.social i{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#1B4D3E;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.35s;

}

.social i:hover{

    background:var(--gold);

    color:#12372A;

    transform:translateY(-5px);

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.hero h1{

    font-size:60px;

}

.features .container{

    grid-template-columns:repeat(2,1fr);

}

.brand-grid{

    grid-template-columns:1fr;

}

.contact-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

header{

    padding:18px 0;

}

header .container{

    flex-direction:column;

    gap:15px;

}

nav{

    gap:18px;

}

.hero{

    min-height:100vh;
    padding:100px 20px 70px;

}

.hero h1{

    font-size:48px;

}

.hero p{

    font-size:17px;

}

.buttons{

    flex-direction:column;

}

.gold-btn,
.outline-btn{

    width:100%;
    max-width:300px;

}

.features .container{

    grid-template-columns:1fr;

}

.feature{

    padding:35px 20px;

}

.section-title h2{

    font-size:36px;

}

.card{

    padding:40px 25px;

}

.card h3{

    font-size:30px;

}

}
/*=========================
      ANIMATIONS
==========================*/

.hidden{

opacity:0;
transform:translateY(60px);
transition:1s;

}

.show{

opacity:1;
transform:translateY(0);

}

/* Floating WhatsApp */

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

color:white;

box-shadow:0 10px 25px rgba(0,0,0,.3);

z-index:999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}