*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#000;
}

/* HERO */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* VIDEO */

.bg-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(1.1);
    transform:scale(1.05);
    animation:slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom{
    from{transform:scale(1.05);}
    to{transform:scale(1.12);}
}

/* OVERLAY */

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

/* CONTENT */

.content{
    position:relative;
    text-align:center;
    max-width:900px;
    padding:20px;
    animation:fade 1.2s ease;
}

@keyframes fade{
    from{opacity:0; transform:translateY(25px);}
    to{opacity:1; transform:translateY(0);}
}

/* LOGO */

.logo{
    width:260px;
    margin-bottom:10px;
}

/* BRAND NAME */

.brand{
    font-size:20px;
    letter-spacing:3px;
    color:#35c98a;
    margin-bottom:14px;
    text-shadow:0 0 15px rgba(53,201,138,0.6);
}

/* TITLE */

h1{
    font-family:'Playfair Display',serif;
    font-size:64px;
    color:#fff;
    margin-bottom:20px;
}

/* TAGLINE */

.tagline{
    font-size:16px;
    letter-spacing:2px;
    color:#d0d0d0;
    margin-bottom:35px;
}

/* CONTACT LABEL */

.contact-label{
    font-size:13px;
    letter-spacing:3px;
    color:#888;
    margin-bottom:18px;
}

/* BUTTONS */

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-btn{
    min-width:180px;
    padding:14px 32px;
    border-radius:40px;
    border:1px solid rgba(53,201,138,0.8);
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    color:#35c98a;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.contact-btn:hover{
    background:#35c98a;
    color:#000;
    box-shadow:0 0 20px rgba(53,201,138,0.6);
}

/* SUBSCRIBE SECTION */

.subscribe{
    min-height:100vh;
    background:#0b0b0f;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.subscribe h2{
    font-family:'Playfair Display',serif;
    font-size:46px;
    margin-bottom:18px;
}

.subscribe p{
    color:#aaa;
    margin-bottom:40px;
}

/* FORM */

.subscribe-form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.subscribe-form input{
    width:320px;
    padding:16px;
    background:#111;
    border:1px solid #444;
    color:#fff;
    border-radius:6px;
}

.subscribe-form input:focus{
    outline:none;
    border-color:#35c98a;
}

.subscribe-form button{
    padding:16px 34px;
    background:#fff;
    border:none;
    border-radius:6px;
    font-weight:600;
    cursor:pointer;
}

.subscribe-form button:hover{
    background:#35c98a;
    color:#000;
}

/* FOOTER */

.footer{
    margin-top:70px;
    color:#666;
    font-size:14px;
}

/* MOBILE */

@media(max-width:600px){

    h1{font-size:40px;}
    .logo{width:190px;}

    .contact-buttons{
        flex-direction:column;
    }
}