*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#0b0b0b;
    color:#fff;
}

/* NAV */
/* nav{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    z-index:1000;
    background:rgba(0,0,0,0.3);
}

nav h2{
    font-family:'Playfair Display', serif;
    font-size:20px;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:25px;
    font-size:14px;
} */


/* NAV STATES */
#navbar{
    background:transparent;
}

/* ON SCROLL */
#navbar.scrolled{
    background:#0b0b0b;
    box-shadow:0 5px 20px rgba(0,0,0,0.5);
}
.image-logo{
    width: 150px !important;
}
/* LINKS */
.nav-link{
    position:relative;
    transition:0.3s;
}

.nav-link:hover{
    color:#c9a96e;
}

/* UNDERLINE ANIMATION */
.nav-link::after{
    content:"";
    position:absolute;
    width:0%;
    height:1px;
    background:#c9a96e;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* MOBILE LINKS */
.mobile-link{
    border-bottom:1px solid #222;
    padding-bottom:10px;
}

/* HERO */
.hero{
    height:100vh;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
}

.hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    z-index:-2;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:-1;
}

.hero h1{
    font-family:'Playfair Display', serif;
    font-size:50px;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    opacity:0.8;
    margin-bottom:30px;
}

.btn{
    padding:12px 28px;
    border:1px solid #c9a96e;
    color:#c9a96e;
    text-decoration:none;
    margin:10px;
    transition:0.3s;
}

.btn:hover{
    background:#c9a96e;
    color:#000;
}

/* SECTIONS */
section{
    padding:100px 60px;
}

.section-title{
    font-family:'Playfair Display', serif;
    font-size:32px;
    margin-bottom:40px;
}

/* SHOWREEL */
.showreel video{
    width:100%;
    max-width:800px;
    display:block;
    margin:auto;
}

/* PROJECTS */
.projects{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:20px;
}

.project{
    background:#111;
    padding:20px;
    transition:0.3s;
    cursor:pointer;
    position:relative;
}

.project:hover{
    transform:translateY(-5px);
}
.project::after{
    content:"▶";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    font-size:30px;
    opacity:0;
    transition:0.3s;
}
.project:hover::after{
    opacity:1;
}
.project img{
    width:100%;
    margin-bottom:15px;
}

/* ABOUT */
.about{
    display:flex;
    flex-wrap:wrap;
    gap:40px;
    align-items:center;
}

.about img{
    width:300px;
    border-radius:10px;
    margin:auto;
}

.about-text{
    max-width:500px;
}

/* CTA */
.cta{
    text-align:center;
}

.cta h2{
    font-family:'Playfair Display', serif;
    margin-bottom:20px;
}

footer{
    text-align:center;
    padding:30px;
    font-size:14px;
    opacity:0.6;
}

@media(max-width:768px){
    nav{
        padding:20px;
    }
    section{
        padding:80px 20px;
    }
    .hero h1{
        font-size:32px;
    }
}

/* VIDEO MODAL */
/* .video-modal{
    display:none;
    position:fixed;
    z-index:2000;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
}

.video-modal video{
    width:80%;
    max-width:900px;
} */

/* .close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
} */

/* FILTER BUTTONS */
.filters{
    text-align:center;
    margin-bottom:40px;
}

.filters button{
    background:none;
    border:1px solid #c9a96e;
    color:#c9a96e;
    padding:8px 20px;
    margin:5px;
    cursor:pointer;
    transition:0.3s;
}

.filters button:hover,
.filters .active{
    background:#c9a96e;
    color:#000;
}

/* PROJECT HOVER */
.project{
    cursor:pointer;
    position:relative;
}

.project::after{
    content:"▶";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    font-size:30px;
    opacity:0;
    transition:0.3s;
}

.project:hover::after{
    opacity:1;
}

/* MODAL WITH FADE */
.video-modal{
    opacity:0;
    visibility:hidden;
    transition:opacity 0.4s ease;
    position:fixed;
    z-index:2000;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.95);
    display:flex;
    justify-content:center;
    align-items:center;
}

.video-modal.active{
    opacity:1;
    visibility:visible;
}

.video-container{
    width:80%;
    max-width:900px;
    aspect-ratio:16/9;
}

.video-container iframe{
    width:100%;
    height:100%;
}

/* CLOSE BUTTON */
.close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}