/*==== 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);
}

/*===== MENU ===== */
.menu a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Merriweather', serif;
}

.menu a:hover {
    color: yellow;
}

/*===== LOGO =====*/
.logo {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin-right: 150px;
}

/*==== PRELOADER ==== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background: black;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/*==== CONTENT ====*/

html{
    scroll-behavior: smooth;
}

.about{
    max-width: 800px;
    margin: 120px auto;
    text-align: center;
    color: white;

    background: rgba(255,255,255,0.08);
    padding: 40px 50px 100px 50px;

    border-radius: 10px;

    backdrop-filter: blur(10px);

    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.about h1{
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 20px;

    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.about p{
    font-size: 18px;
    line-height: 1.7;

    text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
}

.credit{
font-size:14px;
font-style:italic;
color:#ddd;
margin-top:15px;
opacity:0.8;
}

.team-btn{
    display:inline-block;
    margin-top:20px;
    padding:10px 20px;
    background:#795a1d;
    color:white;
    text-decoration:none;
    border-radius:8px;
}

.team{
    text-align:center;
    color:white;
    margin-top:150px;
}

#team{
    scroll-margin-top:120px;
}

.team h2{
    font-size:36px;
    margin-bottom:40px;
    font-family:'Playfair Display', serif;
}

.team-container{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.member{
    background:rgba(255,255,255,0.08);
    padding:25px;
    border-radius:15px;
    backdrop-filter:blur(10px);
    box-shadow:0 8px 25px rgba(0,0,0,0.5);
    width:240px;
    transition:0.3s;
}

.member:hover{
    transform: translateY(-10px);
}

.member img{
    width:180px;
    height:180px;
    border-radius:10px;
    object-fit:cover;
    transition:0.3s;
}

.member img:hover{
    transform:scale(1.05);
}

.member h3{
    margin:5px 0;
}

.member p{
    font-size:14px;
    color:#ddd;
}

.mission{
    margin-top:120px;
    padding-bottom:120px;
    text-align:center;
    color:white;
}

.mission-box{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding:40px 60px;
    border-radius:15px;
    display:inline-block;

    max-width:900px;
    width:90%;

    box-shadow:0 8px 25px rgba(0,0,0,0.5);
}

.mission h1{
    font-size:38px;
    margin-bottom:25px;
    font-family:'Playfair Display', serif;
    color:white;

    text-shadow:2px 2px 10px rgba(0,0,0,0.7);
}

.mission-list li{
    margin:12px 0;
    font-size:15px;
    color:white;
    font-family:'Playfair Display', serif;
}

/*===== 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 + MOBILE RESPONSIVE */
/* ================================= */

.hamburger{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

@media (max-width:768px){

nav{
justify-content:space-between;
padding:15px 20px;
}

.logo{
margin-right:0;
font-size:22px;
}

.hamburger{
display:block;
}

.menu{
display:none;
flex-direction:column;

position:absolute;
top:70px;
left:0;

width:100%;
background:rgba(96,68,20,0.95);

text-align:center;

padding:20px 0;
}

.menu.active{
display:flex;
}

.menu a{
display:block;
margin:12px 0;
}

.about{
margin:120px 20px;
padding:30px 20px 80px 20px;
}

.team-container{
flex-direction:column;
align-items:center;
gap:25px;
}

.member{
width:90%;
max-width:300px;
}

.mission-box{
width:90%;
padding:30px 25px;
}

}