/*==== IMPORT GOOGLE FONTS ====*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');


/*==== BODY ====*/
body{
font-family:'Lato', sans-serif;
margin:0;
padding-top:60px;
position:relative;
overflow-x:hidden;
}


/*===== VIDEO BACKGROUND =====*/
.bg-video{
position:fixed;
top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

z-index:-2;

background:black;
}


/*===== DARK OVERLAY =====*/
body::before{
content:"";
position:fixed;
top:0;
left:0;

width:100%;
height:100%;
background:rgba(0,0,0,0.55);

z-index:-1;
}


/*===== NAVIGATION =====*/
nav{
background-color:rgba(96,68,20,0.70);
padding:20px 30px;

display:flex;
justify-content:center;
align-items:center;

position:fixed;
top:0;
left:0;
width:100%;

box-sizing:border-box;

z-index:1000;

box-shadow:0 2px 8px rgba(0,0,0,0.2);
}


/*===== LOGO =====*/
.logo{
font-family:'Playfair Display', serif;
color:white;
font-size:26px;
font-weight:700;
margin-right:150px;
}


/*===== MENU =====*/
.menu a{
color:white;
margin:0 15px;
text-decoration:none;
font-size:18px;
font-family:'Merriweather', serif;
}

.menu a:hover{
color:yellow;
}


/*==== PRELOADER BACKGROUND ==== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background: black;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}


/*===== HERO SECTION =====*/
.hero{
text-align:center;
color:white;
padding:120px 20px 80px 20px;
}

.hero h1{
font-family:'Playfair Display', serif;
font-size:60px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
max-width:700px;
margin:auto;
line-height:1.6;
margin-bottom:40px;
}


/*===== BUTTONS =====*/
.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
}

.btn{
padding:12px 28px;
text-decoration:none;
font-size:18px;
border-radius:30px;
font-weight:bold;
transition:0.3s;
}

.browse-btn{
background:#e6c36a;
color:black;
}

.write-btn{
background:transparent;
border:2px solid white;
color:white;
}

.btn:hover{
transform:scale(1.05);
}


/*===== FEATURES =====*/
.features{
text-align:center;
padding:80px 20px;
color:white;
}

.features h2{
font-family:'Playfair Display', serif;
font-size:40px;
margin-bottom:40px;
}

.feature-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.feature-box{
background:rgba(255,255,255,0.1);
padding:30px;
border-radius:10px;
width:260px;
backdrop-filter:blur(5px);
transition:0.3s;
}

.feature-box:hover{
transform:translateY(-8px) scale(1.03);
}


/*===== REVIEWS =====*/
.reviews{
text-align:center;
padding:80px 20px;
color:white;
}

.reviews h2{
font-family:'Playfair Display', serif;
font-size:40px;
margin-bottom:40px;
}

.review-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.review-box{
background:rgba(0,0,0,0.5);
padding:25px;
width:260px;
border-radius:10px;
transition:0.3s;
}

.review-box span{
display:block;
margin-top:10px;
color:#ffd369;
}

.review-box:hover{
transform:translateY(-8px) scale(1.03);
}


/*===== SCROLL REVEAL =====*/
.reveal{
opacity:0;
transform:translateY(50px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.review-box:nth-child(1){transition-delay:0.1s;}
.review-box:nth-child(2){transition-delay:0.3s;}
.review-box:nth-child(3){transition-delay:0.5s;}

.feature-box:nth-child(1){transition-delay:0.1s;}
.feature-box:nth-child(2){transition-delay:0.3s;}
.feature-box:nth-child(3){transition-delay:0.5s;}


/*===== FOOTER =====*/
.footer{
background:rgba(0,0,0,0.5);
color:white;
text-align:center;

padding:20px 10px;
margin-top:40px;
}

.footer h3{
font-size:20px;
margin-bottom:5px;
}

.footer-links{
margin:10px 0;
}

.footer-links a{
color:#d8a55c;
margin:0 10px;
text-decoration:none;
font-size:14px;
}

.copyright{
margin-top:10px;
font-size:13px;
opacity:0.7;
}


/*===== MUSIC BUTTON =====*/
#musicBtn{
position:fixed;
bottom:30px;
left:30px;

width:50px;
height:50px;

background:#9c6b2f;
color:white;

border:none;
border-radius:50%;

font-size:20px;
cursor:pointer;

display:flex;
justify-content:center;
align-items:center;

z-index:9999;
}

#musicBtn:hover{
background:#c48a3a;
}


/*===== HAMBURGER =====*/
.hamburger{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}


/*===== MOBILE =====*/
@media (max-width:768px){

nav{
justify-content:space-between;
}

.logo{
margin-right:0;
}

.hamburger{
display:block;
}

/* MENU */
.menu{
position:absolute;
top:70px;
left:0;
width:100%;

background:rgba(96,68,20,0.95);

display:none;
flex-direction:column;
text-align:center;
padding:20px 0;
}

.menu a{
display:block;
margin:15px 0;
font-size:18px;
}

.menu.show{
display:flex;
}

/* HERO */
.hero h1{
font-size:36px;
}

.hero p{
font-size:16px;
padding:0 15px;
}

.hero-buttons{
flex-direction:column;
gap:15px;
}

/* FEATURES */
.feature-container{
flex-direction:column;
align-items:center;
}

/* REVIEWS */
.review-container{
flex-direction:column;
align-items:center;
}

.review-box{
width:85%;
}

}