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

:root {
    /* Brand Colors from Simon's Brand Kit */
    --daffodil-yellow: #F0D545;
    --sun-orange: #E6852D;
    --sky-blue: #7FC3ED;
    --soft-grass-green: #3CAD5E;
    --deep-lake-blue: #346537;
    --pure-white: #FFFFFF;
    
    /* Primary Brand Mapping */
    --primary-color: #346537;        /* Deep Lake Blue for main headings */
    --secondary-color: #FFFFFF;      /* Pure White for backgrounds */
    --accent-color: #7FC3ED;         /* Sky Blue for links/accents */
    --accent-hover: #F0D545;         /* Daffodil Yellow for hovers */
    --accent-warm: #E6852D;          /* Sun Orange for CTAs */
    --therapeutic-blue: #7FC3ED;     /* Sky Blue variant */
    --calm-green: #3CAD5E;           /* Soft Grass Green */
    --text-color: #346537;           /* Deep Lake Blue for text */
    --text-light: #3CAD5E;           /* Soft Grass Green for lighter text */
    --bg-color: #FFFFFF;             /* Pure White background */
    --bg-alt: #F0D545;               /* Daffodil Yellow alternate background */
    --bg-alt-2: #7FC3ED;             /* Sky Blue alternate background */
    --bg-alt-3: #3CAD5E;             /* Soft Grass Green alternate background */
    --border-color: #7FC3ED;         /* Sky Blue for borders */
    --shadow: 0 10px 40px rgba(52, 101, 55, 0.12);
    --shadow-hover: 0 20px 60px rgba(52, 101, 55, 0.18);
    --watercolor-overlay: linear-gradient(135deg, rgba(127, 195, 237, 0.05), rgba(60, 173, 94, 0.05));
    
    /* Layout Variables */
    --header-height: 70px;           /* Fixed navigation height */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    font-weight: 400;
    /* Add top padding to account for fixed navigation + iOS safe areas */
    /* This prevents content from being hidden under the fixed nav */
    padding-top: calc(var(--header-height) + env(safe-area-inset-top));
}

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

/* Global Heading Styles with Bebas Neue */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
}

h4 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

h5 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* ================================
   Announcement Banner
   ================================ */
.announcement-banner {
    background: linear-gradient(135deg, var(--sun-orange), var(--daffodil-yellow));
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: slideInDown 0.5s ease;
}

