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

body,
html {
    height: 100%;
    font-family: 'Lato', sans-serif;
    background-color: #f7f5f0;
    color: #2c2a29;
    overflow: hidden;
    /* Prevents scrollbars when blobs move out of bounds */
}

/* =========================================
   Ambient Floating Blobs
   ========================================= */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    /* Creates the deep soft blur */
    z-index: 1;
    /* Keeps them behind the content */
    opacity: 0.6;
}

/* Blob 1: Soft Rose / Burgundy */
.blob-1 {
    width: 500px;
    height: 500px;
    background: #b54a4a;
    top: -10%;
    left: -10%;
    animation: float1 25s infinite alternate ease-in-out;
}

/* Blob 2: Warm Champagne / Peach */
.blob-2 {
    width: 600px;
    height: 600px;
    background: #e6b9a6;
    bottom: -20%;
    right: -10%;
    animation: float2 28s infinite alternate ease-in-out;
}

/* =========================================
   Hero Section & Content
   ========================================= */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Frosted Glass Effect */
.content-container {
    max-width: 600px;
    padding: 50px 40px;
    background: #f7f5f030;
    /* Slightly more transparent to see the blobs */
    backdrop-filter: blur(15px);
    /* Stronger glass blur */
    -webkit-backdrop-filter: blur(15px);
    /* Safari support */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
}

/* Typography */
.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #5a5553;
}

/* Button Styling */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    color: #f7f5f0;
    background-color: #8b2626;
    border: 1px solid #8b2626;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: transparent;
    color: #8b2626;
}

/* Button Group Layout */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    /* Ensures they stack nicely on very small mobile screens */
}

/* Secondary Button Styling */
.cta-button-secondary {
    background-color: transparent;
    color: #8b2626;
    border: 1px solid #8b2626;
}

.cta-button-secondary:hover {
    background-color: #8b2626;
    color: #f7f5f0;
}

/* Utility Classes for JS Fade In */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-link {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    /* color: #f7f5f0; */
    color: #8b2626eb;
    text-decoration: none;
    /* background: #8b2626eb; */
    /* border: 1px solid #8b2626eb; */
    border-radius: 999px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16); */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 1s ease-out, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.privacy-link:hover {
    /* background: #a03232;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22); */
}

/* =========================================
   Animations
   ========================================= */
@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30vw, 20vh) scale(1.1);
    }

    100% {
        transform: translate(10vw, 50vh) scale(0.9);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40vw, -20vh) scale(1.2);
    }

    100% {
        transform: translate(-20vw, -40vh) scale(0.9);
    }
}

/* =========================================
   Privacy Page Styles
   ========================================= */
body.privacy-body {
    overflow-y: auto;
    background: linear-gradient(135deg, #f8efe9 0%, #f7f5f0 100%);
    color: #2c2a29;
}

.privacy-page {
    min-height: 100vh;
    padding: 40px 20px 80px;
}

.privacy-shell {
    max-width: 860px;
    margin: 0 auto;
}

.privacy-hero {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(139, 38, 38, 0.12);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.privacy-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b2626;
    margin-bottom: 10px;
}

.privacy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.privacy-intro {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #5a5553;
    max-width: 660px;
    margin-bottom: 20px;
}

.privacy-card {
    background: #fffdf9;
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.privacy-card h2 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #8b2626;
}

.privacy-card p,
.privacy-card li {
    line-height: 1.7;
    color: #4f4a47;
}

.privacy-updated {
    font-size: 0.9rem;
    color: #8c7f7a;
    margin-bottom: 12px;
}

.privacy-list {
    padding-left: 20px;
    margin-top: 10px;
}

.privacy-list li {
    margin-bottom: 6px;
}

@media (max-width: 640px) {
    .privacy-hero {
        padding: 28px 20px;
    }

    .privacy-card {
        padding: 20px;
    }

    .privacy-hero h1 {
        font-size: 1.8rem;
    }
}