/* Classic Lotto Australia - Vintage Retro Theme CSS */
/* Using Pure Flexbox architecture for unique layout */

/* Enhanced Typography */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Fredericka+the+Great&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* Root Variables for Vintage Color Palette */
:root {
    --vintage-cream: #f7e7ce;
    --vintage-beige: #e8d5b7;
    --vintage-tan: #d4c4a8;
    --vintage-brown: #8b4513;
    --vintage-rust: #a0522d;
    --vintage-gold: #daa520;
    --vintage-dark-gold: #b8860b;
    --vintage-text: #5d4e37;
    --vintage-light: #fdf5e6;
    --vintage-shadow: rgba(139, 69, 19, 0.2);
}

/* Enhanced Typography */
body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(45deg, var(--vintage-cream) 0%, var(--vintage-beige) 30%, var(--vintage-tan) 100%);
    background-attachment: fixed;
    color: var(--vintage-text);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--vintage-brown);
}

/* Popup Styles - Vintage Theme */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: linear-gradient(135deg, var(--vintage-light) 0%, var(--vintage-cream) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 450px;
    box-shadow:
        0 20px 60px rgba(139, 69, 19, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 4px solid var(--vintage-brown);
    animation: vintagePopupSlideIn 0.6s ease-out;
    position: relative;
}

.popup-content::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--vintage-gold);
    border-radius: 15px;
    pointer-events: none;
}

@keyframes vintagePopupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.popup-content h2 {
    color: var(--vintage-brown);
    margin-bottom: 1.5rem;
    font-family: 'Fredericka the Great', cursive;
    font-size: 1.8rem;
}

/* Cookie Banner - Vintage Style */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--vintage-rust) 100%);
    color: var(--vintage-gold);
    padding: 2rem;
    border-radius: 15px;
    max-width: 380px;
    z-index: 9999;
    box-shadow:
        0 15px 35px rgba(139, 69, 19, 0.4),
        inset 0 1px 0 rgba(218, 165, 32, 0.3);
    border: 3px solid var(--vintage-gold);
    animation: cookieVintageSlideIn 0.6s ease-out;
}

@keyframes cookieVintageSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

/* Enhanced Button Styles */
.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px var(--vintage-shadow);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--vintage-dark-gold), #996515);
    box-shadow:
        0 8px 25px rgba(184, 134, 11, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--vintage-gold);
    color: var(--vintage-brown);
    border-color: var(--vintage-brown);
}

/* Vintage Features Section - Pure Flexbox */
.vintage-features {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vintage-light) 0%, var(--vintage-cream) 100%);
    position: relative;
}

.vintage-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vintage-features h2 {
    text-align: center;
    color: var(--vintage-brown);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    font-family: 'Fredericka the Great', cursive;
    text-shadow: 2px 2px 4px var(--vintage-shadow);
    position: relative;
    z-index: 1;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--vintage-light) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow:
        0 15px 35px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--vintage-gold), var(--vintage-brown), var(--vintage-rust));
}

.feature-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow:
        0 25px 50px rgba(139, 69, 19, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--vintage-gold);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: sepia(30%) saturate(120%);
}

.feature-card h3 {
    color: var(--vintage-brown);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.feature-card p {
    color: var(--vintage-text);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    max-width: 90%;
}

/* Classic Draws Section - Ticket Style */
.classic-draws {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--vintage-rust) 100%);
    color: var(--vintage-light);
    position: relative;
}

.classic-draws::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(218, 165, 32, 0.03) 2px,
            rgba(218, 165, 32, 0.03) 4px
        );
    pointer-events: none;
}

.classic-draws h2 {
    text-align: center;
    color: var(--vintage-gold);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-family: 'Fredericka the Great', cursive;
    position: relative;
    z-index: 1;
}

.draws-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: var(--vintage-cream);
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}

.draws-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

/* Vintage Lottery Ticket Design */
.draw-ticket {
    background: linear-gradient(135deg, var(--vintage-light) 0%, var(--vintage-cream) 100%);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 3px dashed var(--vintage-brown);
    transition: all 0.4s ease;
    position: relative;
    box-shadow:
        0 10px 25px rgba(139, 69, 19, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.draw-ticket::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--vintage-gold);
    border-radius: 10px;
    pointer-events: none;
}

.draw-ticket:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--vintage-gold);
    box-shadow:
        0 20px 40px rgba(139, 69, 19, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ticket-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--vintage-rust);
    margin-bottom: 0.5rem;
    font-family: 'Crimson Text', serif;
}

.ticket-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vintage-brown);
    margin-bottom: 0.5rem;
    font-family: 'Fredericka the Great', cursive;
}

