/*
Theme Name: AICO Gelato
Theme URI: https://aicogelato.com
Author: AICO Team
Author URI: https://aicogelato.com
Description: A modern, elegant WordPress theme designed for AICO Gelato - artisan gelato and ice cream shop. Features a clean, appetizing design with beautiful product showcases, hero sections, and responsive layout perfect for food businesses.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aicogelato
Tags: food-and-drink, e-commerce, custom-menu, featured-images, full-width-template, responsive-layout, translation-ready
*/

/* ============================================
   CSS VARIABLES & DESIGN SYSTEM
   ============================================ */

:root {
    /* Color Palette - AICO Gelato Theme */
    --cream-bg: #FFF9F0;             /* Main cream background */
    --cream-beige: #F1E6D8;          /* Darker beige for section backgrounds (more contrast) */
    --light-yellow: #FFF9E0;         /* Timeline boxes background */
    --sage-green: #C8D5B9;           /* Menu section background */
    --light-gray: #F5F5F0;           /* Alternate box background */
    --brown-primary: #3D2817;        /* Primary brown text */
    --brown-medium: #6B4423;         /* Medium brown accents */
    --brown-light: #D4B499;          /* Light brown timeline markers */
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-primary: #3D2817;         /* Dark brown */
    --text-secondary: #6B4423;       /* Medium brown */
    --text-muted: #8B7355;           /* Light brown */
    --text-on-dark: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(61, 40, 23, 0.1);
    --shadow-md: 0 4px 6px rgba(61, 40, 23, 0.1);
    --shadow-lg: 0 10px 25px rgba(61, 40, 23, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Borders */
    --border-brown: 2px solid var(--brown-primary);
    --border-light: 1px solid var(--brown-light);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--cream-bg);
    overflow-x: hidden;
}

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

/* Accessibility improvements */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
    padding: 8px 16px;
    background: var(--brown-primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--cream-bg);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: var(--text-primary);
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--brown-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--brown-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading states */
.is-loading {
    cursor: wait;
}

.is-loading * {
    pointer-events: none;
}

button.is-loading,
input[type="submit"].is-loading {
    position: relative;
    color: transparent !important;
}

button.is-loading::after,
input[type="submit"].is-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Touch device improvements */
.touch-device a,
.touch-device button,
.touch-device [role="button"] {
    -webkit-tap-highlight-color: rgba(61, 40, 23, 0.2);
    tap-highlight-color: rgba(61, 40, 23, 0.2);
}

.small-tap-target {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

/* Search form improvements */
.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-field:focus {
    border-color: var(--brown-primary) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 40, 23, 0.1);
}

.search-submit:hover {
    background: var(--brown-medium) !important;
    transform: translateY(-1px);
}

.search-submit:active {
    transform: translateY(0);
}

/* Improved button styles */
.btn,
button[type="submit"],
input[type="submit"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active,
button[type="submit"]:active,
input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--brown-primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
    z-index: 999;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    line-height: 1;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--brown-medium);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#back-to-top:active {
    transform: translateY(-1px);
}

#back-to-top:focus-visible {
    outline: 3px solid var(--brown-primary);
    outline-offset: 2px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #back-to-top {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    /* Simple Footer Responsive */
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-section-title {
        font-size: 1.5rem;
    }
    
    .footer-logo-large {
        font-size: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .footer-left-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--brown-medium);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
}

.container-narrow {
    max-width: 900px;
}

.section {
    padding: var(--spacing-xxl) 0;
}

.section-alt {
    background-color: var(--sage-green);
}

.section-cream {
    background-color: var(--cream-bg);
}

/* Force the timeline section to use the beige background like the design */
#journey {
    background-color: var(--cream-beige) !important;
    padding: var(--spacing-xxl) 0 !important;
}

/* Ensure no inner wrapper overrides the beige background */
#journey .container,
#journey .timeline-container {
    background-color: transparent !important;
}

.section-yellow {
    background-color: var(--light-yellow);
}

/* ============================================
   NEW HEADER - CLEAN IMPLEMENTATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--cream-bg);
    border-bottom: 1px solid rgba(61, 40, 23, 0.1);
    box-shadow: 0 2px 8px rgba(61, 40, 23, 0.05);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 40px;
}

/* Logo Styles */
.header-logo {
    display: flex;
    align-items: center;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-logo-img,
.header-logo .custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
    vertical-align: middle;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brown-primary);
    letter-spacing: 0.02em;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* WordPress built-in custom logo link */
.header-logo .custom-logo-link {
    display: flex;
    align-items: center;
    line-height: 1;
}

/* Navigation Menu */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.current-menu-item {
    color: var(--brown-medium);
}

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

.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after {
    width: 100%;
}

/* Social Media Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--brown-primary);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social .social-icon:hover {
    background-color: var(--brown-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(61, 40, 23, 0.2);
}

.header-social .social-icon svg {
    width: 18px;
    height: 18px;
}

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

.mobile-menu-toggle .menu-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--brown-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .menu-bar {
    background-color: var(--brown-medium);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-wrapper {
        gap: 24px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .nav-menu a {
        font-size: 0.813rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .header-wrapper {
        padding: 10px 0;
    }
    
    .header-logo-text {
        font-size: 1.5rem;
    }
    
    .header-logo-img,
    .header-logo .custom-logo {
        max-height: 40px;
    }
    
    /* Hide desktop navigation */
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--cream-bg);
        border-top: 1px solid rgba(61, 40, 23, 0.1);
        box-shadow: 0 4px 12px rgba(61, 40, 23, 0.1);
        padding: 20px;
    }
    
    .header-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(61, 40, 23, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 16px 0;
        font-size: 0.938rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Hide social icons on mobile */
    .header-social {
        display: none;
    }
    
    /* Show mobile toggle */
    .mobile-menu-toggle {
        display: flex;
    }
}

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

