/* Color Palette */
:root {
    --champagne-gold: #D4AF37;
    --chocolate-brown: #3C2414;
    --cream: #F5F5DC;
    --soft-white: #FAFAFA;
    --dark-brown: #2C1810;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--chocolate-brown);
    background-color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Section 1: Hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(60, 36, 20, 0.3) 0%,
        rgba(60, 36, 20, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--soft-white);
    padding: 2rem;
    max-width: 800px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--champagne-gold);
    color: var(--chocolate-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--champagne-gold);
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--champagne-gold);
    border-color: var(--champagne-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Section 2: Mission */
.mission {
    padding: 6rem 2rem;
    background-color: var(--soft-white);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(60, 36, 20, 0.15);
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-content {
    padding: 2rem;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--chocolate-brown);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    font-weight: 300;
}

/* Section 3: Collection */
.collection {
    padding: 6rem 2rem;
    background-color: var(--cream);
}

.collection-heading {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.collection-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collection-item {
    background-color: var(--soft-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(60, 36, 20, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(60, 36, 20, 0.2);
}

.collection-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.collection-info {
    padding: 1.5rem;
}

.collection-title {
    font-size: 1.5rem;
    color: var(--chocolate-brown);
    margin-bottom: 0.75rem;
}

.collection-description {
    font-size: 1rem;
    color: var(--dark-brown);
    font-weight: 300;
    line-height: 1.6;
}

/* Section 4: Email Capture */
.email-capture {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.email-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.email-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(60, 36, 20, 0.6) 0%,
        rgba(60, 36, 20, 0.7) 100%
    );
    z-index: 2;
}

.email-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--soft-white);
    padding: 3rem 2rem;
    max-width: 700px;
}

.email-heading {
    color: var(--soft-white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.email-copy {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--soft-white);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: var(--champagne-gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.email-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

/* Section 5: Footer */
.footer {
    background-color: var(--chocolate-brown);
    color: var(--soft-white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-socials {
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.social-link:hover {
    color: var(--champagne-gold);
}

.social-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--champagne-gold);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-image-wrapper {
        min-height: 300px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .collection-heading {
        font-size: 2rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .email-heading {
        font-size: 2rem;
    }

    .email-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .mission {
        padding: 4rem 1.5rem;
    }

    .collection {
        padding: 4rem 1.5rem;
    }

    .email-content {
        padding: 2rem 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

