/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d20042;
    --primary-dark: #b00035;
    --secondary-color: #23355b;
    --accent-color: #f5e6f0;
    --text-dark: #23355b;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-cream: #faf8f5;
    --border-color: #e8e8e8;
    --shadow: 0 4px 20px rgba(35, 53, 91, 0.08);
    --shadow-lg: 0 10px 40px rgba(35, 53, 91, 0.12);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-cream);
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(210, 0, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(35, 53, 91, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(245, 230, 240, 0.2) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Main Container */
.coming-soon-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Brand Section */
.brand-section {
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.coming-soon-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.main-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Subscription Section */
.subscription-section {
    width: 100%;
    max-width: 600px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.subscription-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.subscription-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.subscription-form {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 10px;
    background: var(--bg-white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.input-group:focus-within {
    box-shadow: var(--shadow-lg);
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: var(--text-dark);
    outline: none;
}

.email-input::placeholder {
    color: var(--text-light);
}

.submit-btn {
    padding: 18px 35px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 0, 66, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

.form-message {
    margin-top: 15px;
    font-size: 0.9rem;
    min-height: 20px;
    transition: all 0.3s ease;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: #dc3545;
}

/* Business Info */
.business-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.info-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Social Section */
.social-section {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.social-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 40px;
    animation: fadeIn 1s ease-out 1s both;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.footer-note {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 40px 20px;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .main-description {
        font-size: 1rem;
    }

    .subscription-title {
        font-size: 1.5rem;
    }

    .input-group {
        flex-direction: column;
        border-radius: 15px;
        padding: 10px;
    }

    .email-input {
        border-radius: 10px;
        padding: 15px 20px;
    }

    .submit-btn {
        border-radius: 10px;
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }

    .business-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
    }

    .brand-tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .main-title {
        font-size: 1.6rem;
    }

    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .subscription-title {
        font-size: 1.3rem;
    }

    .subscription-subtitle {
        font-size: 0.85rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