.hero-section {
    padding: var(--spacing-xl) 0;
    /* Background color controlled by Customizer - don't hardcode here */
}

/* Bordered Frame - Modern Design */
.hero-bordered-frame {
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #c4b5a0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 40, 23, 0.08);
    transition: box-shadow 0.3s ease;
}

.hero-bordered-frame:hover {
    box-shadow: 0 8px 32px rgba(61, 40, 23, 0.12);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 550px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 60px 80px;
    justify-content: center;
    background: var(--cream-bg);
}

.hero-logo {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    position: relative;
}

.hero-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7a8b6f 0%, transparent 100%);
}

.hero-logo-image-wrapper {
    margin-bottom: 1rem;
    max-width: 100%;
}

.hero-logo-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.hero-contact {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: auto;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-social {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--brown-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7a8b6f 0%, #5a6b4f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon svg {
    fill: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(61, 40, 23, 0.25);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 10px;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-bordered-frame:hover .hero-image {
    transform: scale(1.02);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 530px;
    background: linear-gradient(135deg, #D4B499 0%, #8B7355 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid var(--text-primary);
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--white);
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--brown-medium);
    color: var(--white);
    border-color: var(--brown-medium);
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--brown-medium);
    transform: translateY(-2px);
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

/* ============================================
   HERO SECTION - ENHANCED
   ============================================ */

.hero {
    position: relative;
    padding: 60px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero.loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero-bordered-container {
    border: 2px solid #d4c4b0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(46, 40, 33, 0.1);
    transition: all 0.4s ease;
}

.hero-bordered-container:hover {
    box-shadow: 0 15px 60px rgba(46, 40, 33, 0.15);
}

.hero-photo {
    transition: transform 0.6s ease;
}

.hero-bordered-container:hover .hero-photo {
    transform: scale(1.03);
}

.hero-social-icon {
    transition: all 0.3s ease;
}

.hero-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.hero-social-icon:focus {
    outline: 2px solid #6B8E23;
    outline-offset: 3px;
}

/* Hero Accessibility */
.hero[role="banner"] {
    position: relative;
}

/* ============================================
   MENU/SCOOPY SECTION - ENHANCED
   ============================================ */

.scoopy-section,
.menu-section {
    position: relative;
}

.menu-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.menu-card:focus-within {
    outline: 2px solid #6B8E23;
    outline-offset: 4px;
}

.menu-simple-item,
.signature-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px;
    margin: -12px;
}

.menu-simple-item:hover,
.signature-item:hover {
    background: rgba(122, 139, 111, 0.05);
}

.menu-simple-item:focus,
.signature-item:focus {
    background: rgba(122, 139, 111, 0.08);
    outline: 2px solid #6B8E23;
    outline-offset: 2px;
}

.signature-img {
    transition: transform 0.4s ease;
}

.signature-item:hover .signature-img {
    transform: scale(1.05);
}

/* ============================================
   FOUNDERS SECTION - ENHANCED
   ============================================ */

.founder-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.founder-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.founder-layout:nth-child(odd) .founder-animate {
    transition-delay: 0.2s;
}

.founder-layout:nth-child(even) .founder-animate {
    transition-delay: 0.4s;
}

.founder-photo {
    transition: transform 0.4s ease;
    will-change: transform;
}

.founder-photo-column {
    overflow: hidden;
    border-radius: 16px;
}

.founder-photo-column:hover .founder-photo {
    transform: scale(1.05);
}

.founder-bio-content:focus {
    outline: 2px solid #6B8E23;
    outline-offset: 4px;
    border-radius: 8px;
}

/* ============================================
   ACADEMY SECTION - ENHANCED
   ============================================ */

.workshop-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.workshop-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.workshop-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.workshop-card:focus-within {
    outline: 3px solid #6B8E23;
    outline-offset: 4px;
}

.workshop-img,
.workshop-illustration img {
    transition: transform 0.5s ease;
}

.workshop-cta,
.cta-button {
    transition: all 0.3s ease;
}

.workshop-cta:hover,
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 139, 111, 0.3);
}

.workshop-cta:focus,
.cta-button:focus {
    outline: 3px solid #6B8E23;
    outline-offset: 3px;
}

/* ============================================
   FOOTER SECTION - CLEAN DESIGN
   ============================================ */

/* Footer Container */
.modern-footer {
    background-color: var(--sage-green, #C8D5B9);
    padding: var(--spacing-xxl) 0;
    position: relative;
}

/* Footer Content Grid */
.footer-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Footer Brand Column */
.footer-brand-block {
    margin-bottom: var(--spacing-md);
}

.footer-logo-large {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.footer-logo-ai,
.footer-logo-co {
    color: var(--text-primary);
}

.footer-cone-wrapper {
    display: flex;
    align-items: center;
}

.footer-brand-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer Section Title */
.footer-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--text-primary);
}

.title-line {
    display: none;
}

/* Contact Information List */
.footer-contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.6;
}

.footer-contact-card-wide {
    display: flex;
    align-items: flex-start;
}

.contact-icon-wrapper {
    flex-shrink: 0;
}

.contact-icon-modern {
    color: var(--text-primary);
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: none;
}

