:root{
--green:#0f2e23;
--gold:#c6a75e;
--white:#ffffff;
}

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:var(--green);
color:white;
font-family:'Cormorant Garamond',serif;
line-height:1.6;
overflow-x:hidden;
}

/* HEADER */

.header{
position:fixed;
top:0;
left:0;
width:100%;
height:95px;
display:flex;
align-items:center;
z-index:1000;
transition:all .4s ease;
}

.header.scrolled{
background:#0f2e23;
height:85px;
}

.nav-container{
width:100%;
padding:0 60px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:70px;
}

.nav{
display:flex;
gap:40px;
align-items:center;
}

.nav a{
color:white;
text-decoration:none;
font-size:14px;
letter-spacing:2px;
text-transform:uppercase;
}

.book-btn{
border:1px solid var(--gold);
padding:8px 18px;
transition:.3s;
}

.book-btn:hover{
background:var(--gold);
color:#0f2e23;
}

/* HERO */

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.hero-image{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
top:0;
left:0;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
padding:20px;
}

.hero h1{
font-size:72px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
margin-bottom:40px;
opacity:.9;
}

.cta-btn{
border:1px solid var(--gold);
padding:14px 36px;
color:var(--gold);
text-decoration:none;
letter-spacing:2px;
transition:.3s;
}

.cta-btn:hover{
background:var(--gold);
color:#0f2e23;
}

/* INTRO */

.intro{
padding:140px 10%;
text-align:center;
max-width:900px;
margin:auto;
}

.intro h2{
font-size:44px;
margin-bottom:30px;
}

.intro p{
font-size:18px;
opacity:.9;
}

/* IMAGE BREAK */

.image-break{
height:70vh;
background:url("../images/sunset-break.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.image-break h2{
font-size:48px;
}

/* HIGHLIGHTS */

.highlights{
padding:120px 10%;
}

.highlight-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
text-align:center;
}

.highlight{
border:1px solid rgba(198,167,94,0.4);
padding:40px;
transition:.4s;
}

.highlight:hover{
transform:translateY(-6px);
border-color:var(--gold);
}

/* EDITORIAL IMAGES */

.editorial{
padding:120px 10%;
}

.editorial-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
}

.editorial-grid img{
width:100%;
height:100%;
object-fit:cover;
border-radius:6px;
transition:.6s;
}

.editorial-grid img:hover{
transform:scale(1.03);
}

/* TIMELINE */

.timeline{
padding:140px 10%;
max-width:900px;
margin:auto;
position:relative;
}

.timeline::before{
content:"";
position:absolute;
left:50%;
top:0;
height:100%;
width:1px;
background:rgba(198,167,94,0.3);
}

.timeline-item{
position:relative;
width:50%;
padding:40px;
}

.timeline-item:nth-child(odd){
left:0;
text-align:right;
}

.timeline-item:nth-child(even){
left:50%;
}

.timeline-item h3{
color:var(--gold);
margin-bottom:10px;
}

/* GALLERY */

.gallery{
padding:120px 10%;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.gallery-grid img{
width:100%;
height:300px;
object-fit:cover;
border-radius:6px;
transition:.6s;
}

.gallery-grid img:hover{
transform:scale(1.04);
}

/* CTA */

.lux-cta{
padding:160px 10%;
text-align:center;
}

.lux-cta h2{
font-size:52px;
margin-bottom:30px;
}

/* FOOTER */

.footer{
padding:80px 12%;
background:#0f2e23;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
}

.footer-links{
display:flex;
flex-direction:column;
gap:10px;
}

.footer-links a{
color:var(--gold);
text-decoration:none;
}

/* WHATSAPP */

.whatsapp-float{
position:fixed;
bottom:30px;
right:30px;
background:var(--gold);
color:#0f2e23;
padding:15px 25px;
border-radius:50px;
font-weight:600;
text-decoration:none;
}

/* REVEAL */

.reveal{
opacity:0;
transform:translateY(60px);
transition:1s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:900px){

.hero h1{
font-size:42px;
}

.highlight-grid{
grid-template-columns:1fr;
}

.editorial-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.timeline::before{
display:none;
}

.timeline-item{
width:100%;
left:0 !important;
text-align:left;
}

.footer-container{
flex-direction:column;
text-align:center;
}

}

.experience-highlights{
padding:140px 10%;
text-align:center;
}

.experience-highlights h2{
font-size:40px;
margin-bottom:60px;
}

.highlights-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1100px;
margin:auto;
}

.highlight-item{
padding:30px;
border:1px solid rgba(201,165,76,0.4);
border-radius:6px;
transition:all .3s ease;
}

.highlight-item:hover{
transform:translateY(-5px);
border-color:#c9a54c;
}

.highlight-item h3{
margin-bottom:15px;
color:#c9a54c;
}

.highlight-item p{
opacity:.9;
line-height:1.6;
}

@media(max-width:900px){

.highlights-grid{
grid-template-columns:1fr;
}

}

/* INCLUDED SECTION */

.included-section{
padding:140px 10%;
text-align:center;
}

.included-section h2{
font-size:40px;
margin-bottom:60px;
}

.included-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
max-width:1100px;
margin:auto;
}

.included-item{
border:1px solid rgba(201,165,76,0.4);
padding:20px;
letter-spacing:1px;
font-size:15px;
transition:all .3s ease;
}

.included-item:hover{
background:#c9a54c;
color:#0f2e23;
}

.included-note{
margin-top:40px;
opacity:.8;
font-size:15px;
}

@media(max-width:900px){

.included-grid{
grid-template-columns:1fr;
}

}


.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    color: #d4af37;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-social a:hover {
    opacity: 0.7;
}