/* ==========================================
   Annie's GALA 2025 - Main Styles
   Garst Museum Silent Auction
   ========================================== */

/* CSS Variables for Easy Theming */
:root {
    --color-primary: #8B4513;        /* Saddle Brown */
    --color-secondary: #D4AF37;      /* Gold */
    --color-accent: #8B0000;         /* Dark Red */
    --color-dark: #2C1810;           /* Very Dark Brown */
    --color-light: #F5E6D3;          /* Cream */
    --color-white: #FFFFFF;
    --color-text: #3E2723;           /* Dark Brown Text */
    --color-text-light: #6D4C41;    /* Light Brown Text */

    --font-display: 'Playfair Display', serif;
    --font-heading: 'Bebas Neue', cursive;
    --font-body: 'Lato', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(44, 24, 16, 0.98) 0%, rgba(44, 24, 16, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(44, 24, 16, 0.98);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.garst-logo-wrapper {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

.garst-logo {
    height: 40px;
    width: auto;
    display: block;
}

.logo-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-secondary), transparent);
    opacity: 0.5;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.annie-logo {
    position: absolute;
    height: 35px;
    width: auto;
    top: 0;
    left: -10px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-light);
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gala-text {
    color: var(--color-secondary);
    font-weight: 900;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-secondary);
    letter-spacing: 4px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 450px;
}

.nav-menu a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-secondary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2C1810 0%, #5D4037 50%, #3E2723 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

/* Hero background image - temporarily disabled until correct photo is added
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/annie-oakley-vintage.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: sepia(40%);
}
*/

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
    animation: subtleFloat 20s ease-in-out infinite;
}

.hero-header-image {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    height: auto;
    z-index: 1;
    opacity: 0.9;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

/* Target Decorations */
.target-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.15;
    animation: rotateTarget 30s linear infinite;
}

.target-top-left {
    top: 10%;
    left: 5%;
    background:
        radial-gradient(circle, transparent 35%, var(--color-secondary) 35%, var(--color-secondary) 40%, transparent 40%),
        radial-gradient(circle, transparent 55%, var(--color-accent) 55%, var(--color-accent) 60%, transparent 60%),
        radial-gradient(circle, var(--color-secondary) 15%, transparent 15%);
}

.target-bottom-right {
    bottom: 10%;
    right: 5%;
    background:
        radial-gradient(circle, transparent 35%, var(--color-secondary) 35%, var(--color-secondary) 40%, transparent 40%),
        radial-gradient(circle, transparent 55%, var(--color-accent) 55%, var(--color-accent) 60%, transparent 60%),
        radial-gradient(circle, var(--color-secondary) 15%, transparent 15%);
    animation-direction: reverse;
}

@keyframes rotateTarget {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Typography */
.hero-title {
    font-family: var(--font-heading);
    color: var(--color-light);
    margin-bottom: 1rem;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line-1 {
    font-size: 4rem;
    letter-spacing: 8px;
    color: var(--color-light);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.title-line-2 {
    font-size: 8rem;
    letter-spacing: 16px;
    color: var(--color-secondary);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 2px var(--color-secondary);
    margin: -1rem 0;
}

.year {
    font-size: 3rem;
    letter-spacing: 12px;
    color: var(--color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--color-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Event Dates Badge */
.event-dates {
    margin: 2rem 0;
}

.date-badge {
    display: inline-flex;
    flex-direction: column;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--color-secondary);
    padding: 1rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.date-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-light);
    opacity: 0.8;
}

.date-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-secondary);
    letter-spacing: 2px;
    margin-top: 0.25rem;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: #F4C542;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
}

.btn-secondary:hover {
    background: var(--color-light);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.btn-accent:hover {
    background: #A52A2A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-light);
    font-size: 0.875rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    transform: rotate(45deg);
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats-section {
    background: var(--color-light);
    padding: 4rem 0;
    border-top: 4px solid var(--color-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    padding: 6rem 0;
    background: white;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--color-secondary);
}

.section-title.centered {
    text-align: center;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--color-light) 0%, #FFF8E7 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--color-secondary);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.highlight-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-list strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-list p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #6D4C41 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* About Image */
.about-image {
    position: relative;
}

.image-frame {
    background: linear-gradient(135deg, var(--color-light) 0%, #E8D4B8 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.frame-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--color-secondary);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.annie-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin: 0 auto 2rem auto;
    border: 4px solid white;
    filter: sepia(20%) contrast(1.1);
    transition: var(--transition-smooth);
    display: block;
}

.annie-photo:hover {
    transform: scale(1.02);
    filter: sepia(10%) contrast(1.15);
}

.museum-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.museum-info p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==========================================
   PARTICIPATE SECTION
   ========================================== */

.participate-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white 0%, var(--color-light) 100%);
}

.participate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.participate-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.participate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.participate-card:hover::before {
    transform: scaleX(1);
}

.participate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), #F4C542);
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.participate-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.participate-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: 5rem 0;
    background: var(--color-dark);
    color: var(--color-light);
}

.contact-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: var(--color-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--color-light);
    font-size: 1.2rem;
}

.contact-item a:hover {
    color: var(--color-secondary);
}

.sponsor-cta {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.sponsor-cta h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.sponsor-cta p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: #1A0F0A;
    color: var(--color-light);
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--color-light);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-secondary);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.centered {
    text-align: center;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .participate-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(44, 24, 16, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        line-height: 1.1;
    }

    .title-line-1 {
        font-size: 3rem;
    }

    .title-line-2 {
        font-size: 5rem;
    }

    .year {
        font-size: 2rem;
    }

    .hero-header-image {
        max-width: 500px;
        top: 90px;
    }

    .hero-cta {
        flex-direction: column;
        margin-top: 1.5rem;
        margin-bottom: 4rem;
    }

    .btn {
        width: 100%;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .participate-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .participate-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-content {
        padding: 1rem;
    }

    .title-line-1 {
        font-size: 2.5rem;
    }

    .title-line-2 {
        font-size: 4rem;
    }

    .year {
        font-size: 1.5rem;
    }

    .hero-header-image {
        max-width: 350px;
        top: 80px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .garst-logo {
        height: 35px;
    }

    .garst-logo-wrapper {
        padding: 0.4rem 0.8rem;
    }

    .logo-text-group {
        padding-top: 0;
    }

    .logo-section {
        gap: 0.75rem;
    }

    .logo-divider {
        height: 35px;
    }

    .annie-photo {
        max-width: 100%;
    }
}
