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

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:white;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 70px;

    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(10px);

    z-index:999;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.logo span{
    font-size:40px;
    font-family:'Anton',sans-serif;
    letter-spacing:2px;
}

/* NAV LINKS */
nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;

    font-size:16px;
    font-weight:500;

    transition:0.3s;
}

nav a:hover{
    color:#c9a66b;
}

/* HERO */
.hero{
    position:relative;

    width:100%;
    height:82vh;
    min-height:650px;

    overflow:hidden;

    display:flex;
    align-items:center;

    padding:0 70px;
}

/* VIDEO */
.hero-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;
}

/* OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.15) 45%,
        rgba(0,0,0,0.85) 85%,
        #000 100%
    );

    z-index:-1;
}

/* HERO CONTENT */
.hero-content{
    max-width:700px;
}

.hero-subtitle{
    color:#c9a66b;
    font-size:13px;
    letter-spacing:4px;

    margin-bottom:18px;

    display:block;
}

.hero-content h1{
    font-family:'Anton',sans-serif;

    font-size:78px;
    line-height:0.95;

    margin-bottom:22px;
}

.hero-content p{
    font-size:20px;
    line-height:1.7;

    color:rgba(255,255,255,0.82);

    margin-bottom:35px;

    max-width:600px;
}

/* HERO BUTTONS */
.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

/* BUTTON */
.btn{
    display:inline-block;

    padding:16px 34px;

    border:none;

    background:#c9a66b;

    color:black;
    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    transition:0.3s;
}

.btn:hover{
    opacity:0.85;
}

/* SECONDARY BUTTON */
.secondary-btn{
    color:white;
    text-decoration:none;

    opacity:0.7;

    transition:0.3s;
}

.secondary-btn:hover{
    opacity:1;
}

/* GENERAL */
.section{
    padding:110px 0;
}

/* TITLES */
.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#c9a66b;

    letter-spacing:5px;
    font-size:13px;

    display:block;

    margin-bottom:10px;
}

.section-title h2{
    font-size:60px;
    font-family:'Anton',sans-serif;
}

/* SERVICES */
.services{
    width:90%;
    margin:auto;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.service-card{
    background:#101010;

    padding:38px;

    border-radius:22px;

    transition:0.3s;
}

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

.service-card h3{
    font-size:26px;
    margin-bottom:16px;
}

.service-card p{
    color:rgba(255,255,255,0.72);

    line-height:1.8;
    font-size:16px;
}

/* PORTFOLIO */
.portfolio{
    width:90%;
    margin:auto;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:18px;
}

.portfolio-grid img{
    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:18px;

    transition:0.3s;
}

.portfolio-grid img:hover{
    transform:scale(1.03);
}

/* ABOUT */
.about{
    width:90%;
    margin:auto;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:stretch;
}

.about-image img{
    width:100%;
    height:100%;

    min-height:650px;

    object-fit:cover;

    border-radius:24px;
}

.about-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-text span{
    color:#c9a66b;

    letter-spacing:4px;

    margin-bottom:18px;
}

.about-text h2{
    font-size:62px;
    line-height:0.95;

    font-family:'Anton',sans-serif;

    margin-bottom:28px;
}

.about-text p{
    color:rgba(255,255,255,0.8);

    line-height:1.9;
    font-size:17px;

    margin-bottom:18px;
}

/* CONTACT */
.contact{
    width:90%;
    margin:auto;
}

.contact-container{
    max-width:700px;
    margin:auto;

    display:flex;
    flex-direction:column;

    gap:30px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;

    padding:18px;

    background:#111;

    border:1px solid #222;

    color:white;

    border-radius:12px;

    font-size:16px;
}

.contact-form textarea{
    height:180px;
    resize:none;
}

/* REVIEW BUTTON */
.review-btn{
    display:inline-block;

    text-align:center;

    padding:18px 30px;

    background:#c9a66b;

    color:black;
    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    transition:0.3s;
}

.review-btn:hover{
    opacity:0.8;
}

/* FOOTER */
.footer{
    padding:55px 0;

    text-align:center;
}

/* INSTAGRAM */
.instagram-icon{
    width:38px;
    height:38px;

    object-fit:contain;

    margin-bottom:22px;

    transition:0.3s;
}

.instagram-icon:hover{
    transform:scale(1.1);
    opacity:0.8;
}

/* FOOTER LOGO */
.footer-logo{
    width:80px;
    height:80px;

    object-fit:cover;

    border-radius:18px;

    display:block;

    margin:0 auto 22px;
}

.footer p{
    color:rgba(255,255,255,0.45);
}

/* MOBILE */
@media(max-width:1000px){

    .navbar{
        padding:20px 24px;
    }

    nav{
        display:none;
    }

    .hero{
        padding:0 24px;
        height:75vh;
    }

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

    .services-grid{
        grid-template-columns:1fr;
    }

    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .portfolio-grid img{
        height:220px;
    }

    .about-container{
        grid-template-columns:1fr;
    }

    .about-image img{
        min-height:450px;
    }

    .section-title h2{
        font-size:46px;
    }

    .logo span{
        font-size:32px;
    }

    .about-text h2{
        font-size:48px;
    }
}