/* Font Definitions */
@font-face {
    font-family: 'Red Hat Display';
    src: url('fonts/RedHatDisplay-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('fonts/RedHatDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('fonts/RedHatDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('fonts/RedHatDisplay-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('fonts/RedHatDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('fonts/RedHatDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('fonts/RedHatDisplay-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body, html {
    overflow: hidden;
    height: 100vh;
    font-family: 'Red Hat Display', sans-serif;
}

.coming-soon-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--bg-color);
}

.coming-soon-content {
    animation: fadeIn 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.coming-soon-icon {
    width: 20vh;
    height: 20vh;
    margin: 0 auto 0;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-icon img {
    width: 98%;
    height: 93%;
    object-fit: contain;
    border-radius: 50%;
}

.coming-soon-title {
    font-size: 10vh;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
    margin: 5vh 0 !important;
    line-height: 1;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0 0 2rem 0;
    font-weight: 600;
    line-height: 1;
}

.coming-soon-text {
     font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.back-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 0.6vw;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(127, 174, 110, 0.3);
}

.back-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 36, 41, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2rem;
    }

    .coming-soon-subtitle {
        font-size: 1.2rem;
    }

    .coming-soon-icon {
        width: 12vh;
        height: 12vh;
    }

    .coming-soon-text {
        font-size: 0.9rem;
    }
}