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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f6;
    color:#2d2d2d;
    line-height:1.7;
}

img{
    display:block;
    width:100%;
}

.container{
    width:min(1100px,92%);
    margin:auto;
}

/* NAVIGATION */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 6%;
    background:rgba(20,35,25,.55);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
    color:#fff;
    font-size:26px;
    font-weight:700;
}

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

.nav-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

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

/* HERO */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:5;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero-content h1{
    font-size:72px;
    margin-bottom:15px;
}

.hero-content h2{
    font-size:34px;
    margin-bottom:18px;
}

.hero-content p{
    max-width:750px;
    font-size:20px;
    margin-bottom:35px;
}

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

.primary,
.secondary,
.big-button,
.map-button{
    display:inline-block;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.primary,
.big-button{
    background:#25D366;
    color:white;
}

.secondary,
.map-button{
    background:#b8863b;
    color:white;
}

.primary:hover,
.secondary:hover,
.big-button:hover,
.map-button:hover{
    transform:translateY(-3px);
}

/* SECTIONS */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
    color:#23412f;
}

#about p{
    font-size:19px;
    text-align:center;
    max-width:850px;
    margin:auto;
}

/* AMENITIES */

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

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

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

.card i{
    font-size:42px;
    color:#b8863b;
    margin-bottom:20px;
}

/* GALLERY */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:18px;
}

.gallery img{
    border-radius:18px;
    height:260px;
    object-fit:cover;
    cursor:pointer;
    transition:.3s;
}

.gallery img:hover{
    transform:scale(1.03);
}

/* LOCATION */

#location{
    text-align:center;
}

/* CONTACT */

#contact{
    background:#23412f;
    color:white;
    text-align:center;
}

#contact h2{
    color:white;
}

.big-button{
    margin-top:25px;
}

/* FOOTER */

footer{
    background:#1d1d1d;
    color:white;
    text-align:center;
    padding:25px;
}

/* FLOATING BUTTON */

.floating{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:9999;
}

/* MOBILE */

@media(max-width:768px){

.hero-content h1{
    font-size:42px;
}

.hero-content h2{
    font-size:24px;
}

.hero-content p{
    font-size:16px;
}

.nav-links{
    display:none;
}

.hero-buttons{
    flex-direction:column;
}

section h2{
    font-size:32px;
}

}
