/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fef9f3 0%, #fdf2e9 50%, #fef9f3 100%);
    min-height: 100vh;
    color: #5d4037;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 1rem 0;
    text-align: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 0.5px;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
}

.rosebud-container {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.rosebud {
    width: 160px;
    height: 160px;
    filter: drop-shadow(0 10px 30px rgba(212, 98, 106, 0.2));
    transition: transform 0.3s ease;
}

.rosebud:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4626a;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #8b6f47;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #6d4c41;
}

/* Notify section */
.notify-section {
    margin-top: 2rem;
}

.notify-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5d4037;
}

.email-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid #e8d5c4;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: #d4626a;
    background: white;
}

.email-form input::placeholder {
    color: #a1887f;
}

.email-form button {
    padding: 1rem 2rem;
    background: #d4626a;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.email-form button:hover {
    background: #c95562;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 98, 106, 0.3);
}

.success-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(168, 196, 129, 0.2);
    border: 1px solid #a8c481;
    border-radius: 8px;
    color: #4a7c59;
    font-weight: 500;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer */
.footer {
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid #e8d5c4;
    margin-top: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-links a {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #8b6f47;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border: 1px solid transparent;
}

.social-links a:hover {
    color: #d4626a;
    border-color: #d4626a;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.copyright {
    font-size: 0.8rem;
    color: #a1887f;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .rosebud {
        width: 150px;
        height: 150px;
    }
    
    .coming-soon {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-form input {
        min-width: 280px;
    }
    
    .email-form button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2rem;
    }
    
    .rosebud {
        width: 120px;
        height: 120px;
    }
    
    .email-form input {
        min-width: 240px;
    }
    
    .email-form button {
        max-width: 240px;
    }
}

/* Loading animation */
.rosebud-container.loading {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
