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

body{
    font-family:'Poppins',sans-serif;
    background:#140605;
    color:white;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.navbar{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:rgba(15,5,4,0.9);
    backdrop-filter:blur(10px);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-family:'Cinzel',serif;
    color:#f6c76d;
    font-size:28px;
}

.logo img {
    height: 14vh;   
    max-height: 100px;
    width: auto;
    display: block;
}
.menu{
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:white;
}

.hero{
    min-height:110vh;
   background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
    url('images/header_bg.jpg.jpeg') left center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-family:'Cinzel',serif;
    font-size: clamp(48px,8vw,90px);
    color:#f7e8d3;
}

.hero p{
    margin-top:20px;
    color:#e8d0b2;
    line-height:1.8;
}

.section{
    padding:100px 0;
}

.dark-section{
    background:radial-gradient(circle at top,#4a0905,#140605);
}

.mini-title{
    width:max-content;
    margin:auto;
    background:rgba(255,180,70,0.12);
    color:#f6c76d;
    padding:10px 25px;
    border-radius:50px;
    font-size:13px;
    letter-spacing:4px;
}

.light{
    background:#ead9cf;
    color:#933;
}

.section-title{
    font-family:'Cinzel',serif;
    text-align:center;
    font-size:clamp(48px,7vw,90px);
    margin-top:30px;
    color:#fff2df;
}

.section-subtitle{
    text-align:center;
    margin-top:20px;
    color:#d4b799;
}

.offer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}

.offer-card{
    border:1px solid rgba(255,180,70,0.4);
    border-radius:25px;
    padding:40px;
    background:rgba(255,255,255,0.02);
}

.offer-card h3{
    font-family:'Cinzel',serif;
    font-size:42px;
    color:#fff1dd;
}

.price{
    margin-top:30px;
    font-size:58px;
    color:#ffcf47;
}

.offer-card span{
    display:block;
    margin-top:10px;
    color:#cba76f;
    letter-spacing:5px;
    font-size:13px;
}

.booking-box{
    margin-top:80px;
    border:1px solid rgba(255,180,70,0.4);
    border-radius:35px;
    padding:60px 30px;
    text-align:center;
    background:linear-gradient(90deg,#5f2d09,#500404);
}

.booking-label{
    color:#ffcf47;
    letter-spacing:6px;
}

.booking-number{
    margin-top:25px;
    font-family:'Cinzel',serif;
    font-size:64px;
    color:#fff2df;
}

.location-section{
    background:#f2ebe3;
    color:#3d120d;
    padding:100px 0;
   
}

.location-title{
    text-align:center;
    font-family:'Cinzel',serif;
    font-size:clamp(48px,7vw,90px);
    margin-top:25px;
}

.location-grid{
    margin-top:70px;
    display:flex;
    justify-content:center;
}

.location-card{
    background:white;
    border:1px solid #f0c95f;
    border-radius:35px;
    padding:100px;
    text-align:center;
    width:100%;
    max-width:900px;
}

.location-card.invitation{
    background:#f6eed1;
}

.location-card h3{
    font-size:42px;
    font-family:'Cinzel',serif;
}

.location-card p{
    margin-top:20px;
    line-height:1.8;
}

.location-card a{
    display:inline-block;
    margin-top:30px;
    color:#b01818;
    text-decoration:none;
    font-size:22px;
}

.footer{
    background:#180403;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding-bottom:60px;
}

.footer h3{
    font-family:'Cinzel',serif;
    font-size:44px;
    color:#f8e3bf;
}

.footer h4{
    color:#f5c857;
    letter-spacing:5px;
    margin-bottom:20px;
}

.footer p a,.footer p {
    color:#d4b799;
    line-height:2;
    list-style:none;
    text-decoration: none;
}
footer ul{
    list-style:none;
    padding:0;
    margin:0;
    gap:25px;
    justify-content:center;
    align-items:center;
    line-height: 2;
}

footer ul li a{
    text-decoration:none;
  color:#d4b799;
    font-size:16px;
    transition:0.3s ease;
}

footer ul li a:hover{
    color:#d4af37;
}


.copyright{
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:25px;
    color:#9d7c5f;
}

@media(max-width:900px){

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

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

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

    .booking-number{
        font-size:42px;
    }

    .offer-card h3,
    .location-card h3{
        font-size:32px;
    }

    .price{
        font-size:42px;
    }

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

    .nav-wrapper{
        flex-direction:column;
        gap:15px;
    }

}
@media(max-width:768px){

    .hero{
     background-position:left center;
        min-height:100vh;
    }

}