.ticket-time {
    font-size: 1rem;
    color: var(--vintage-text);
    margin-bottom: 1rem;
    font-style: italic;
}

.ticket-prize {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vintage-gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
    font-family: 'Playfair Display', serif;
}

.ticket-perforations {
    width: 100%;
    height: 8px;
    background:
        radial-gradient(circle, var(--vintage-brown) 2px, transparent 2px);
    background-size: 12px 8px;
    margin: 1rem 0;
    opacity: 0.3;
}

.ticket-btn {
    width: 80%;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
}

/* Customer Stories Section */
.customer-stories {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--vintage-beige) 0%, var(--vintage-tan) 100%);
    position: relative;
}

.customer-stories h2 {
    text-align: center;
    color: var(--vintage-brown);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    font-family: 'Fredericka the Great', cursive;
}

.stories-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--vintage-light) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(139, 69, 19, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-left: 6px solid var(--vintage-gold);
    transition: all 0.4s ease;
    position: relative;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: var(--vintage-gold);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.story-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow:
        0 25px 50px rgba(139, 69, 19, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.story-stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    filter: sepia(50%) saturate(150%);
}

.story-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--vintage-text);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.story-author {
    font-weight: 700;
    color: var(--vintage-brown);
    font-size: 1rem;
    text-align: right;
    font-family: 'Dancing Script', cursive;
}

/* Disclaimer Section - Vintage Style */
.disclaimer {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8B0000 0%, #A0522D 100%);
    color: var(--vintage-light);
    position: relative;
}

.disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(218, 165, 32, 0.1) 3px,
            rgba(218, 165, 32, 0.1) 6px
        );
    pointer-events: none;
}

.disclaimer-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.disclaimer h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--vintage-gold);
    font-family: 'Fredericka the Great', cursive;
}

.disclaimer p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.help-resources {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border: 3px solid rgba(218, 165, 32, 0.4);
    backdrop-filter: blur(5px);
}

.org-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.org-logo {
    height: 70px;
    width: auto;
    transition: all 0.4s ease;
    filter: brightness(1.2) sepia(10%);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.7rem;
    border: 2px solid var(--vintage-gold);
}

.org-logo:hover {
    transform: scale(1.15) rotate(-2deg);
    filter: brightness(1.4) sepia(20%);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.age-restriction {
    background: linear-gradient(45deg, var(--vintage-gold), var(--vintage-dark-gold));
    color: var(--vintage-brown);
    padding: 0.8rem 1.2rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.4rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--vintage-light);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Footer - Vintage Style */
footer {
    background: linear-gradient(135deg, var(--vintage-brown) 0%, #654321 100%);
    color: var(--vintage-light);
    padding: 3.5rem 0 2.5rem;
    position: relative;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-btn {
    color: var(--vintage-gold);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--vintage-gold);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}

.footer-btn:hover {
    background: var(--vintage-gold);
    color: var(--vintage-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
}

.footer-orgs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-org-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem;
    border: 1px solid var(--vintage-gold);
}

.footer-org-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.footer-age {
    background: var(--vintage-gold);
    color: var(--vintage-brown);
    padding: 0.4rem 1rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--vintage-light);
}

.footer-copyright {
    border-top: 1px solid rgba(218, 165, 32, 0.4);
    padding-top: 1.5rem;
    color: var(--vintage-beige);
    font-size: 1rem;
    font-style: italic;
}

/* Hidden class for popups */
.hidden {
    display: none !important;
}

/* Desktop Media Queries - Pure Flexbox Responsive */
@media (min-width: 768px) {
    .features-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-card {
        flex: 1;
        max-width: 350px;
        min-width: 300px;
    }

    .draws-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .draw-ticket {
        flex: 1;
        max-width: 320px;
        min-width: 280px;
    }

    .stories-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .story-card {
        flex: 1;
        max-width: 380px;
        min-width: 300px;
    }

    .org-logos {
        gap: 2.5rem;
    }
}

@media (min-width: 900px) {
    .features-container {
        flex-wrap: nowrap;
    }

    .draws-container {
        flex-wrap: nowrap;
    }

    .stories-container {
        flex-wrap: nowrap;
    }

    .footer-links {
        gap: 2.5rem;
    }

    .popup-content {
        width: 550px;
    }

    .cookie-banner {
        max-width: 420px;
    }
}

/* Enhanced animations for desktop */
@media (min-width: 900px) {
    .feature-card:hover {
        transform: translateY(-15px) rotate(2deg) scale(1.05);
    }

    .draw-ticket:hover {
        transform: translateY(-12px) scale(1.05) rotate(-1deg);
    }

    .story-card:hover {
        transform: translateY(-12px) rotate(-1deg) scale(1.02);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 3px solid currentColor;
    }

    .feature-card,
    .draw-ticket,
    .story-card {
        border: 3px solid var(--vintage-brown);
    }
}

/* Print styles */
@media print {
    .popup-overlay,
    .cookie-banner,
    .btn,
    header {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }
}

/* ========================================= */
/* CONTACT PAGE STYLES - VINTAGE THEME */
/* ========================================= */

.contact-hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--vintage-light) 0%, var(--vintage-cream) 100%);
    position: relative;
}

