/* Dynamic Schematic Font */
@font-face {
    font-family: 'Dynamic Schematic';
    src: url('static/Fonts/Dynamic Schematic/DynamicSchematic-Regular.ttf') format('truetype'),
         url('static/Fonts/Dynamic Schematic/DynamicSchematic-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Hess Gothic Font */
@font-face {
    font-family: 'Hess Gothic';
    src: url('static/Fonts/Hess Gothic Round NS Bold/fonnts.com-Hess_Gothic_Round_NF_W01_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hess Gothic';
    src: url('static/Fonts/Hess Gothic Round NS Bold/fonnts.com-Hess_Gothic_Round_NF_W01_Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(40px);
    will-change: transform;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 192, 203, 0.8), rgba(147, 197, 253, 0.6), rgba(255, 255, 255, 0.4));
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.7), rgba(255, 192, 203, 0.6), rgba(147, 197, 253, 0.5));
    bottom: 10%;
    right: 3%;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 50% 50%, rgba(147, 197, 253, 0.7), rgba(255, 192, 203, 0.6), rgba(255, 255, 255, 0.4));
    bottom: 20%;
    left: 25%;
    animation-delay: 10s;
}

.shape-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 215, 0, 0.6), rgba(255, 192, 203, 0.7), rgba(147, 197, 253, 0.5));
    top: 20%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
    75% {
        transform: translate(30px, 50px) rotate(270deg);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container {
    margin-bottom: 3px;
    margin-top: -30px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo {
    max-width: 130px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Main Heading */
.heading-container {
    margin-bottom: 10px;
}

.main-heading {
    font-family: 'Hess Gothic', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #3d5c78;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.heading-line-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: clamp(1.2rem, 3.5vw, 2.5rem);
}

.heading-line-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: 0.1em;
}

.main-heading .word {
    display: inline-block;
    animation: wordSlideIn 0.8s ease-out backwards;
}

.heading-line-1 .word:nth-child(1) {
    animation-delay: 0.1s;
}

.heading-line-1 .word:nth-child(2) {
    animation-delay: 0.15s;
}

.heading-line-1 .word:nth-child(3) {
    animation-delay: 0.2s;
}

.heading-line-1 .word:nth-child(4) {
    animation-delay: 0.25s;
}

.heading-line-1 .word:nth-child(5) {
    animation-delay: 0.3s;
}

.heading-line-1 .word:nth-child(6) {
    animation-delay: 0.35s;
}

.heading-line-1 .word:nth-child(7) {
    animation-delay: 0.4s;
}

.heading-line-1 .word:nth-child(8) {
    animation-delay: 0.45s;
}

.heading-line-1 .word:nth-child(9) {
    animation-delay: 0.5s;
}

.heading-line-2 .word:nth-child(1) {
    animation-delay: 0.6s;
}

.heading-line-2 .word:nth-child(2) {
    animation-delay: 0.65s;
}

.main-heading .word.highlight {
    color: #e7b00c;
    text-shadow: 3px 3px 0px rgba(61, 92, 120, 0.2);
    position: relative;
}

@keyframes wordSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}


/* Subheading */
.subheading {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: #3d5c78;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

.countdown-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 20px;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.countdown-number {
    font-family: 'Hess Gothic', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #e7b00c;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: numberPulse 1s ease-in-out infinite;
}

.countdown-item:nth-child(1) .countdown-number {
    animation-delay: 0s;
}

.countdown-item:nth-child(3) .countdown-number {
    animation-delay: 0.25s;
}

.countdown-item:nth-child(5) .countdown-number {
    animation-delay: 0.5s;
}

.countdown-item:nth-child(7) .countdown-number {
    animation-delay: 0.75s;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.countdown-label {
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    color: #3d5c78;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #e7b00c;
    font-weight: 700;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.launched-message {
    font-family: 'Hess Gothic', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #e7b00c;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: celebrate 0.5s ease-in-out infinite;
}

@keyframes celebrate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Email Notification Form */
.notification-form {
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

.form-label {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: #3d5c78;
    font-weight: 600;
    margin-bottom: 12px;
}

.email-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #3d5c78;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: #e7b00c;
    box-shadow: 0 0 0 4px rgba(231, 176, 12, 0.2);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: #999;
}

.submit-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #e7b00c, #f6c54f);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Hess Gothic', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 176, 12, 0.3);
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 176, 12, 0.4);
    background: linear-gradient(135deg, #f6c54f, #e7b00c);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.form-message {
    margin-top: 10px;
    font-size: 0.85rem;
    min-height: 18px;
    transition: all 0.3s ease;
}

.form-message.success {
    color: #3d5c78;
    font-weight: 600;
}

/* Social Media Links */
.social-container {
    animation: fadeIn 1s ease-out 0.9s backwards;
    margin-top: 40px;
}

.social-label {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: #3d5c78;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d5c78;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: #e7b00c;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(231, 176, 12, 0.4);
}

.social-link:nth-child(1):hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link:nth-child(2):hover {
    background: #000000;
}

.social-link:nth-child(3):hover {
    background: #1877f2;
}

.social-link:nth-child(4):hover {
    background: #ff0000;
}

/* Sparkle Animation */
.sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    display: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #e7b00c;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(231, 176, 12, 0.6);
    animation: sparkleFloat 3s infinite ease-in-out;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 50%;
    left: 80%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    top: 30%;
    left: 60%;
    animation-delay: 1.5s;
}

.sparkle:nth-child(5) {
    top: 70%;
    left: 90%;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

.click-sparkle {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffffff, #e7b00c);
    border-radius: 50%;
    pointer-events: none;
    animation: clickSparkle 0.6s ease-out forwards;
    z-index: 1000;
    display: none;
}

@keyframes clickSparkle {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-container {
        gap: 10px;
    }

    .countdown-item {
        padding: 20px 15px;
        min-width: 80px;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .email-form {
        flex-direction: column;
        align-items: stretch;
    }

    .email-input {
        min-width: 100%;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Move logo higher and add more space on tablet */
    .logo-container {
        margin-top: -50px !important;
        margin-bottom: 20px !important;
    }

    /* Reduce gap between words in heading-line-1 on tablet */
    .heading-line-1 {
        gap: 5px !important;
    }

    /* Make COMING SOON bigger and display in 2 lines on tablet */
    .heading-line-2 {
        flex-direction: column !important;
        gap: 5px !important;
        font-size: clamp(3rem, 8vw, 6rem) !important;
        letter-spacing: 0.05em !important;
    }

    /* Spread circles out more on tablet */
    .shape-1 {
        top: -15% !important;
        left: -20% !important;
    }

    .shape-2 {
        bottom: -15% !important;
        right: -20% !important;
    }

    .shape-3 {
        bottom: -10% !important;
        left: -15% !important;
    }

    .shape-4 {
        top: -10% !important;
        right: -15% !important;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 125px;
    }

    /* Move logo higher and add more space on mobile */
    .logo-container {
        margin-top: -60px !important;
        margin-bottom: 25px !important;
    }

    /* Reduce gap between words in heading-line-1 on mobile */
    .heading-line-1 {
        gap: 3px !important;
    }

    /* Make COMING SOON bigger and display in 2 lines on mobile */
    .heading-line-2 {
        flex-direction: column !important;
        gap: 5px !important;
        font-size: clamp(3rem, 8vw, 6rem) !important;
        letter-spacing: 0.05em !important;
    }

    .main-heading {
        gap: 10px;
    }

    .countdown-item {
        padding: 15px 10px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-separator {
        font-size: 1.2rem;
    }

    .email-input {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Spread circles out more on mobile */
    .shape-1 {
        top: -20% !important;
        left: -25% !important;
    }

    .shape-2 {
        bottom: -20% !important;
        right: -25% !important;
    }

    .shape-3 {
        bottom: -15% !important;
        left: -20% !important;
    }

    .shape-4 {
        top: -15% !important;
        right: -20% !important;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

