@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ultra&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
    background: #FCFCFC;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.big-text {
    font-family: 'Ultra', serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.02em;
    display: block;
    background: linear-gradient(135deg, #CB4436 0%, #EBA9B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(203, 68, 54, 0.1);
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #FCFCFC 0%, #A9CDDD 50%, #FFD980 100%);
    overflow: hidden;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blur-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(235, 169, 179, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 217, 128, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(169, 205, 221, 0.15) 0%, transparent 50%);
    animation: blurFlow 20s ease-in-out infinite;
    filter: blur(1px);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(235, 169, 179, 0.2), rgba(255, 217, 128, 0.2));
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 80%;
    animation-delay: 6s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 9s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 10%;
    animation-delay: 12s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 20%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes blurFlow {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }

    25% {
        transform: scale(1.1) rotate(90deg);
        opacity: 0.6;
    }

    50% {
        transform: scale(0.9) rotate(180deg);
        opacity: 0.9;
    }

    75% {
        transform: scale(1.05) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }

    50% {
        transform: translateY(-15px) translateX(-10px) rotate(180deg);
    }

    75% {
        transform: translateY(-25px) translateX(15px) rotate(270deg);
    }
}

/* Main Content */
.content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(252, 252, 252, 0.9);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(203, 68, 54, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 169, 179, 0.2);
}

.logo {
    margin-bottom: 3rem;
}

.main-title {
    margin-bottom: 2rem;
}

.coming-soon-text {
    margin-bottom: 3rem;
}

.subtitle {
    font-family: 'Ultra', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #CB4436;
    margin-bottom: 1rem;
    font-weight: 400;
}

.description {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* Progress Section */
.progress-section {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(169, 205, 221, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #CB4436 0%, #EBA9B3 100%);
    border-radius: 4px;
    width: 75%;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 75%;
    }
}

.progress-text {
    font-size: 0.9rem;
    color: #A9CDDD;
    font-weight: 600;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #CB4436;
    color: #FCFCFC;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #EBA9B3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(203, 68, 54, 0.3);
}


/* Footer */
.footer {
    text-align: center;
}

.footer p {
    color: #A9CDDD;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .subtitle {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .description {
        font-size: 1rem;
    }


    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4,
    .shape-5,
    .shape-6 {
        display: none;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 1rem;
    }

    .content {
        padding: 1.5rem 1rem;
    }

    .big-text {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}