.contact-value {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-value:hover {
    text-decoration: underline;
}

.contact-address {
    line-height: 1.6;
}

.external-link-icon {
    display: none;
}

/* Hide/Simplify Complex Elements - Keep Contact Info Visible */
.footer-newsletter-box,
.footer-hours-modern,
.footer-social-modern,
.trust-badges,
.footer-trust-section,
.newsletter-icon-badge,
.back-to-top-modern,
.footer-social-column {
    display: none !important;
}

/* Ensure core footer elements are visible */
.footer-content-grid {
    display: grid !important;
}

.footer-column,
.footer-brand-column,
.footer-contact-column,
.footer-contact-grid,
.footer-contact-card {
    display: flex !important;
}

/* Simple Footer Bottom */
.footer-bottom {
    background: transparent !important;
    border-top: 1px solid var(--border-color, rgba(0,0,0,0.1));
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
    display: block !important;
}

.footer-bottom-content {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-left-bottom {
    flex: 1;
    display: block !important;
}

.copyright-text {
    color: var(--text-primary) !important;
    font-size: 0.9rem;
    margin: 0;
    display: block !important;
}

.footer-subtitle-bottom {
    color: var(--text-secondary) !important;
    font-size: 0.85rem;
    margin: var(--spacing-xs) 0 0 0;
    display: block !important;
}

.footer-bottom-links {
    display: flex !important;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-link {
    color: var(--text-primary) !important;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block !important;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-separator {
    color: var(--text-secondary) !important;
    display: inline !important;
}

/* Old styles below - keeping for compatibility but hiding */
.footer-newsletter-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Newsletter decorative icon */
.newsletter-icon-badge {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.newsletter-icon-badge svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.newsletter-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.newsletter-box-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-privacy-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-style: italic;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 10px;
}

.newsletter-input-modern {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-modern:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.newsletter-button-modern {
    padding: 14px 28px;
    background: #ffffff;
    color: #6B8E23;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-button-modern:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-button-modern svg {
    transition: transform 0.3s ease;
}

.newsletter-button-modern:hover svg {
    transform: translateX(3px);
}

.newsletter-button-modern:focus {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

/* Newsletter success state */
.newsletter-input-modern.success {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
}

.newsletter-button-modern.success {
    background: #4CAF50;
    color: white;
}

.newsletter-button-modern.success svg {
    display: none;
}

.newsletter-button-modern.success::after {
    content: '✓';
    font-size: 1.2rem;
}

/* Footer Hours - Modern Design */
.footer-hours-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-subsection-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.hours-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}

.hours-text {
    flex: 1;
}

/* Social Media - Modern Cards */
.footer-social-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Ripple effect on click */
.social-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.social-card:active::after {
    width: 200px;
    height: 200px;
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-card svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-card:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.social-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.social-card:focus {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* Pulse animation for first social card */
.social-card:first-child {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1); }
}

/* Trust Badges Section */
.footer-trust-section {
    background: rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.trust-badge svg {
    opacity: 0.9;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-left-bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.copyright-text strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-subtitle-bottom {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Back to Top Button - Modern */
.back-to-top-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: #6B8E23;
    border: 3px solid #6B8E23;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 6px 25px rgba(106, 139, 111, 0.4);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.back-to-top-modern.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.back-to-top-modern:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(106, 139, 111, 0.5);
    border-color: #5a7020;
}

.back-to-top-modern:active {
    transform: translateY(-5px) scale(0.98);
}

.back-to-top-modern:focus {
    outline: 3px solid #6B8E23;
    outline-offset: 4px;
}

.back-to-top-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Copy Notification - Modern */
.copy-notification-modern {
    position: fixed;
    background: #ffffff;
    color: #6B8E23;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    z-index: 10000;
    animation: copySlideIn 2.5s ease;
    border: 2px solid #6B8E23;
}

@keyframes copySlideIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    15% { opacity: 1; transform: translateY(0) scale(1); }
    85% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-20px) scale(0.9); }
}

/* Footer Copy Notification */
.copy-notification {
    position: absolute;
    background: white;
    color: #6B8E23;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 100;
    animation: copyNotify 2s ease;
}

@keyframes copyNotify {
    0% { opacity: 0; transform: translateY(10px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* Footer Layout Variations */
.footer-layout-centered .footer-inner-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-layout-3-column .footer-inner-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-layout-wide .footer-inner-wrapper {
    max-width: 100%;
}

/* Print Styles for Footer */
@media print {
    .site-footer {
        background: #f5f5f5 !important;
        color: #2e2821 !important;
        page-break-before: always;
    }
    
    .footer-social-icons,
    .back-to-top,
    .footer-newsletter-section {
        display: none !important;
    }
    
    .contact-link {
        color: #2e2821 !important;
        text-decoration: none !important;
    }
    
    .footer-illustration-img {
        max-width: 200px !important;
    }
}

/* ============================================
   TIMELINE / JOURNEY SECTION - ALTERNATING DESIGN
   ============================================ */

/* ============================================
   JOURNEY CARDS SECTION (IMPROVED)
   ============================================ */

.journey-cards-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 50%, #f9f5f0 100%);
    position: relative;
    overflow: hidden;
}

.journey-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4c4b0, transparent);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #2e2821;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7a6f65;
    font-weight: 400;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Grid */
.journey-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Journey Card */
.journey-card {
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(46, 40, 33, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 196, 176, 0.15);
    display: flex;
    flex-direction: row;
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeIn 0.8s ease forwards;
    position: relative;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 139, 111, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.journey-card:hover::before {
    opacity: 1;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger card animations */
.journey-card:nth-child(1) { animation-delay: 0.1s; }
.journey-card:nth-child(2) { animation-delay: 0.2s; }
.journey-card:nth-child(3) { animation-delay: 0.3s; }
.journey-card:nth-child(4) { animation-delay: 0.4s; }
.journey-card:nth-child(5) { animation-delay: 0.5s; }
.journey-card:nth-child(6) { animation-delay: 0.6s; }
.journey-card:nth-child(7) { animation-delay: 0.7s; }
.journey-card:nth-child(8) { animation-delay: 0.8s; }
.journey-card:nth-child(9) { animation-delay: 0.9s; }

.journey-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(46, 40, 33, 0.18);
    border-color: rgba(122, 139, 111, 0.35);
}

/* Card Image */
.card-image {
    position: relative;
    width: 400px;
    min-width: 400px;
    height: auto;
    min-height: 100%;
    overflow: visible;
    background: linear-gradient(135deg, #e8dcc8 0%, #d4c4b0 100%);
    border-radius: 20px 0 0 20px;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.journey-card:hover .card-image::after {
    opacity: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(1.02) contrast(1.05);
    border-radius: 20px 0 0 20px;
}

.journey-card:hover .card-image img {
    transform: scale(1.08);
}

/* Card Image Placeholder (when no image) */
.card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7a8b6f 0%, #6B8E23 100%);
    position: relative;
}

.card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

/* Card Icon Overlay */
.card-icon-overlay {
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    z-index: 100;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(46, 40, 33, 0.25);
    border: 5px solid #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon-large {
    font-size: 40px;
}

.journey-card:hover .card-icon {
    transform: scale(1.15) rotate(12deg);
    box-shadow: 0 8px 30px rgba(46, 40, 33, 0.35);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

/* Card Content */
.card-content {
    padding: 35px 40px 35px 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    border-radius: 0 20px 20px 0;
    background: #fff;
}

/* Card Badge */
.card-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 18px;
    background: linear-gradient(135deg, #7a8b6f 0%, #6B8E23 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 25px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(106, 123, 111, 0.35);
    transition: all 0.3s ease;
}

.journey-card:hover .card-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(106, 123, 111, 0.45);
}

/* Card Title */
.card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #2e2821;
    margin-bottom: 14px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.journey-card:hover .card-title {
    color: #6B8E23;
}

/* Card Description */
.card-description {
    color: #5a4f45;
    line-height: 1.75;
    font-size: 0.98rem;
    margin: 0;
    flex: 1;
    font-weight: 400;
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
.journey-card:focus {
    outline: 3px solid #6B8E23;
    outline-offset: 4px;
}

.journey-card:focus-visible {
    outline: 3px solid #6B8E23;
    outline-offset: 4px;
}

/* ==========================================
   ADVANCED EFFECTS
   ========================================== */

/* 3D Tilt Effect */
.journey-card[data-tilt="true"] {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.journey-card[data-tilt="true"] .card-image {
    transform: translateZ(20px);
}

.journey-card[data-tilt="true"] .card-content {
    transform: translateZ(10px);
}

/* Parallax Effect */
.journey-card[data-parallax="true"] .card-image img {
    transition: transform 0.3s ease-out;
}

.journey-card[data-parallax="true"]:hover .card-image img {
    transform: scale(1.1) translateY(-5px);
}

/* Lazy Loading - Fade in when loaded */
.card-image img.lazy-load {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-image img.lazy-load.loaded {
    opacity: 1;
}

/* Intersection Observer - Initially hidden */
.journey-card[data-observe="true"]:not(.observed) {
    opacity: 0;
    transform: translateY(40px);
}

.journey-card[data-observe="true"].observed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Print Styles */
@media print {
    .journey-cards-section {
        background: #fff !important;
        padding: 20px 0 !important;
    }
    
    .journey-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .journey-card {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        margin-bottom: 20px !important;
    }
    
    .journey-card:hover {
        transform: none !important;
    }
    
    .card-image {
        height: 200px !important;
    }
    
    .card-badge {
        background: #6B8E23 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ============================================
   PRODUCTS / FLAVORS SECTION
   ============================================ */

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) 0;
}

.flavor-card {
    background: #FFF9F0;
    border: 2px solid #D4B499;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    transition: all var(--transition-normal);
}

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

.flavor-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.flavor-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.flavor-image {
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.flavor-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px;
    object-fit: cover;
}

.flavor-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown-medium);
    margin-top: var(--spacing-xs);
}

/* ============================================
   BEVERAGES SECTION
   ============================================ */

.beverages-section {
    padding: var(--spacing-xxl) 0;
}

.beverages-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

@media (max-width: 768px) {
    .beverages-layout {
        grid-template-columns: 1fr;
    }
}

.beverage-category-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
}

.beverage-category-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    background: var(--white);
    padding: 8px;
    border-radius: 8px;
}

.beverage-category-title-spacer {
    margin-bottom: var(--spacing-md);
}

.beverage-category-title--with-logo {
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.beverage-category-group {
    margin-bottom: var(--spacing-xl);
}

.beverage-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--brown-medium);
    padding-bottom: var(--spacing-xs);
}

.beverage-item {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--cream-bg);
    border-radius: var(--radius-md);
    border: 1px solid #D4B499;
    transition: all var(--transition-normal);
}

.beverage-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.beverages-bottom {
    margin-top: var(--spacing-xxl);
}

.beverages-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

@media (max-width: 1024px) {
    .beverages-bottom-grid {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .beverages-bottom-grid {
        grid-template-columns: 1fr;
        margin-bottom: var(--spacing-xl);
    }
}

.beverage-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.beverage-badge.badge-new {
    background: #FF6B6B;
    color: white;
}

.beverage-badge.badge-popular {
    background: #FFE66D;
    color: var(--text-primary);
}

.beverage-badge.badge-signature {
    background: #6B4423;
    color: white;
}

.beverage-image {
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.beverage-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.beverage-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.beverage-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.beverage-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown-medium);
}

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

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-content h2 {
    margin-bottom: var(--spacing-md);
}

.about-content p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

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

.site-footer {
    background-color: var(--text-primary);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-widget h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

.footer-widget p,
.footer-widget a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-widget a:hover {
    color: var(--brown-light);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 1024px) {
    .flavors-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    /* Journey Cards - Tablet 1 column */
    .journey-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Reduce image width on tablet for better proportion */
    .card-image {
        width: 350px;
        min-width: 350px;
    }
    
    /* Footer - Tablet */
    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info-column {
        grid-column: 1 / -1;
    }
    
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Journey Cards - Tablet/Mobile */
    .journey-cards-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
    }
    
    /* Stack cards vertically on mobile */
    .journey-card {
        flex-direction: column;
        overflow: hidden;
    }
    
    .card-image {
        width: 100%;
        min-width: 100%;
        height: 220px;
        min-height: 220px;
        overflow: hidden;
        border-radius: 20px 20px 0 0;
    }
    
    .card-image img {
        border-radius: 20px 20px 0 0;
    }
    
    .card-icon-overlay {
        top: auto;
        bottom: -30px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .card-content {
        padding: 50px 30px 35px;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        padding: 0 15px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .card-badge {
        font-size: 0.65rem;
        padding: 7px 15px;
    }
    
    .journey-cards-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        border-width: 4px;
    }
    
    .card-icon-overlay {
        bottom: -28px;
    }
    
    .card-content {
        padding: 45px 25px 30px;
    }
    
    /* Old mobile navigation CSS removed */
    
    .hero-bordered-frame {
        border-width: 1px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 50px 40px;
        order: 2;
    }
    
    .hero-image-wrapper {
        order: 1;
        min-height: 400px;
        padding: 8px;
    }
    
    .hero-image,
    .hero-image-placeholder {
        min-height: 384px;
    }
    
    .hero-logo {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .flavors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Footer - Mobile */
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }
    
    .footer-section-title {
        font-size: 1.5rem;
    }
    
    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-social-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
    }
    
    .newsletter-button-modern {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .back-to-top-modern {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .wave-svg {
        height: 40px;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
        gap: 8px;
    }
    
    .trust-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-left-bottom {
        text-align: center;
        width: 100%;
    }
    
    .footer-subtitle-bottom {
        font-size: 0.8rem;
    }
    
    .footer-logo-large {
        font-size: 2.5rem;
    }
    
    .newsletter-icon-badge {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .flavors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        padding: 40px 28px;
    }
    
    .hero-logo {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
    
    .hero-contact {
        font-size: 0.875rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-image-wrapper {
        padding: 6px;
    }
    
    .hero-image,
    .hero-image-placeholder {
        min-height: 338px;
    }
    
    .timeline-title {
        font-size: 2rem;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
}

/* ============================================
   ACADEMY PILLARS SECTION
   ============================================ */

.section-academy-pillars {
    position: relative;
    padding: var(--spacing-xxl) 0;
}

.academy-pillars-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.academy-pillars-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    padding: 6px 18px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #7a8b6f;
    border: 1px solid rgba(122, 139, 111, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.academy-pillars-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.academy-pillars-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto;
}

.academy-pillars-bridge {
    margin: var(--spacing-xl) 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.academy-pillars-bridge img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.academy-pillars-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}
.academy-pillars-modern.columns-1 {
    grid-template-columns: 1fr;
}
.academy-pillars-modern.columns-2 {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
}
.academy-pillars-modern.columns-3 {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
}
.academy-pillars-modern.columns-4 {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.academy-pillars-modern-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.academy-pillars-modern-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

.academy-pillars-modern-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f5f5f0;
    position: relative;
}

.academy-pillars-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.academy-pillars-modern-card:hover .academy-pillars-modern-image img {
    transform: scale(1.08);
}

.academy-pillars-modern-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0,0,0,0.35);
}

.academy-pillars-modern-body {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.academy-pillars-modern-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #7a8b6f;
    font-weight: 600;
}

.academy-pillars-modern-chip::before {
    content: '★';
    font-size: 0.85rem;
}

.academy-pillars-modern-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.academy-pillars-modern-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .academy-pillars-title {
        font-size: 2.1rem;
    }
    
    .academy-pillars-modern,
    .academy-pillars-modern.columns-2,
    .academy-pillars-modern.columns-3,
    .academy-pillars-modern.columns-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WORKSHOPS SECTION REDESIGNED
   ============================================ */

.section-workshops-redesigned {
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.workshops-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(122, 139, 111, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 180, 153, 0.03) 0%, transparent 50%);
    z-index: 1;
}

/* Academy Bridge Banner */
.academy-bridge-banner {
    margin: var(--spacing-xl) 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.academy-bridge-banner img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.workshop-gallery-card {
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(61, 40, 23, 0.08);
}

.workshop-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(61, 40, 23, 0.15);
}

.workshop-gallery-image {
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.workshop-gallery-card:hover .workshop-gallery-image {
    transform: scale(1.05);
}

.workshop-gallery-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.workshop-gallery-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Title Section */
.workshops-title-section {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
}

.workshops-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: #7a8b6f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.workshops-main-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.workshops-title-decoration {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #7a8b6f 50%, transparent 100%);
    margin: var(--spacing-md) auto;
    border-radius: 2px;
}

.workshops-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Workshop Cards Grid (Dynamic - supports unlimited cards) */
.workshops-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

/* Workshop Card */
.workshop-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 40, 23, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7a8b6f 0%, #5a6b4f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.workshop-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(61, 40, 23, 0.2);
}

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

/* Featured Card (Masterclass) */
.workshop-card-featured {
    border: none;
}

.workshop-card-featured::before {
    height: 5px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

/* Workshop Badge */
.workshop-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 5;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workshop-badge-featured {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

.workshop-card:hover .workshop-card-badge {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.workshop-card-badge svg {
    width: 18px;
    height: 18px;
}

/* Workshop Image Area */
.workshop-card-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
}

.workshop-card:hover .workshop-card-image {
    transform: scale(1.03);
}

.workshop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Workshop Content */
.workshop-card-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.workshop-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.workshop-card:hover .workshop-card-title {
    color: #5a6b4f;
}

.workshop-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

/* Workshop CTA Button */
.workshop-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--brown-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(61, 40, 23, 0.2);
}

.workshop-card-cta:hover {
    background: #5a6b4f;
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(61, 40, 23, 0.3);
}

.workshop-card-cta svg {
    transition: transform 0.3s ease;
}

.workshop-card-cta:hover svg {
    transform: translateX(4px);
}

/* Featured CTA */
.workshop-cta-featured {
    background: linear-gradient(135deg, #7a8b6f 0%, #5a6b4f 100%);
}

.workshop-cta-featured:hover {
    background: linear-gradient(135deg, #5a6b4f 0%, #7a8b6f 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .workshops-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .workshops-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-lg);
    }
    
    .workshops-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .workshops-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .workshops-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .workshops-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .workshop-card-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        top: 16px;
        right: 16px;
    }
    
    .workshop-card-title {
        font-size: 1.25rem;
    }
    
    .workshop-card-desc {
        font-size: 0.9rem;
    }
    
    .workshop-card-image {
        aspect-ratio: 4/3;
    }
    
    .workshop-card-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Legacy support for old workshop-panel class */
.workshop-panel {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(61, 40, 23, 0.08);
}

.workshop-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(61, 40, 23, 0.15);
}

.workshop-illustration {
    transition: all 0.3s ease;
}

.workshop-panel:hover .workshop-illustration {
    transform: scale(1.05);
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .section-workshops .container > div {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg);
    }
    
    .workshop-illustration {
        min-height: 200px !important;
    }
}

@media (max-width: 768px) {
    #founders > .container > div {
        grid-template-columns: 1fr !important;
    }
    #contact > .container > div {
        grid-template-columns: 1fr !important;
    }
    
    .section-workshops h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

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

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

.text-white {
    color: var(--white);
}

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

/* Enhanced Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 999999;
    padding: 1rem 2rem;
    background: var(--brown-primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s ease;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--brown-medium);
    outline-offset: 2px;
}

/* Enhanced Focus Visible Styles */
*:focus-visible {
    outline: 3px solid var(--brown-medium);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove default focus for mouse users, keep for keyboard */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Enhanced focus for interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--brown-medium);
    outline-offset: 2px;
}

/* Screen reader only content */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

/* ============================================
   ENHANCED MENU SECTION - SCOOPY PICKS
   ============================================ */

/* Section Decorative Elements */
.menu-section-enhanced {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.menu-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.menu-decoration-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.menu-decoration-2 {
    top: 60%;
    right: 8%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

.menu-decoration-3 {
    bottom: 15%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-30px) translateX(5px); }
}

/* Enhanced Header */
.menu-header-enhanced {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease;
}

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

.menu-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(61, 40, 23, 0.15);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.menu-brand-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(61, 40, 23, 0.2);
}

.brand-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFF9E0 0%, #F1E6D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(61, 40, 23, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown-primary);
    letter-spacing: 1px;
}

.brand-tagline {
    font-style: italic;
    color: var(--brown-medium);
    font-size: 0.9rem;
    margin-top: 2px;
}

.menu-title-enhanced {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--brown-primary);
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(61, 40, 23, 0.1);
    position: relative;
    display: inline-block;
}

