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

:root {
    --cream-light: #f8eedb;
    --cream-dark: #e8dcc0;
    --brown-secondary: #b87a63;
    --brown-dark: #8B4513;
    --text-dark: #333;
    --text-medium: #555;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Playfair Display', Georgia, serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: var(--cream-light);
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Main Content Area */
.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 2.5rem;
    position: relative;
    text-align: center;
}

.logo-container h1 {
    position: relative;
    margin: 0 auto;
    margin-top: -45px;
    min-width: 290px;
    font-family: 'Rye', serif;
    font-size: 3.4rem;
    padding: 5px;
    text-align: center;
    background-color: var(--cream-dark);
    color: var(--brown-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotate(-7deg);
}

.logo {
    width: 300px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 15px;
    transition: var(--transition-smooth);
    max-width: 100%;
}

/* Brand name */
.brand-name {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--brown-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Content Typography */
.content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.content p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon {
    font-size: 1rem !important;
    color: var(--text-medium) !important;
    font-style: italic;
    margin-top: 2rem !important;
}

/* Footer */
footer {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    color: var(--cream-light);
    opacity: 0.9;
}

.custom-shape-divider-bottom-1753738834 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1753738834 svg {
    position: relative;
    display: block;
    width: calc(222% + 1.3px);
    height: 150px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1753738834 .shape-fill {
    fill: #B87A63;
}

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

    .content {
        padding: 0 1rem;
    }

    .logo {
        width: 250px;
        height: auto;
    }

                    .brand-name {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 0 0.5rem;
    }

    .logo {
        width: 200px;
        height: auto;
    }

                    .brand-name {
        font-size: 1.6rem;
    }
}

/* Focus styles for accessibility */
.logo:focus,
.content h1:focus,
.content p:focus {
    outline: 2px solid var(--brown-dark);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
}