/* Import Google Fonts: Playfair Display (Serif) and Lato (Sans-Serif) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* =========================================
   CSS VARIABLES (Brand Colors & Fonts)
   ========================================= */
:root {
    /* Colors extracted from Facebook graphics */
    --brand-plum: #5c3a46; /* Deep burgundy/plum for main text */
    --brand-pink: #f28c9f; /* Vibrant blush pink for accents/buttons */
    --brand-light-pink: #fbebf0; /* Soft background pink */
    --brand-cream: #fffafb; /* Warm off-white background */
    --white: #ffffff;
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* =========================================
   BASE STYLES
   ========================================= */
body {
    font-family: var(--font-body);
    color: var(--brand-plum);
    background-color: var(--brand-cream);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

a {
    color: var(--brand-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--brand-plum);
    }

/* =========================================
   LAYOUT STRUCTURE
   ========================================= */
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Pushes footer to the bottom */
}

.main-content {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top-bar {
    background-color: var(--brand-plum);
    color: var(--brand-light-pink);
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0.4rem 2rem;
    font-size: 0.85rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-container {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--brand-plum);
    font-weight: 600;
}

.brand-tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: #886a75;
}

.main-navigation {
    display: flex;
    gap: 1.5rem;
}

    .main-navigation a {
        color: var(--brand-plum);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding-bottom: 0.25rem;
        border-bottom: 2px solid transparent;
    }

        /* Blazor's active link class */
        .main-navigation a.active,
        .main-navigation a:hover {
            color: var(--brand-pink);
            border-bottom: 2px solid var(--brand-pink);
        }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: var(--brand-light-pink);
    border-top: 1px solid #f2d5dc;
    padding: 3rem 2rem 1rem 2rem;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.footer-contact p,
.footer-contact a {
    color: var(--brand-plum);
    margin: 0.25rem 0;
    display: block;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #886a75;
    border-top: 1px solid #f2d5dc;
    padding-top: 1rem;
    max-width: 1200px;
    margin: 1rem auto 0 auto;
}