.title-accent {
    display: inline-block;
    animation: sparkle 2s ease-in-out infinite;
    font-size: 0.6em;
    color: #FFD700;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.2) rotate(180deg); }
}

.menu-subtitle-enhanced {
    font-size: 1.1rem;
    color: var(--brown-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

/* Enhanced Flavors Grid */
.flavors-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Enhanced Flavor Card */
.flavor-card-enhanced {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(61, 40, 23, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

/* Stagger animation delays */
.flavor-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.flavor-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.flavor-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
.flavor-card-enhanced:nth-child(4) { animation-delay: 0.4s; }
.flavor-card-enhanced:nth-child(5) { animation-delay: 0.5s; }
.flavor-card-enhanced:nth-child(6) { animation-delay: 0.6s; }
.flavor-card-enhanced:nth-child(7) { animation-delay: 0.7s; }
.flavor-card-enhanced:nth-child(8) { animation-delay: 0.8s; }

.flavor-card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(61, 40, 23, 0.25);
    border-color: rgba(122, 139, 111, 0.3);
}

.flavor-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Badge */
.flavor-badge-enhanced {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(255, 165, 0, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

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

.flavor-badge-enhanced.featured {
    background: linear-gradient(135deg, #FF6B6B 0%, #C44569 100%);
}

.flavor-badge-enhanced.new {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.flavor-badge-enhanced.popular {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Enhanced Image */
.flavor-image-enhanced {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e4df 100%);
}

.flavor-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.flavor-card-enhanced:hover .flavor-image-enhanced img {
    transform: scale(1.1) rotate(2deg);
}

.flavor-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(61, 40, 23, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.flavor-card-enhanced:hover .flavor-image-overlay {
    opacity: 1;
}

.flavor-icon-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(61, 40, 23, 0.2);
    border: 3px solid #ffffff;
    z-index: 5;
    transition: all 0.3s ease;
}

.flavor-card-enhanced:hover .flavor-icon-badge {
    transform: translateX(-50%) scale(1.15) rotate(12deg);
}

/* Image Placeholder */
.flavor-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #C8D5B9 0%, #a8b89a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.4;
    animation: rotate 10s linear infinite;
}

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

/* Enhanced Content */
.flavor-content-enhanced {
    padding: 40px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flavor-category-enhanced {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7a8b6f;
    font-weight: 700;
    margin-bottom: 8px;
    background: rgba(200, 213, 185, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    align-self: flex-start;
}

.flavor-title-enhanced {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-primary);
    margin: 10px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.flavor-card-enhanced:hover .flavor-title-enhanced {
    color: #7a8b6f;
}

.flavor-description-enhanced {
    color: var(--brown-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Footer Section */
.flavor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: none;
    margin-top: auto;
}

.flavor-price-enhanced {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-label {
    font-size: 0.7rem;
    color: var(--brown-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #7a8b6f;
}

.flavor-cta-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--brown-primary) 0%, var(--brown-medium) 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(61, 40, 23, 0.2);
}

.flavor-cta-enhanced:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(61, 40, 23, 0.3);
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--brown-primary) 100%);
}

.cta-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.flavor-cta-enhanced:hover .cta-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .flavors-grid-enhanced {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .menu-title-enhanced {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .flavors-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .menu-title-enhanced {
        font-size: 2.5rem;
    }
    
    .menu-brand-badge {
        padding: 12px 20px;
        gap: 10px;
    }
    
    .brand-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .brand-icon-circle span {
        font-size: 1.8rem;
    }
    
    .flavor-image-enhanced,
    .flavor-image-placeholder {
        height: 200px;
    }
    
    .flavor-content-enhanced {
        padding: 35px 20px 20px;
    }
    
    .flavor-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .flavor-cta-enhanced {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   GELATO SHOWCASE SECTION (MISSION ENHANCED)
   ============================================ */

.gelato-showcase-section {
    padding: 0;
}

/* Mission Statement */
.showcase-mission {
    padding: var(--spacing-xxl) 0;
}

.mission-content {
    text-align: center;
    padding: 0 var(--spacing-md);
}

.mission-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: left;
}

.mission-text:first-child {
    margin-bottom: var(--spacing-lg);
}

.mission-text strong {
    font-weight: 700;
}

/* Hero Image with Logo Overlay */
.showcase-hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-logo-overlay {
    position: absolute;
    top: 48px;
    left: 48px;
    z-index: 10;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-hero-image:hover .hero-logo-overlay {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-overlay-logo {
    margin-bottom: 8px;
}

.logo-text-main {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
    display: block;
    background: linear-gradient(135deg, #3D2817 0%, #5a6b4f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-overlay-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 0.8px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.9;
}

.showcase-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-hero-image:hover .showcase-banner {
    transform: scale(1.02);
}

/* Four Pillars */
.showcase-pillars {
    background: #f9f5f0;
    padding: var(--spacing-xxl) 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.pillar-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: left;
    box-shadow: 0 2px 12px rgba(61, 40, 23, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7a8b6f 0%, #5a6b4f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(61, 40, 23, 0.15);
}

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

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7a8b6f 0%, #5a6b4f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(122, 139, 111, 0.2);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(122, 139, 111, 0.3);
}

.pillar-heading {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.pillar-card:hover .pillar-heading {
    color: #5a6b4f;
}

.pillar-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive for Showcase Section */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .pillar-card {
        padding: var(--spacing-md);
    }
    
    .hero-logo-overlay {
        top: 32px;
        left: 32px;
        padding: 20px 24px;
        max-width: 280px;
    }
    
    .logo-text-main {
        font-size: 2.25rem;
    }
    
    .hero-overlay-tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .showcase-mission {
        padding: var(--spacing-lg) 0;
    }
    
    .showcase-pillars {
        padding: var(--spacing-lg) 0;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .pillar-card {
        padding: var(--spacing-md);
    }
    
    .pillar-icon {
        width: 50px;
        height: 50px;
    }
    
    .pillar-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .pillar-heading {
        font-size: 0.9rem;
    }
    
    .pillar-text {
        font-size: 0.9rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .hero-logo-overlay {
        top: 24px;
        left: 24px;
        right: 24px;
        max-width: none;
        padding: 20px 24px;
    }
    
    .logo-text-main {
        font-size: 2rem;
    }
    
    .hero-overlay-tagline {
        font-size: 0.75rem;
    }
}

/* ============================================
   FOOTER / CONTACT SECTION ENHANCED
   ============================================ */

.footer-enhanced {
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
}

/* Background Pattern */
.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(122, 139, 111, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 180, 153, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    z-index: 1;
}

.footer-main-content {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    min-height: 600px;
    width: 100%;
    max-width: 100%;
}

/* Left Panel - Contact Information */
.footer-left-panel {
    background: #e8e4dc;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #7a8b6f 0%, #d4b499 100%);
    border-radius: 2px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    margin-top: 18px;
    letter-spacing: 0.8px;
    font-weight: 500;
    opacity: 0.9;
}

.footer-contact-section {
    flex: 1;
}

.footer-contact-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.footer-contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7a8b6f 0%, #d4b499 50%, transparent 100%);
    border-radius: 2px;
}

.footer-contact-title::before {
    content: '✦';
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    color: #7a8b6f;
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 139, 111, 0.15);
}

.footer-contact-item:hover {
    transform: translateX(12px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(122, 139, 111, 0.3);
    box-shadow: 0 4px 16px rgba(122, 139, 111, 0.2);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7a8b6f 0%, #5a6b4f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(122, 139, 111, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.footer-contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 24px rgba(122, 139, 111, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.footer-contact-item:hover .contact-icon::before {
    left: 100%;
}

.contact-icon svg {
    stroke: white;
}

.contact-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #2a1810;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.7;
    font-weight: 600;
}

.contact-link:hover {
    color: #5a6b4f;
    text-decoration: underline;
}

.contact-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #2a1810;
    line-height: 1.7;
    font-weight: 600;
}

/* Social Media Section */
.footer-social-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(122, 139, 111, 0.2);
    position: relative;
}

.footer-social-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #7a8b6f 0%, #d4b499 100%);
}

.footer-social-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
}

.footer-social-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--brown-primary) 0%, #2a1810 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(61, 40, 23, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7a8b6f 0%, #5a6b4f 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-social-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.footer-social-icon:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 28px rgba(61, 40, 23, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-social-icon:hover::before {
    opacity: 1;
}

.footer-social-icon:hover::after {
    opacity: 1;
    transform: scale(1);
}

.footer-social-icon svg {
    fill: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 20px rgba(61, 40, 23, 0.3);
}

.footer-social-icon:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

/* Right Panel - Illustration */
.footer-right-panel {
    background: #e8e4dc !important;
    background-color: #e8e4dc !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.footer-illustration-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #e8e4dc !important;
    background-color: #e8e4dc !important;
}

.footer-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-overlay-content {
    display: none;
}

.footer-overlay-text {
    display: none;
}

.footer-overlay-desc {
    display: none;
}

/* Tagline Overlay (when no image) */
.footer-tagline-overlay {
    position: absolute;
    top: 48px;
    right: 48px;
    z-index: 10;
    text-align: right;
}

.overlay-tagline-line {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Emoji Display */
.footer-emoji-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.emoji-row-1 {
    font-size: 8rem;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
}

.emoji-row-2 {
    font-size: 6rem;
    line-height: 1;
    display: flex;
    gap: var(--spacing-md);
    animation: float 3s ease-in-out infinite 0.5s;
}

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

/* Footer Bottom Section (Links, Hours, Newsletter) */
.footer-bottom-section {
    background: linear-gradient(180deg, #d8d3c9 0%, #d4cfc5 100%);
    padding: 70px 0;
    border-top: 3px solid rgba(122, 139, 111, 0.15);
    position: relative;
}

.footer-bottom-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #7a8b6f 50%, transparent 100%);
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Add padding to all bottom columns */
.footer-quick-links,
.footer-hours {
    padding: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 139, 111, 0.1);
    transition: all 0.3s ease;
}

.footer-quick-links:hover,
.footer-hours:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(122, 139, 111, 0.15);
    background: rgba(255, 255, 255, 0.7);
}

.footer-newsletter {
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.footer-newsletter {
    background: linear-gradient(135deg, #FFA726 0%, #FF8A50 100%);
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(255, 167, 38, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.footer-newsletter:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 167, 38, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.footer-bottom-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-bottom-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #7a8b6f 0%, #d4b499 100%);
    border-radius: 2px;
}

.footer-newsletter .footer-bottom-title {
    color: white;
}

.footer-newsletter .footer-bottom-title::after {
    background: rgba(255, 255, 255, 0.5);
}

/* Quick Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-links-list a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.footer-links-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links-list a:hover {
    color: #5a6b4f;
    transform: translateX(12px);
}

/* Business Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.hours-day {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.hours-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-desc {
    font-size: 0.95rem;
    color: white;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: var(--spacing-lg);
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.newsletter-btn {
    padding: 16px 36px;
    background: white;
    color: var(--text-primary);
    border: none;
    border-radius: 32px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7a8b6f 0%, #5a6b4f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    color: white;
}

.newsletter-btn:hover::before {
    opacity: 1;
}

.newsletter-btn span {
    position: relative;
    z-index: 1;
}

/* Copyright Bar */
.footer-copyright {
    background: linear-gradient(180deg, #c8c2b8 0%, #bcb6ac 100%);
    padding: 32px 0;
    border-top: 2px solid rgba(122, 139, 111, 0.2);
    width: 100%;
    max-width: 100%;
}

.copyright-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.copyright-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    
    .footer-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .footer-left-panel {
        padding: 60px 50px;
    }
    
    .footer-right-panel {
        min-height: 500px;
    }
    
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    
    .footer-left-panel {
        padding: 50px 40px;
    }
    
    .footer-brand {
        margin-bottom: 40px;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-contact-title {
        font-size: 1.5rem;
        padding-bottom: 16px;
    }
    
    .footer-contact-list {
        gap: 20px;
        margin-top: 28px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-link,
    .contact-text {
        font-size: 0.9rem;
    }
    
    .footer-social-section {
        margin-top: 36px;
        padding-top: 24px;
    }
    
    .footer-social-icon {
        width: 42px;
        height: 42px;
    }
    
    .footer-right-panel {
        min-height: 450px;
    }
    
    .footer-tagline-overlay {
        top: 32px;
        right: 32px;
    }
    
    .overlay-tagline-line {
        font-size: 1.4rem;
    }
    
    .emoji-row-1 {
        font-size: 6rem;
    }
    
    .emoji-row-2 {
        font-size: 4.5rem;
        gap: var(--spacing-sm);
    }
    
    .footer-bottom-section {
        padding: 48px 0;
    }
    
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-quick-links,
    .footer-hours {
        padding: var(--spacing-lg);
    }
    
    .footer-newsletter {
        padding: 40px 32px;
    }
    
    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    
    .footer-left-panel {
        padding: 40px 28px;
    }
    
    .footer-logo {
        font-size: 1.75rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-brand {
        margin-bottom: 32px;
    }
    
    .footer-contact-title {
        font-size: 1.3rem;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-link,
    .contact-text {
        font-size: 0.85rem;
    }
    
    .footer-contact-list {
        gap: 18px;
    }
    
    .footer-social-section {
        margin-top: 32px;
        padding-top: 20px;
    }
    
    .footer-social-title {
        font-size: 0.9rem;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-right-panel {
        min-height: 400px;
    }
    
    .footer-illustration-wrapper {
        padding: var(--spacing-md);
    }
    
    .footer-overlay-content {
        padding: var(--spacing-md);
    }
    
    .footer-overlay-text {
        font-size: 1.4rem;
    }
    
    .footer-overlay-desc {
        font-size: 0.95rem;
    }
    
    .overlay-tagline-line {
        font-size: 1.2rem;
    }
    
    .emoji-row-1 {
        font-size: 5rem;
    }
    
    .emoji-row-2 {
        font-size: 3.5rem;
    }
    
    .footer-bottom-section {
        padding: 40px 0;
    }
    
    .footer-quick-links,
    .footer-hours {
        padding: var(--spacing-md);
    }
    
    .footer-newsletter {
        padding: 36px 28px;
    }
    
    .footer-bottom-title {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .newsletter-desc {
        margin-bottom: var(--spacing-md);
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
        margin-top: var(--spacing-md);
    }
    
    .newsletter-input {
        padding: 14px 18px;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .footer-copyright {
        padding: 20px 0;
    }
    
    .copyright-content {
        text-align: center;
    }
}


