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

body {
    font-family: 'Playfair Display', serif;
    background: #F6F3EF;
    min-height: 100vh;
    color: #2F2F2F;
    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: 3.5rem;
    font-weight: 400;
    color: #C6A77B;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
}

/* Rosebud Animation */
.rosebud-container {
    margin-bottom: 1.0rem;
    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); }
}

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

/* 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: 400;
    color: #d4626a;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05rem;
}

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

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

.credentials {
    font-size: 0.95rem;
    color: #2F2F2F;
    margin-bottom: 2rem;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 1.0rem 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #d4626a;
    margin-bottom: 1.0rem;
    letter-spacing: 0.05rem;
}

.hero-subheadline {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #6d4c41;
    margin-bottom: 1.0rem;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6d4c41;
    margin-bottom: 1.0rem;
}

.hero-curiosity {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #C6A77B;
    margin-bottom: 0rem;
}

/* Section Styles */
section {
    padding: 1rem 0;
    max-width: 800px;
    margin: 0 auto 0.00rem auto;
    width: 100%;
}

section:last-child {
    margin-bottom: 0;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #d4626a;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05rem;
    white-space: nowrap;
}

.body-copy {
    font-size: 1rem;
    line-height: 1.7;
    color: #6d4c41;
    max-width: 600px;
    margin: 0 auto;
}

/* Brand Whisper Section */
.brand-whisper {
    padding: 2.0rem 0 2.5rem 0;
    text-align: center;
}

.whisper-line {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.45;
    letter-spacing: 0.03em;
    color: #6F7A67;
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .whisper-line {
        font-size: 19px;
        padding: 0 1rem;
    }
    .hero-headline {
        font-size: 1.8rem;
    }
    .email-form input[type="email"] {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    .success-message {
        font-size: 0.8rem;
    }
}

/* Brand Intro Section */
.brand-intro {
    margin: 0.00rem 0;
}

/* Brand Pillars Section */
.brand-pillars {
    margin: 0.00rem 0;
    padding: 2.0rem 0 2.5rem 0;
}

/* Final CTA Section */
.final-cta {
    margin: 0.00rem 0;
    padding: 2.0rem 0 2.5rem 0;
}

.pillars-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 1.0rem;
    text-align: center;
}

.pillar {
    flex: 1;
    max-width: 250px;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #D8B7B1;
    margin-bottom: 1rem;
    font-weight: 400;
    white-space: nowrap;
}

.pillar-description {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #6d4c41;
}

/* Final CTA Section */

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #d4626a;
    margin-bottom: 1rem;
}

.cta-body {
    font-size: 1rem;
    color: #6d4c41;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #C6A77B;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #b89a6f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 167, 123, 0.3);
}

/* Notify Section */
.notify-section {
    max-width: 700px;
    margin: 0 auto;
}

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

.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Email Form Input - Force Width */
.email-form input[type="email"] {
    padding: 1rem 1.5rem;
    border: 2px solid #e8d5c4;
    border-radius: 50px;
    font-size: 1rem;
    width: 100%;
    max-width: 600px !important;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.email-form input {
    padding: 1rem 1.5rem;
    border: 2px solid #e8d5c4;
    border-radius: 50px;
    font-size: 1rem;
    width: 100%;
    max-width: 600px;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: #C6A77B;
    box-shadow: 0 0 0 3px rgba(198, 167, 123, 0.1);
}

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

.email-form button:hover {
    background: #b89a6f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 167, 123, 0.3);
}
.success-message {
  display: none;
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #6F7A67;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-message.show {
  display: block;
  opacity: 1;
}
/* Override Netlify default success message */
.success-message.show::before {
    content: "";
}

@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;
    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;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #2F2F2F;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #D8B7B1;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    color: #2F2F2F;
    transition: color 0.3s ease;
}

.instagram-link:hover .instagram-icon {
    color: #D8B7B1;
}

.instagram-handle {
    font-weight: 400;
}

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

.copyright {
    font-size: 0.8rem;
    color: #6d4c41;
    font-family: 'Montserrat', sans-serif;
    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) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        letter-spacing: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 0.5rem 0 2.5rem 0;
    }
    
    .hero-headline {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subheadline {
        font-size: 1.0rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1.0rem;
    }
    
    .rosebud {
        width: 120px;
        height: 120px;
    }
    
    /* Section Styles Mobile */
    section {
        padding: 1rem 0;
        margin: 0 auto 0.5rem auto;
    }
    
    .section-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .cta-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    /* Brand Pillars Mobile */
    .pillars-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 0.8rem;
        text-align: center;
    }
    
    .pillar {
        flex: 1;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .pillar-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .pillar-description {
        font-size: 1.0rem;
        line-height: 1.5;
    }
    
    /* CTA Section Mobile */
    .cta-heading {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-body {
        font-size: 1.0rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }
    
    .notify-section {
        padding: 0 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.0rem;
        min-height: 48px; /* Better touch target */
    }
    
    input[type="email"] {
        width: 100%;
        max-width: 180px;
        padding: 1rem;
        margin-bottom: 1rem;
        font-size: 0.8rem;
        min-height: 48px; /* Better touch target */
        border-radius: 8px;
        border: 1px solid #e8d5c4;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0;
    }
    
    .instagram-link {
        font-size: 0.9rem;
    }
    
    .instagram-icon {
        width: 18px;
        height: 18px;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
    
    /* Brand Whisper Mobile */
    .brand-whisper {
        padding: 2.0rem 0 2.5rem 0;
    }
    
    /* Brand Pillars Mobile */
    .brand-pillars {
        padding: 2.0rem 0 2.5rem 0;
    }
    
    /* Final CTA Mobile */
    .final-cta {
        padding: 2.0rem 0 2.5rem 0;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .email-form input {
        min-width: 180px;
        padding: 0.8rem 1rem;
    }
    
    .email-form button {
        padding: 0.8rem 1.5rem;
        max-width: 200px;
    }
    
    .footer {
        padding: 0.5rem 0;
    }
    
    .social-links a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
}

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

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