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

html{
    scroll-behavior:smooth;
}
:root{
    --nav-h:80px;
    --gold:#C9A84C;
    --gold-lt:#E8C97A;
    --dark:#0A0A0A;
    --ease-in-out:ease-in-out;
    --ease-out-expo:cubic-bezier(0.16,1,0.3,1);
}

body{
    background:#000;
    color:#fff;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x:hidden;
}
:root{
    --nav-h:80px;
    --gold:#C9A84C;
    --gold-lt:#E8C97A;
    --dark:#0A0A0A;
}

/* ================= NAVBAR ================= */

nav{
       position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 28px;
    z-index:1000;

    background:rgba(10,10,10,.82);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    box-shadow:0 1px 0 rgba(255,255,255,.06);
}


.logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    font-size: 22px;
    color: white;
    text-decoration: none;
    position: relative;
}
.logo::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .4s var(--ease-out-expo);
}

.logo:hover::after { width: 100%; }
nav.scrolled {
    background: rgba(10,10,10,.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

nav ul{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
    margin-left:auto;
}

nav ul a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.nav-cta{
    background:var(--gold);
    color:#000 !important;
    padding:10px 24px;
    border-radius:100px;
}
/* Hamburger */
.nav-toggle{
    display:none;
    flex-direction:column;
    gap:6px;

    background:none;
    border:none;
    padding:0;
    margin:0;

    cursor:pointer;

    width:auto;
    height:auto;

    z-index:1100;
}

.nav-toggle span{
    display:block;
    width:28px;
    height:2px;
    background:#fff;
}
/* Mobile */
@media(max-width:768px){

    nav{
        padding:0 24px;
    }

    nav ul{
        display:none;
    }

    .nav-toggle{
        display:flex;
    }

    .logo{
        font-size:18px;
        letter-spacing:2px;
    }

}


/* Mobile menu drawer */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,.97);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease-in-out);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s, transform .4s var(--ease-out-expo), color .3s;
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .14s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .20s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .26s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .32s; }

.mobile-menu a:hover { color: var(--gold); }

@media(max-width:768px){
    nav{
        padding:0 24px;
    }

    nav ul{
        display:none;
    }

    .nav-toggle{
        display:flex;
    }
}
/* Spotlight */

.spotlight{
    position:fixed;
    width:350px;
    height:350px;
    border-radius:50%;
    background:radial-gradient(
        circle,
        rgba(255,255,255,.08),
        transparent 70%
    );
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:9999;
}

/* Hero Section */

.hero{
    min-height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    opacity:0;
    animation:heroSlider 18s infinite;
}
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    z-index:100;
    width:90%;
}

.hero-title{
    font-size:6rem;
    font-weight:300;
    letter-spacing:2px;
    animation:none; /* float animation remove */
}

.hero-subtitle{
    font-size:1.4rem;
    margin-top:20px;
}

@keyframes floatText{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }
}

.hero-slider{
    position:absolute;
    inset:0;
}

.slide{
    background-size: cover;
    background-position: center;
}

.slide1{
    background-image:url("image/bg1.jpg.jpeg");
    animation-delay:0s;
    background-position:center 35%;
}

.slide2{
    background-image:url("image/bg2.jpg.jpeg");
    animation-delay:6s;
    background-position:center 35%;
}

.slide3{
    background-image:url("image/bg3.jpg.jpeg");
    animation-delay:12s;
    background-position:center 35%;
}

@keyframes heroSlider{

    0%{
        opacity:0;
    }

    10%{
        opacity:1;
    }

    30%{
        opacity:1;
    }

    40%{
        opacity:0;
    }

    100%{
        opacity:0;
    }
}

/* Contact Section */

.contact-wrapper{
    padding:100px 7%;
    display:grid;
    grid-template-columns:35% 65%;
    gap:60px;
    position:relative;
    z-index:10;
    
}
.left{
    display:flex;
    flex-direction:column;
    gap:50px;
}

.left h2{
    font-size:36px;
    line-height:1.5;
    font-weight:400;
}

.info{
    margin-top:0;
}

.info div{
    margin-bottom:35px;
}
.info span{
    display:block;
    font-size:18px;
    opacity:.7;
    margin-bottom:8px;
}

.info p{
    font-size:22px;
}

@media(max-width:768px){

    .hero-title{
        font-size:48px;
        line-height:1.15;
    }

    .hero-subtitle{
        font-size:18px;
        line-height:1.6;
        margin-top:20px;
    }

    .contact-wrapper{
        padding-top:60px;
    }

}

/* Form */

.right{
    border:2px solid #fff;

    padding:50px;

    background:rgba(255,255,255,.03);
    backdrop-filter:blur(12px);

    box-shadow:
    0 0 20px rgba(255,255,255,.15),
    0 0 40px rgba(255,255,255,.08);
}

form{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

input,
textarea{
    width:100%;
    padding:18px;

    background:transparent;
    border:1px solid rgba(255,255,255,.25);

    color:white;
    font-size:18px;
    font-family:inherit;

    transition:.4s;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:#fff;

    box-shadow:
    0 0 20px rgba(255,255,255,.15);
}

textarea{
    height:220px;
    resize:none;
}

/* Button */

button{
    width:250px;
    margin:auto;
    padding:18px;

    background:transparent;
    border:1px solid #fff;

    color:#fff;
    font-size:24px;
    cursor:pointer;

    position:relative;
    overflow:hidden;

    transition:.4s;
}

button::before{
    content:"";
    position:absolute;

    left:-100%;
    top:0;

    width:100%;
    height:100%;

    background:#fff;
    transition:.5s;
}

button:hover::before{
    left:0;
}

button span{
    position:relative;
    z-index:2;
}

button:hover{
    color:#000;
}

/* Footer */

.line{
    width:100%;
    height:1px;
    background:rgb(249, 246, 246);
}

footer{
    padding:30px;
    text-align:center;
    font-size:20px;
    border-top:1px solid rgba(255,255,255,.1);
}

/* Background Zoom */

@keyframes zoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.01); /* 1.03 -> 1.01 */
    }
}
/* Mobile */

@media(max-width:991px){

    .hero-title{
        font-size:48px;
    }

    .hero-subtitle{
        font-size:18px;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

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

    .left h2{
        font-size:28px;
    }

    button{
        width:100%;
    }
    .bg{
        object-position:center top;
    }

    .slide{
        background-position:center top;
    }

}
#successMsg{
    margin-top:20px;
    text-align:center;
    color:#fff;
    font-size:18px;
    opacity:0;
    transition:.4s;
}

#successMsg.show{
    opacity:1;
}

.logo{
    display:flex;
    align-items:center;

    font-family:'Playfair Display';
    font-size:24px;
    letter-spacing:4px;
    color:white;

    gap:0;
}



.studio-text{
    margin-left:10px;
    font-size:16px;
    letter-spacing:4px;
    font-family:'Inter';
}

.logo{
    display:flex;
    align-items:center;

    color:white;
}

.logo span{

    font-family:'Playfair Display';
    font-size:26px;

}



.studio-text{

    margin-left:12px;

    font-family:'Inter';
    font-size:13px;

    letter-spacing:2px;

}
@media (max-width:768px){

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

    .studio-text{
        font-size:13px;
        letter-spacing:2px;
        margin-left:8px;
    }
.flip-d{

    display:inline-block;
    transform:scaleX(-1);
    margin-left:-5px;

}
}