/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    color: white;
}

/* Hero Section with Background */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1637825891035-1930cbd564dd?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Dark Overlay for Readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Content Wrapper - Two Column Layout */
.content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1250px;
    gap: 3rem;
}

/* Left Content - Text */
.left-content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-heading {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.subheading {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: white;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.highlight {
    color: #00d9ff;
}

.body-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: white;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 1rem;
    max-width: 600px;
}

.unveiling-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #00d9ff;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
    margin-top: 1.5rem;
}

/* Right Content - Logo */
.right-content {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

/* Contact Area - Bottom Right */
.contact-area {
    /* position: absolute;
    bottom: 2rem;
    right: 2rem; */
    z-index: 3;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.6); */
    /* backdrop-filter: blur(10px); */
    padding: 1.5rem 2rem;
    border-radius: 16px;
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-email {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-or {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.75rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: #00d9ff;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.cta-button:hover {
    background: #00b8d9;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        text-align: center;
    }

    .left-content {
        flex: 1;
        align-items: center;
    }

    .right-content {
        flex: 1;
    }

    .body-text {
        max-width: 100%;
    }

    .contact-area {
        position: static;
        margin-top: 2rem;
        display: inline-block;
    }

    .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem;
        padding-top: 2rem;
    }

    .content-wrapper {
        gap: 1.5rem;
    }

    .left-content {
        gap: 1rem;
    }

    .main-heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .subheading {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }

    .body-text {
        font-size: 1rem;
    }

    .unveiling-text {
        font-size: 1.125rem;
        margin-top: 1rem;
    }

    .logo {
        max-width: 280px;
    }

    .contact-area {
        padding: 1.25rem 1.5rem;
        margin-top: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 0.9375rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 1rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .subheading {
        font-size: 1.25rem;
    }

    .logo {
        max-width: 220px;
    }

    .contact-area {
        padding: 1rem 1.25rem;
    }
}
