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

@font-face {
    font-family: 'RFDewi';
    src: url('fonts/RFDewi-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.gloock-regular {
    font-family: "Gloock", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'RFDewi';
    color: #fff;
    overflow-x: hidden;
    background: #000;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate3d(-50%, -50%, 0);
    z-index: 1;
    object-fit: cover;
    will-change: transform;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 3;
    padding: 20px;
    will-change: transform, opacity;
}

.hero-content img {
    width: 120px;
    height: auto;
}

.logo-text {
    font-size: 0.9rem;
    letter-spacing: 6px;
    margin-bottom: 10px;
    font-weight: 300;
}

.logo-ma {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 20px;
    margin-bottom: 5px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 60px;
    font-weight: 300;
}

.hero h1 {
    font-family: "Gloock", serif;
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-description {
    font-size: 1rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.enquire-btn {
    display: inline-block;
    background: rgba(106, 106, 106, 0.5);
    color: #fff;
    padding: 15px 30px;
    margin-top: 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.enquire-btn:hover {
    border-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.6);
}

/* Second Section - Black Background */
.launch-section {
    background: #000;
    padding: 120px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.launch-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax */
    z-index: 1;
    opacity: 0.6;
    /* Adjust visibility */
}

.launch-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.launch-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.launch-section h2 {
    font-family: "Gloock", serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.launch-section p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #ccc;
    font-weight: 300;
}

.email-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    font-size: 0.95rem;
    border: 1px solid #444;
    background: transparent;
    color: #fff;
    outline: none;
}

.email-input::placeholder {
    color: #666;
}

.submit-btn {
    padding: 18px 45px;
    font-size: 0.95rem;
    background: rgba(106, 106, 106, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 400;
    transition: background 0.3s ease;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    padding: 60px 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

footer img {
    width: 120px;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }


    .launch-section h2 {
        font-size: 2.5rem;
    }

    .email-form {
        flex-direction: column;
        width: 100%;
    }
}