.contact-hero h1 {
    color: var(--vintage-brown);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    font-family: 'Fredericka the Great', cursive;
}

.contact-hero h2 {
    color: var(--vintage-rust);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}

.contact-main {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--vintage-cream) 0%, var(--vintage-beige) 100%);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    color: var(--vintage-brown);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Fredericka the Great', cursive;
}

.contact-method-vintage {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--vintage-light) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
    border-left: 5px solid var(--vintage-gold);
    transition: all 0.3s ease;
}

.contact-method-vintage:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
}

.method-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: sepia(30%);
}

.method-details h3 {
    color: var(--vintage-brown);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
}

.method-details p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--vintage-text);
}

.method-details a {
    color: var(--vintage-rust);
    text-decoration: none;
    font-weight: 600;
}

.method-details a:hover {
    text-decoration: underline;
}

/* Vintage Form Styles */
.vintage-form-section {
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--vintage-rust) 100%);
    padding: 3rem;
    border-radius: 25px;
    color: var(--vintage-light);
    position: relative;
    overflow: hidden;
}

.vintage-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(218, 165, 32, 0.05) 2px,
            rgba(218, 165, 32, 0.05) 4px
        );
    pointer-events: none;
}

.vintage-form-section h2 {
    color: var(--vintage-gold);
    margin-bottom: 1rem;
    font-family: 'Fredericka the Great', cursive;
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vintage-form-section p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.vintage-form {
    position: relative;
    z-index: 1;
}

.form-group-vintage {
    margin-bottom: 2rem;
}

.form-label-vintage {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--vintage-gold);
    font-weight: 600;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
}

.form-input-vintage, .form-textarea-vintage {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 3px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    color: var(--vintage-text);
    font-family: 'Crimson Text', serif;
    box-shadow: inset 0 2px 5px rgba(139, 69, 19, 0.1);
}

.form-input-vintage:focus, .form-textarea-vintage:focus {
    outline: none;
    border-color: var(--vintage-gold);
    box-shadow:
        0 0 0 3px rgba(218, 165, 32, 0.2),
        inset 0 2px 5px rgba(139, 69, 19, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-input-vintage.error {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
    animation: vintage-shake 0.5s ease-in-out;
}

@keyframes vintage-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-textarea-vintage {
    min-height: 120px;
    resize: vertical;
    font-family: 'Crimson Text', serif;
}

.vintage-consent {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--vintage-cream);
}

.consent-checkbox {
    margin-top: 0.2rem;
    transform: scale(1.2);
    accent-color: var(--vintage-gold);
}

.form-buttons-vintage {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.vintage-submit {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--vintage-gold), var(--vintage-dark-gold));
    color: var(--vintage-brown);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vintage-submit:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.4);
}

.vintage-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.vintage-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Success and Error Messages */
.vintage-message {
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    animation: vintage-fade-in 0.5s ease-out;
}

.vintage-message.success {
    background: linear-gradient(45deg, #228B22, #32CD32);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.vintage-message.error {
    background: linear-gradient(45deg, #8B0000, #DC143C);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes vintage-fade-in {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Desktop responsive for Contact page */
@media (min-width: 768px) {
    .contact-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
    }

    .vintage-form-section {
        flex: 1;
        max-width: 500px;
    }

    .method-icon {
        font-size: 3.5rem;
    }

    .form-buttons-vintage {
        flex-direction: row;
    }
}

@media (min-width: 900px) {
    .contact-method-vintage {
        padding: 2.5rem;
    }

    .vintage-form-section {
        padding: 4rem;
    }
}

/* ========================================= */
/* ABOUT PAGE STYLES - VINTAGE THEME */
/* ========================================= */

.about-hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--vintage-light) 0%, var(--vintage-cream) 100%);
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero h1 {
    color: var(--vintage-brown);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    font-family: 'Fredericka the Great', cursive;
    position: relative;
    z-index: 1;
}

.about-hero h2 {
    color: var(--vintage-rust);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.our-history {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--vintage-cream) 0%, var(--vintage-beige) 100%);
}

.history-content h2 {
    text-align: center;
    color: var(--vintage-brown);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    font-family: 'Fredericka the Great', cursive;
}