.announcement-content i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.announcement-text {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.announcement-text a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.announcement-text a:hover {
    opacity: 0.9;
    text-decoration: none;
}

.announcement-close {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    line-height: 1;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.announcement-banner.hidden {
    display: none;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Mobile responsiveness for banner */
@media (max-width: 768px) {
    .announcement-banner {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .announcement-close {
        right: 1rem;
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
    
    .announcement-content {
        padding: 0 3rem;
    }
}

/* ================================
   Navigation
   ================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 1.2rem 2rem;
    /* Add iOS safe area padding to prevent overlap with notch/Dynamic Island */
    padding-top: calc(1.2rem + env(safe-area-inset-top));
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 0.8rem 2rem;
    /* Maintain safe area padding even when scrolled */
    padding-top: calc(0.8rem + env(safe-area-inset-top));
    min-height: 60px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation Brand Container */
.nav-brand {
    display: flex;
    align-items: center;
    z-index: 10001;
    position: relative;
}

.nav-brand h1,
.nav-brand .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Navigation Logo */
.nav-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
    vertical-align: middle;
    position: relative;
    z-index: 10001;
}

.main-nav.scrolled .nav-logo {
    height: 40px;
    max-width: 180px;
}

/* Footer Logo */
.footer-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    /* Use dvh (dynamic viewport height) for iOS Safari support */
    /* Falls back to vh for older browsers */
    min-height: 100vh;
    min-height: 100dvh;
    position: relative; /* Required for absolute positioning of play button */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    /* No extra padding needed - body padding handles the offset */
}

/* Hero Slider Container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Background Video (legacy support - kept for backward compatibility) */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Fallback for browsers that don't support video */
@supports not (object-fit: cover) {
    .hero-video {
        display: none;
    }
    .hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
            url('https://images.unsplash.com/photo-1549887534-1541e9326642?w=1600&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
}

/* Mobile: Show static background instead of video for performance */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    .hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('/static/artist-portrait.jpg');
        background-size: cover;
        background-position: center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

/* Add subtle vignette effect for better text readability */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

/* Hero Content - Split into top and bottom sections */
.hero-content-top {
    position: absolute;
    /* Use calc() to add header height + breathing room instead of percentage */
    /* This prevents text clipping under the nav and adds proper spacing */
    top: calc(var(--header-height) + 3rem);  /* Header height + 3rem breathing room */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    padding: 2rem;
    padding-bottom: 4rem;  /* Extra space below to clear button */
    max-width: 800px;
    width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content-bottom {
    position: absolute;
    bottom: 12%;  /* Moved lower to create more space */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    padding: 2rem;
    padding-top: 4rem;  /* Extra space above to clear button */
    max-width: 800px;
    width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Legacy support - keep for backward compatibility */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-warm);
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-warm), var(--daffodil-yellow));
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(230, 133, 45, 0.4);
    border: 3px solid transparent;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--daffodil-yellow), var(--accent-warm));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(230, 133, 45, 0.6);
    border-color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

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

/* Fade-in animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s backwards;
}

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

/* ================================
   Hero Text Responsive Adjustments
   ================================ */

/* Tablet - Adjust spacing */
@media (max-width: 1024px) {
    .hero-content-top {
        top: 6%;  /* Higher position */
        padding: 1.5rem;
        padding-bottom: 3rem;  /* Maintain clearance */
    }
    
    .hero-content-bottom {
        bottom: 10%;  /* Lower position */
        padding: 1.5rem;
        padding-top: 3rem;  /* Maintain clearance */
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

/* Mobile - Maintain clearance on smaller screens */
@media (max-width: 768px) {
    .hero-content-top {
        /* Tablet/iPad: medium breathing room */
        top: calc(var(--header-height) + 2rem);
        padding: 1rem;
        padding-bottom: 2.5rem;  /* Maintain clearance */
    }
    
    .hero-content-bottom {
        bottom: 8%;  /* Lower position */
        padding: 1rem;
        padding-top: 2.5rem;  /* Maintain clearance */
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* iPhone Pro Max and larger devices with notch/Dynamic Island */
@media (max-width: 430px) and (min-height: 900px) {
    :root {
        --header-height: 95px;  /* Larger header for Pro Max devices */
    }
    
    .main-nav {
        /* Extra padding for devices with larger notch areas */
        padding: 1.3rem 1.5rem;
        padding-top: calc(1.3rem + env(safe-area-inset-top));
        padding-bottom: 1.3rem;
        min-height: 95px;
    }
    
    .nav-links {
        top: calc(95px + env(safe-area-inset-top));
    }
    
    .nav-logo {
        height: 60px;
        max-width: 190px;
    }
}

/* Small Mobile - Maintain clearance with compact spacing */
@media (max-width: 480px) {
    .main-nav {
        padding: 0.9rem 1.2rem;
        padding-top: calc(0.9rem + env(safe-area-inset-top));
    }
    
    .nav-logo {
        height: 40px;
        max-width: 140px;
    }
    
    .hero-content-top {
        /* Mobile: smaller breathing room but still safe from clipping */
        top: calc(var(--header-height) + 1.5rem);
        padding: 0.75rem;
        padding-bottom: 2rem;  /* Maintain clearance */
    }
    
    .hero-content-bottom {
        bottom: 6%;  /* Lower position */
        padding: 0.75rem;
        padding-top: 2rem;  /* Maintain clearance */
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ================================
   Hero Play Button - Centered on Hero Image
   ================================ */
.hero-play-button-centered {
    /* Positioning - Perfect center of hero section */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1000 !important; /* Very high to ensure visibility */
    
    /* Button styling */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100px !important;
    height: 100px !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Play icon styling */
.hero-play-button-centered .play-icon {
    width: 40px !important;
    height: 40px !important;
    color: #333333 !important; /* Dark grey triangle - high contrast against white circle */
    margin-left: 4px !important; /* Optical centering for play triangle */
    transition: all 0.3s ease !important;
}

/* Hover effect - scales up and brightens */
.hero-play-button-centered:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 1);
}

.hero-play-button-centered:hover .play-icon {
    transform: scale(1.1) !important;
    color: #000000 !important; /* Darker on hover for emphasis */
}

/* Focus state for accessibility */
.hero-play-button-centered:focus {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

/* Active/pressed state */
.hero-play-button-centered:active {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Pulse animation for attention */
.hero-play-button-centered::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1);
    animation: pulseCenter 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes pulseCenter {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Mobile adjustments - maintain center positioning */
@media (max-width: 768px) {
    .hero-play-button-centered {
        width: 80px;
        height: 80px;
        /* Position remains centered with translate(-50%, -50%) */
    }
    
    .hero-play-button-centered .play-icon {
        width: 32px;
        height: 32px;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-play-button-centered {
        width: 90px;
        height: 90px;
    }
    
    .hero-play-button-centered .play-icon {
        width: 36px;
        height: 36px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-play-button-centered {
        background-color: #ffffff;
        border: 3px solid #000000;
    }
    
    .hero-play-button-centered .play-icon {
        color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-play-button-centered {
        transition: none;
    }
    
    .hero-play-button-centered::before {
        animation: none;
    }
    
    .hero-play-button-centered:hover {
        transform: translate(-50%, -50%); /* Keep centered, no scale */
    }
}

/* ================================
   Section Styles
   ================================ */
section {
    padding: 6rem 0;
}

/* Color-blocked sections for visual rhythm */
section:nth-child(even) {
    background-color: var(--bg-color);
}

section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(127, 195, 237, 0.08), rgba(240, 213, 69, 0.08));
}

#portfolio {
    background-color: var(--pure-white);
}

#about {
    background: linear-gradient(135deg, rgba(60, 173, 94, 0.12), rgba(127, 195, 237, 0.12));
}

#journey {
    background-color: var(--pure-white);
}

#exhibitions {
    background: linear-gradient(135deg, rgba(240, 213, 69, 0.15), rgba(230, 133, 45, 0.10));
}

#workshops {
    background-color: var(--pure-white);
}

#contact {
    background: linear-gradient(135deg, rgba(52, 101, 55, 0.08), rgba(60, 173, 94, 0.08));
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

.section-intro,
.intro-paragraph {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.section-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.workshop-locations {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: 8px;
    text-align: center;
}

/* ================================
   Portfolio Section
   ================================ */
.portfolio {
    background-color: var(--secondary-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background-color: var(--pure-white);
    border: 3px solid var(--sky-blue);
    color: var(--primary-color);
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-grass-green));
    border-color: var(--sky-blue);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(127, 195, 237, 0.4);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 3px solid transparent;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(127, 195, 237, 0.3);
    border-color: var(--sky-blue);
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.portfolio-overlay .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-warm);
    margin-top: 0.5rem;
}

.portfolio-overlay .badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay .badge.sold {
    background: linear-gradient(135deg, var(--sun-orange), #D46829);
    color: white;
    border: 2px solid white;
}

.portfolio-overlay .badge.therapy {
    background: linear-gradient(135deg, var(--soft-grass-green), var(--deep-lake-blue));
    color: white;
    border: 2px solid white;
}

.portfolio-item.hidden {
    display: none;
}

/* Quick Buy Button on Hover */
.quick-buy-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-lake-blue));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(127, 195, 237, 0.4);
    z-index: 10;
}

.portfolio-item:hover .quick-buy-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.quick-buy-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 30px rgba(230, 133, 45, 0.7);
    background: linear-gradient(135deg, #f09838, var(--sun-orange));
}

.quick-buy-btn i {
    margin-right: 0.5rem;
}

/* Hide add-to-cart-btn when quick-buy is present */
.portfolio-item:hover .add-to-cart-btn {
    display: none;
}

/* ================================
   About Section
   ================================ */
.about {
    background-color: var(--bg-color);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.artist-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.about-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.about-image-placeholder p {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Artist Portrait Image Styling */
.artist-portrait {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-portrait:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ================================
   Exhibitions Section
   ================================ */
.exhibitions {
    background-color: var(--secondary-color);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 0 3px var(--accent-color);
}

.timeline-date {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.venue {
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

/* ================================
   Contact Section
   ================================ */
.contact {
    background-color: var(--bg-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* ================================
   Footer
   ================================ */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* ================================
   Lightbox
   ================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--secondary-color);
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.lightbox-caption h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    margin: 0.3rem 0;
    opacity: 0.9;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* ========================================
   LIGHTBOX QUICK BUY BUTTON
   ======================================== */

.lightbox-quick-buy {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sun-orange), var(--daffodil-yellow));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(230, 133, 45, 0.5);
    z-index: 2001;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: slideDown 0.4s ease 0.2s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.lightbox-quick-buy:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(230, 133, 45, 0.8);
    background: linear-gradient(135deg, #f09838, var(--sun-orange));
}

.lightbox-quick-buy:active {
    transform: translateX(-50%) scale(0.98);
}

.lightbox-quick-buy i {
    font-size: 1.2rem;
}

/* Hide quick buy if artwork is sold */
.lightbox-quick-buy.sold {
    display: none;
}

/* ========================================
   ENHANCED CLOSE BUTTON
   ======================================== */

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close:focus {
    outline: 3px solid var(--sky-blue);
    outline-offset: 3px;
}

/* ========================================
   MOBILE RESPONSIVENESS
   ======================================== */

@media (max-width: 768px) {
    .lightbox-quick-buy {
        top: 1.5rem;
        padding: 0.9rem 2rem;
        font-size: 1rem;
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 140px); /* Leave space for close button */
    }
    
    .lightbox-quick-buy:hover {
        transform: translateX(-50%) scale(1.02);
    }
    
    .lightbox-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .lightbox-quick-buy {
        top: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        max-width: calc(100% - 100px);
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .artist-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .timeline {
        padding-left: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation Adjustments for iPhone notch/Dynamic Island */
    .main-nav {
        padding: 1.2rem 1.5rem;
        padding-top: calc(1.2rem + env(safe-area-inset-top));
        padding-bottom: 1.2rem;
        min-height: 90px;
    }
    
    .main-nav.scrolled {
        padding: 0.9rem 1.5rem;
        padding-top: calc(0.9rem + env(safe-area-inset-top));
        padding-bottom: 0.9rem;
        min-height: 75px;
    }
    
    /* Mobile Logo Sizing - Larger for better visibility */
    .nav-logo {
        height: 55px;
        max-width: 180px;
    }
    
    .main-nav.scrolled .nav-logo {
        height: 45px;
        max-width: 170px;
    }
    
    /* Mobile Menu Dropdown */
    .nav-links {
        position: fixed;
        right: -100%;
        /* Position below header including safe area */
        top: calc(80px + env(safe-area-inset-top));
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: right 0.3s ease;
        padding: 2rem 0;
        /* Add bottom safe area padding for iPhones with home indicator */
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
        /* Prevent menu from extending beyond viewport */
        max-height: calc(100vh - 90px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 10000;
        padding: 0.5rem;
        font-size: 1.8rem;
    }
    
    /* Hero Section Mobile Adjustments */
    .hero {
        /* Increase top padding on mobile to ensure content is visible */
        padding-top: calc(90px + env(safe-area-inset-top));
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artist-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -2rem;
    }
    
    .lightbox-nav {
        padding: 0.7rem 1rem;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* ================================
   Journey Section
   ================================ */
.journey {
    background: var(--bg-alt);
    padding: 6rem 0;
}

.journey-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.journey-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.journey-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.journey-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--therapeutic-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.journey-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.journey-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ================================
   Workshops Section
   ================================ */
.workshops {
    padding: 6rem 0;
    background: white;
}

.workshop-intro {
    max-width: 800px;
    margin: 2rem auto 3rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.workshop-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.workshop-card.featured {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.1), rgba(82, 190, 128, 0.1));
    border-color: var(--accent-color);
}

.workshop-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--calm-green), var(--therapeutic-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.workshop-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.workshop-duration {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.workshop-card > p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.workshop-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.workshop-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.workshop-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--calm-green);
    font-weight: bold;
}

.workshop-booking {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-alt);
    border-radius: 15px;
}

.workshop-booking h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.workshop-booking p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   Updated Contact Section
   ================================ */
.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.3rem;
}

.commission-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.1), rgba(82, 190, 128, 0.1));
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.commission-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.commission-info h4 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

/* ================================
   Updated Footer
   ================================ */
.footer {
    background: var(--primary-color);
    color: var(--bg-alt);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-bottom p:last-child {
    font-style: italic;
    color: var(--therapeutic-blue);
}

/* ================================
   Timeline Enhancements
   ================================ */
.timeline-item.upcoming {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05), rgba(93, 173, 226, 0.05));
    border-left-color: var(--accent-warm);
}

.timeline-item.upcoming .timeline-date {
    color: var(--accent-warm);
    font-weight: 600;
}

.timeline-item.upcoming::before {
    background-color: var(--accent-warm);
}

/* ================================
   Responsive Updates
   ================================ */
@media (max-width: 768px) {
    .journey-content {
        grid-template-columns: 1fr;
    }
    
    .workshop-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ================================
   Blog Section Styles
   ================================ */
.blog-section {
    padding: 120px 0 80px;
    background: var(--bg-color);
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.02), rgba(82, 190, 128, 0.02));
    border: 2px solid var(--accent-color);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-card-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-color), var(--calm-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-card-category {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.read-more-btn:hover {
    gap: 0.75rem;
    color: var(--accent-hover);
}

.blog-card-views {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-warm);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

/* Blog Post Page */
.blog-post {
    padding: 120px 0 80px;
    background: white;
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.blog-post-category {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-excerpt {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 1rem 0 0;
    font-weight: 300;
}

/* AISO AI-Friendly Summary Section */
.ai-summary {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.08), rgba(82, 190, 128, 0.08));
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.ai-summary h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ai-summary ul {
    list-style: none;
    padding: 0;
}

.ai-summary li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

.ai-summary li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.blog-post-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 3rem;
    display: block;
    box-shadow: var(--shadow);
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.blog-post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
}

.blog-post-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.75rem;
}

.blog-post-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post-content em {
    font-style: italic;
    color: var(--text-light);
}

.blog-post-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: var(--accent-hover);
}

.blog-post-tags {
    max-width: 800px;
    margin: 3rem auto;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.blog-post-tags h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: var(--bg-alt);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.tag:hover {
    background: var(--accent-color);
    color: white;
}

.blog-post-footer {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 12px;
    text-align: center;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, gap 0.3s ease;
}

.back-to-blog:hover {
    background: var(--accent-hover);
    gap: 0.75rem;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-filter-btn {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.category-filter-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .blog-header h1 {
        font-size: 2.2rem;
    }
    
    .blog-post-title {
        font-size: 2.5rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.8rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.5rem;
    }
}

/* ================================
   SHOPPING CART STYLES
   ================================ */

/* Cart link in navigation */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-count {
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    display: none;
}

.cart-count.pulse {
    animation: pulse 0.5s ease;
}

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

/* Add to Cart Button on Portfolio Items */
.add-to-cart-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 173, 226, 0.3);
}

.add-to-cart-btn i {
    font-size: 1rem;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification.success {
    border-left: 4px solid var(--calm-color);
}

.cart-notification.error {
    border-left: 4px solid #e74c3c;
}

.cart-notification i {
    font-size: 1.5rem;
    color: var(--calm-color);
}

.cart-notification.error i {
    color: #e74c3c;
}

/* Cart Section */
.cart-section {
    padding: 100px 0 60px;
    background: var(--light-bg);
    min-height: 60vh;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-cart p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Cart Content */
.cart-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.cart-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cart-item-image {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.cart-item-collection {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cart-item-specs {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.cart-item-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.remove-item-btn {
    background: transparent;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.remove-item-btn:hover {
    background: #e74c3c;
    color: white;
}

/* Cart Summary */
.cart-summary {
    width: 380px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid var(--text-color);
    margin-top: 15px;
    padding-top: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}

.checkout-button {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 173, 226, 0.4);
}

.checkout-button i {
    font-size: 1.2rem;
}

.continue-shopping {
    width: 100%;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-secondary);
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    border-color: var(--text-color);
    background: var(--light-bg);
}

.checkout-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.checkout-note p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.checkout-note i {
    color: var(--calm-color);
    margin-right: 5px;
}

/* Responsive Cart Design */
@media (max-width: 968px) {
    .cart-content {
        flex-direction: column;
    }
    
    .cart-summary {
        width: 100%;
        position: static;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-item-actions {
        flex-direction: row;
        justify-content: flex-end;
    }
}

@media (max-width: 576px) {
    .cart-notification {
        right: 10px;
        left: 10px;
        padding: 12px 15px;
    }
    
    .cart-item {
        padding: 15px;
    }
    
    .cart-summary {
        padding: 20px;
    }
}

/* ============================================
   PAYMENT RESULT PAGES
   ============================================ */

.payment-result {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.result-container {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

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

.result-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.result-container.success .result-icon {
    color: #52be80;
}

.result-container.failure .result-icon {
    color: #e74c3c;
}

.result-container h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.result-container > p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.order-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.order-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.order-info strong {
    color: #2c3e50;
    font-weight: 600;
}

.result-message {
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    padding: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.result-message p {
    margin: 0.5rem 0;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.result-actions .cta-button,
.result-actions .secondary-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.result-actions .cta-button {
    background: #5dade2;
    color: white;
}

.result-actions .cta-button:hover {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.result-actions .secondary-button {
    background: white;
    color: #5dade2;
    border: 2px solid #5dade2;
}

.result-actions .secondary-button:hover {
    background: #5dade2;
    color: white;
}

.result-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
}

.result-note p {
    margin: 0.5rem 0;
    color: #7f8c8d;
}

.result-note i {
    margin-right: 0.5rem;
}

.result-note .fa-heart {
    color: #e74c3c;
}

.result-note .fa-info-circle {
    color: #3498db;
}

.result-note a {
    color: #3498db;
    text-decoration: none;
}

.result-note a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-result {
        padding: 1rem;
    }
    
    .result-container {
        padding: 2rem 1.5rem;
    }
    
    .result-container h1 {
        font-size: 2rem;
    }
    
    .result-icon {
        font-size: 4rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .result-actions .cta-button,
    .result-actions .secondary-button {
        width: 100%;
    }
}

/* Hero Video Fade-in Animation */
.hero-video {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.hero-video.loaded {
    opacity: 1;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
        display: none;
    }
    .hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('/static/artist-portrait.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* ================================
   Newsletter Form Styles
   ================================ */
.newsletter-form {
    margin-top: 15px;
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 12px;
    border: 2px solid rgba(127, 195, 237, 0.3);
    border-radius: 6px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(127, 195, 237, 0.1);
}

.newsletter-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #F0D545 0%, #E6852D 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 213, 69, 0.4);
}

.newsletter-button:active {
    transform: translateY(0);
}

.newsletter-message {
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 6px;
    margin-top: 10px;
    display: none;
    animation: slideDown 0.3s ease;
}

.newsletter-message.success,
.newsletter-message.error {
    display: block;
}

.newsletter-message.success {
    background-color: rgba(60, 173, 94, 0.15);
    color: var(--soft-grass-green);
    border-left: 4px solid var(--soft-grass-green);
}

.newsletter-message.error {
    background-color: rgba(230, 133, 45, 0.15);
    color: #c0392b;
    border-left: 4px solid #c0392b;
}

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

/* Mobile responsiveness for newsletter form */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        min-width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

/* ============================================
   CONTACT FORM IMPROVEMENTS - GDPR COMPLIANCE
   Added: Contact form improvements for GDPR compliance
   ============================================ */

/* ========================================
   1. FORM CHECKBOX STYLING (GDPR + Newsletter)
   ======================================== */

.form-checkbox {
    margin-bottom: 20px;
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    opacity: 0.8;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #2c5f2d;
}

.checkbox-label span {
    flex: 1;
    color: #333;
}

.checkbox-label a {
    color: #2c5f2d;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Special styling for newsletter checkbox */
.form-checkbox:last-of-type .checkbox-label span {
    color: #555;
    font-style: italic;
}


/* ========================================
   2. ENHANCED SUBMIT BUTTON
   ======================================== */

.submit-button {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(44, 95, 45, 0.3);
}

.submit-button i {
    margin-right: 8px;
}


/* ========================================
   3. FORM SUCCESS MESSAGE STYLING
   ======================================== */

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.success i {
    color: #28a745;
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-message strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.form-message p {
    margin: 0;
    font-size: 0.9rem;
}


/* ========================================
   4. FORM LABELS & FOOTER NOTE
   ======================================== */

.form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #2c5f2d;
    text-align: center;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-footer-note {
    text-align: center;
    margin-top: 16px;
    color: #666;
}

.form-footer-note small {
    font-size: 0.85rem;
}


/* ========================================
   5. UPGRADED COMMISSION CTA BUTTON
   ======================================== */

.cta-commission {
    background: linear-gradient(135deg, #d4af37 0%, #c9a02e 100%);
    color: #1a1a1a;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-commission:hover {
    background: linear-gradient(135deg, #c9a02e 0%, #b8912a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #000;
}

.cta-commission i {
    margin-right: 8px;
}


/* ========================================
   6. NEW SHOP SECTION STYLING
   ======================================== */

.shop-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.shop-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.shop-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #2c5f2d;
}

.shop-card i {
    font-size: 3rem;
    color: #2c5f2d;
    margin-bottom: 20px;
    display: block;
}

.shop-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.shop-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.shop-button {
    background: #2c5f2d;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-button:hover {
    background: #1e4620;
    transform: scale(1.05);
}

.shop-note {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
    margin-top: 30px;
}

.shop-note p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}


/* ========================================
   7. CONTACT SECTION IMPROVEMENTS
   ======================================== */

.contact-intro-note {
    background: #f0f8f0;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
    margin-top: 20px;
    font-size: 0.95rem;
}

.contact-intro-note strong {
    color: #2c5f2d;
}

/* De-emphasize alternative contact methods */
.contact-alternative {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.contact-alternative p {
    margin: 8px 0;
    color: #666;
}

.contact-alternative small {
    font-size: 0.85rem;
}

.contact-alternative a[href^="mailto"] {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.contact-alternative a[href^="mailto"]:hover {
    color: #2c5f2d;
    text-decoration: underline;
}

.social-links-compact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 12px;
}

.social-links-compact a {
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-compact a:hover {
    color: #2c5f2d;
    transform: scale(1.2);
}


/* ========================================
   8. RESPONSIVE DESIGN IMPROVEMENTS
   ======================================== */

@media (max-width: 768px) {
    .shop-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shop-card {
        padding: 30px 20px;
    }
    
    .submit-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .cta-commission {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.3rem;
    }
    
    .shop-card h3 {
        font-size: 1.3rem;
    }
    
    .shop-card i {
        font-size: 2.5rem;
    }
}


/* ========================================
   9. ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Focus states for keyboard navigation */
.checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid #2c5f2d;
    outline-offset: 2px;
}

.submit-button:focus {
    outline: 3px solid #2c5f2d;
    outline-offset: 3px;
}

.shop-button:focus,
.cta-commission:focus {
    outline: 3px solid #2c5f2d;
    outline-offset: 2px;
}

/* Ensure sufficient color contrast */
.form-group input,
.form-group textarea {
    border: 2px solid #ccc;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2c5f2d;
    outline: none;
}


/* ========================================
   END OF CONTACT FORM IMPROVEMENTS
   ======================================== */


/* ========================================
   10. PRODUCT VARIANTS MODAL
   ======================================== */

/* Variant Selection Modal */
.variant-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.variant-modal.show {
    opacity: 1;
}

.variant-modal.fade-out {
    opacity: 0;
}

.variant-modal-content {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.variant-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.variant-modal-close:hover {
    color: #333;
    background: #f0f0f0;
}

.variant-modal-content > h3 {
    margin: 0 0 25px 0;
    font-size: 2rem;
    color: #2c5f2d;
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
}

.variant-modal-artwork {
    text-align: center;
    margin-bottom: 30px;
}

.variant-modal-image {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.variant-modal-artwork h4 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.variant-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.variant-option {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.variant-option:hover {
    border-color: #2c5f2d;
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.15);
    transform: translateY(-2px);
}

.variant-info {
    flex: 1;
}

.variant-type {
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    color: #333;
    font-weight: 600;
}

.variant-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c5f2d;
    margin: 5px 0;
}

.variant-description {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0 0 0;
    line-height: 1.4;
}

.variant-select-btn {
    background-color: #2c5f2d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.variant-select-btn:hover {
    background-color: #1e4420;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.variant-select-btn:active {
    transform: scale(0.98);
}

/* Cart Item Updates */
.cart-item-type {
    font-size: 0.95rem;
    color: #2c5f2d;
    font-weight: 700;
    margin: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-description {
    font-size: 0.85rem;
    color: #666;
    margin: 4px 0;
    font-style: italic;
}

.original-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4420 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: #2c5f2d;
    color: #2c5f2d;
    background: #f5f9f5;
}

.qty-value {
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .variant-modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }
    
    .variant-modal-content > h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .variant-modal-image {
        max-height: 180px;
    }
    
    .variant-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }
    
    .variant-select-btn {
        width: 100%;
        padding: 10px;
    }
    
    .variant-type {
        font-size: 1.05rem;
    }
    
    .variant-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .variant-modal-content {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .variant-modal-close {
        right: 10px;
        top: 10px;
        font-size: 28px;
    }
}


/* ========================================
   END OF PRODUCT VARIANTS MODAL
   ======================================== */


/* ========================================
   11. VARIANT THUMBNAILS & ENHANCEMENTS
   ======================================== */

.variant-thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.variant-thumbnail i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.variant-product-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.variant-option:hover .variant-product-preview {
    opacity: 0.8;
}

.variant-dimensions {
    font-size: 0.85rem;
    color: #888;
    margin: 3px 0 0 0;
}

/* Update variant option layout for thumbnails */
.variant-option {
    display: flex;
    align-items: center;
    padding: 15px;
}

/* Mobile adjustments for thumbnails */
@media (max-width: 768px) {
    .variant-thumbnail {
        width: 60px;
        height: 60px;
        margin-right: 12px;
    }
    
    .variant-thumbnail i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .variant-option {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .variant-thumbnail {
        width: 50px;
        height: 50px;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .variant-thumbnail i {
        font-size: 1.2rem;
    }
}


/* ========================================
   END OF VARIANT THUMBNAILS
   ======================================== */

   ======================================== */
