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

body{
font-family:Poppins,sans-serif;
background:#faf8f3;
color:#222;
}

header{
background:#062c27;
padding:50px 20px;
text-align:center;
color:white;
}

header img{
width:440px;
max-width:100%;
margin-bottom:-10px;
}

header h1{
font-family:Cinzel;
font-size:42px;
color:#d8af48;
}

header p{
margin-top:15px;
font-size:18px;
}


section{
padding:70px 10%;
}

h2{
text-align:center;
font-family:Cinzel;
color:#062c27;
font-size:36px;
margin-bottom:40px;
}

.about{
text-align:center;
max-width:900px;
margin:auto;
line-height:1.8;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
color:#b68b28;
margin-bottom:10px;
}

.amenity-img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    margin:15px 0;
    display:block;
    transition:transform .3s ease;
}

.card:hover .amenity-img{
    transform:scale(1.04);
}


iframe{
width:100%;
height:220px;
border:none;
border-radius:12px;
}

.social{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}

.social a{
text-decoration:none;
background:#062c27;
color:white;
padding:14px 22px;
border-radius:30px;
transition:.3s;
}

.social a:hover{
background:#d4af37;
color:#062c27;
}

.contact{
text-align:center;
font-size:18px;
line-height:2;
}

@media(max-width:768px){
    footer{
        flex-direction:column;
        text-align:center;
    }
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.video-grid video{
    width:100%;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    background:#000;
    cursor:pointer;
}


.hero-slider{

    position:relative;
    height:100vh;
    overflow:hidden;
    padding:0!important;

}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.slide img{

    width:100%;

    height:100%;

    object-fit:cover;

animation: zoom 5s ease forwards;
}

@keyframes zoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    );

}

.hero-content{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    width:90%;

    max-width:900px;

    color:#fff;

    z-index:5;

}

.hero-logo{

    width:180px;

    margin-bottom:20px;

    filter:drop-shadow(0 5px 20px rgba(0,0,0,.5));

}

.hero-subtitle{

    display:inline-block;

    color:#D4AF37;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

    margin-bottom:20px;

}

.hero-content h1{

    font-family:Cinzel;

    font-size:68px;

    line-height:1.15;

    margin-bottom:25px;

    text-shadow:0 4px 25px rgba(0,0,0,.6);

}

.hero-content p{

    font-size:22px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    padding:16px 38px;

    border-radius:40px;

    background:#D4AF37;

    color:#062C27;

    text-decoration:none;

    font-weight:600;

    transition:.35s;
    
    display:inline-block;
margin-top:30px;
padding:14px 30px;
border-radius:30px;
transition:.3s;

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.3);
background:white;
}

.btn-outline{

    background:transparent;

    color:#fff;

    border:2px solid rgba(255,255,255,.8);

}

.btn-outline:hover{

    background:#fff;

    color:#062C27;

}

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    z-index:20;

}

.scroll-down span{

    display:block;

    width:28px;

    height:48px;

    border:2px solid #fff;

    border-radius:30px;

    position:relative;

}

.scroll-down span:before{

    content:"";

    position:absolute;

    width:6px;

    height:6px;

    background:#fff;

    left:50%;

    transform:translateX(-50%);

    border-radius:50%;

    animation:scroll 2s infinite;

}

@keyframes scroll{

0%{top:8px;opacity:1;}

100%{top:28px;opacity:0;}

}

@media(max-width:768px){

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:17px;

}

.hero-logo{

width:130px;

}

}

html{
    scroll-behavior:smooth;
}




.map-link{
    color:#062C27;
    text-decoration:none;
    font-weight:600;
    cursor:pointer;
}

.map-link:hover{
    color:#D4AF37;
}

.map-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.map-box{
    position:relative;
    width:90%;
    max-width:900px;
    height:500px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

.close-map{
    position:absolute;
    top:12px;
    right:18px;
    font-size:36px;
    color:#062C27;
    background:#fff;
    width:42px;
    height:42px;
    line-height:42px;
    text-align:center;
    border-radius:50%;
    cursor:pointer;
    z-index:100;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

footer{
    background:#062c27;
    color:#fff;
    padding:20px 10%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-text{
    line-height:1.8;
}

.back-top{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    background:#D4AF37;
    color:#062C27;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.back-top:hover{
    background:#fff;
    transform:translateY(-3px);
}

@media(max-width:768px){
    footer{
        flex-direction:column;
        text-align:center;
    }
}

.contact a{
color:#062C27;
text-decoration:none;
font-weight:600;
}

.contact a:hover{
color:#D4AF37;
}