.history-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.history-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--vintage-text);
    text-align: justify;
}

.history-showcase {
    display: flex;
    justify-content: center;
}

.vintage-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--vintage-light) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 15px 35px rgba(139, 69, 19, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 3px solid var(--vintage-gold);
    position: relative;
    max-width: 400px;
}

.vintage-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--vintage-brown);
    border-radius: 15px;
    pointer-events: none;
}

.vintage-card h3 {
    color: var(--vintage-brown);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
}

.vintage-card p {
    color: var(--vintage-rust);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.vintage-card ul {
    list-style: none;
    padding: 0;
}

.vintage-card li {
    margin-bottom: 0.8rem;
    color: var(--vintage-text);
    font-weight: 500;
}

.founders {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--vintage-rust) 100%);
    color: var(--vintage-light);
}

.founders h2 {
    text-align: center;
    color: var(--vintage-gold);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    font-family: 'Fredericka the Great', cursive;
}

.founders-gallery {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.founder-portrait {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid rgba(218, 165, 32, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.founder-portrait:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--vintage-gold);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
}

.portrait-frame {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: sepia(30%);
}

.founder-portrait h3 {
    color: var(--vintage-gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.founder-title {
    color: var(--vintage-cream);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
}

.founder-portrait p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-quote {
    color: var(--vintage-gold);
    font-style: italic;
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    padding-top: 1rem;
}

.timeline {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--vintage-light) 0%, var(--vintage-cream) 100%);
}

.timeline h2 {
    text-align: center;
    color: var(--vintage-brown);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    font-family: 'Fredericka the Great', cursive;
}

.timeline-track {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--vintage-gold), var(--vintage-brown));
    border-radius: 2px;
}

.timeline-event {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.event-year {
    background: linear-gradient(45deg, var(--vintage-gold), var(--vintage-dark-gold));
    color: var(--vintage-brown);
    padding: 1rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--vintage-light);
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.event-content {
    background: linear-gradient(135deg, #ffffff 0%, var(--vintage-light) 100%);
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
    border-left: 4px solid var(--vintage-gold);
}

.event-content h3 {
    color: var(--vintage-brown);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
}

.event-content p {
    color: var(--vintage-text);
    line-height: 1.7;
}

.vintage-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vintage-beige) 0%, var(--vintage-tan) 100%);
}

.vintage-values h2 {
    text-align: center;
    color: var(--vintage-brown);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    font-family: 'Fredericka the Great', cursive;
}

.values-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-vintage {
    background: linear-gradient(135deg, #ffffff 0%, var(--vintage-light) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    border-top: 5px solid var(--vintage-gold);
    transition: all 0.4s ease;
}

.value-vintage:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.15);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: sepia(20%);
}

.value-vintage h3 {
    color: var(--vintage-brown);
    margin-bottom: 1.5rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
}

.value-vintage p {
    color: var(--vintage-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.vintage-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--vintage-rust) 100%);
    color: var(--vintage-light);
}

.vintage-stats h2 {
    text-align: center;
    color: var(--vintage-gold);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    font-family: 'Fredericka the Great', cursive;
}

.stats-display {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-vintage {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid rgba(218, 165, 32, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.stat-vintage:hover {
    transform: translateY(-8px);
    border-color: var(--vintage-gold);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--vintage-gold);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--vintage-light);
    margin-bottom: 0.5rem;
    font-family: 'Crimson Text', serif;
}

.stat-note {
    color: var(--vintage-cream);
    font-style: italic;
    font-family: 'Dancing Script', cursive;
}

.vintage-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vintage-light) 0%, var(--vintage-cream) 100%);
    text-align: center;
}

.vintage-cta h2 {
    color: var(--vintage-brown);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-family: 'Fredericka the Great', cursive;
}

.vintage-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--vintage-text);
    font-family: 'Dancing Script', cursive;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop responsive for About page */
@media (min-width: 768px) {
    .history-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .history-text {
        flex: 2;
    }

    .history-showcase {
        flex: 1;
    }

    .founders-gallery {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .founder-portrait {
        flex: 1;
        max-width: 350px;
        min-width: 300px;
    }

    .values-showcase {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .value-vintage {
        flex: 1;
        max-width: 300px;
        min-width: 250px;
    }

    .stats-display {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-vintage {
        flex: 1;
        max-width: 250px;
        min-width: 200px;
    }
}

@media (min-width: 900px) {
    .founders-gallery {
        flex-wrap: nowrap;
    }

    .values-showcase {
        flex-wrap: nowrap;
    }

    .stats-display {
        flex-wrap: nowrap;
    }
}
