/* SomeDay Farms Website Styles */
/* This file contains all the styling for the website */

/* ============================================ */
/* THEME VARIABLES */
/* ============================================ */

:root {
    --primary-gold: #DAAE00;
    --primary-blue: #658BE6;
    --dark-gray: #333333;
    --black: #000000;
    --white: #FFFFFF;

    /* Dark mode variables (default) */
    --bg-gradient-start: var(--dark-gray);
    --bg-gradient-end: var(--black);
    --container-bg: var(--dark-gray);
    --header-bg-start: var(--black);
    --header-bg-end: var(--dark-gray);
    --text-color: var(--white);
    --text-secondary: #cccccc;
    --input-bg: #404040;
    --input-border: #555555;
    --input-text: var(--white);
    --section-border: #555555;
    --section-title-color: var(--primary-gold);
    --section-border-accent: var(--primary-gold);
    --mushroom-section-bg: rgba(255, 255, 255, 0.1);
    --checkbox-bg: var(--white);
    --pricing-bg-start: var(--black);
    --pricing-bg-end: var(--dark-gray);
    --error-color: #ff6b6b;
    --form-container-bg: var(--dark-gray);
    --form-header-bg: var(--dark-gray);
}

[data-theme="light"] {
    --bg-gradient-start: var(--white);
    --bg-gradient-end: var(--white);
    --container-bg: var(--white);
    --header-bg-start: var(--primary-blue);
    --header-bg-end: var(--primary-gold);
    --text-color: var(--black);
    --text-secondary: #666666;
    --input-bg: #f8f9fa;
    --input-border: #dddddd;
    --input-text: var(--black);
    --section-border: #f0f0f0;
    --section-title-color: var(--primary-blue);
    --section-border-accent: var(--primary-blue);
    --mushroom-section-bg: var(--white);
    --checkbox-bg: var(--white);
    --pricing-bg-start: var(--primary-blue);
    --pricing-bg-end: var(--primary-gold);
    --error-color: #e74c3c;
    --form-container-bg: var(--white);
    --form-header-bg: var(--primary-blue);
}

/* ============================================ */
/* RESET AND BASE STYLES */
/* ============================================ */

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

body {
    font-family: 'Varela Round', sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================ */
/* HEADER AND NAVIGATION */
/* ============================================ */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Black bar divider at the bottom of header */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #000000;
    z-index: 1001;
    transition: background-color 0.3s ease;
}

[data-theme="light"] .header::after {
    background-color: #cccccc;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    order: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    order: 2;
    margin: 0 auto;
}

.header-right {
    order: 3;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.logo-svg {
    width: 125px;
    height: 125px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    cursor: pointer;
}

/* SVG path transitions for smooth color change */
.logo-svg path {
    transition: fill 0.3s ease;
}

/* Logo Hover Effects */
.logo-svg:hover {
    transform: scale(1.1);
    /* Combined filter: orange color + blue glow */
    filter: brightness(0) saturate(100%) invert(77%) sepia(95%) saturate(1945%) hue-rotate(4deg) brightness(103%) contrast(101%) drop-shadow(0 0 10px rgba(101, 139, 230, 0.8)) drop-shadow(0 0 20px rgba(101, 139, 230, 0.6)) drop-shadow(0 0 30px rgba(101, 139, 230, 0.4));
}

/* If the logo is an SVG with paths, target the paths for color change */
.logo-svg:hover path {
    fill: #DAAE00 !important;
}


.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    z-index: 1;
    padding: 8px 16px; /* Add padding for better glow spacing */
}

/* Pseudo-element for unified outward glow effect */
.nav-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%; /* Increased from 120% to 150% (25% larger) */
    height: 250%; /* Increased from 200% to 250% (25% larger) */
    background: radial-gradient(ellipse closest-side, 
                               rgba(101, 139, 230, 1) 0%, 
                               rgba(101, 139, 230, 0.95) 8%, 
                               rgba(101, 139, 230, 0.88) 16%, 
                               rgba(101, 139, 230, 0.8) 24%, 
                               rgba(101, 139, 230, 0.7) 32%, 
                               rgba(101, 139, 230, 0.58) 40%, 
                               rgba(101, 139, 230, 0.45) 48%, 
                               rgba(101, 139, 230, 0.32) 56%, 
                               rgba(101, 139, 230, 0.2) 64%, 
                               rgba(101, 139, 230, 0.1) 72%, 
                               rgba(101, 139, 230, 0.05) 80%, 
                               rgba(101, 139, 230, 0.02) 88%, 
                               transparent 95%);
    border-radius: 50%; /* Creates elliptical shape */
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-links a:hover {
    color: #DAAE00;
    transform: scale(1.1);
}

.nav-links a:hover::before {
    opacity: 1;
}

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

.social-links a {
    color: white;
    font-size: 1.8rem; /* Increased from 1.2rem (50% larger) */
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #DAAE00;
    transform: scale(1.1);
    /* Brighter blue glow effect matching nav links */
    text-shadow: 0 0 15px rgba(101, 139, 230, 1), 0 0 30px rgba(101, 139, 230, 0.8), 0 0 45px rgba(101, 139, 230, 0.6);
    /* Alternative filter-based glow for better icon compatibility */
    filter: drop-shadow(0 0 15px rgba(101, 139, 230, 1)) drop-shadow(0 0 30px rgba(101, 139, 230, 0.8)) drop-shadow(0 0 45px rgba(101, 139, 230, 0.6));
}

/* Theme Toggle in Header */
.theme-toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--dark-gray);
    border-radius: 15px;
    border: 2px solid var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: var(--primary-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .theme-toggle {
    background: var(--white);
}

[data-theme="light"] .theme-toggle::before {
    transform: translateX(28px);
    background: var(--primary-blue);
}

[data-theme="light"] .theme-toggle-label {
    color: var(--white);
}

/* ============================================ */
/* ENHANCED PARALLAX AND HERO SECTIONS */
/* ============================================ */

.parallax-container {
    position: relative;
    height: 62vh; /* Reduced by 38% from 100vh */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: -10%; /* Less negative offset for centered positioning */
    left: 0;
    width: 100%;
    height: 120%; /* Reduced height for less zoom */
    background-size: cover;
    background-position: center center; /* Center the image */
    background-attachment: fixed;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 1;
    /* Reduce zoom for more visible area */
    transform: scale(1.05) translate3d(0, 0, 0);
}

/* Enhanced parallax effect for better performance */
@media (prefers-reduced-motion: no-preference) {
    .parallax-bg {
        transform: scale(1.05) translate3d(0, 0, 0);
    }
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* ============================================ */
/* SIMPLE SECTION DIVIDERS */
/* ============================================ */

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #000000;
    z-index: 3;
    transition: background-color 0.3s ease;
}

[data-theme="light"] .section-divider {
    background-color: #c4c4c4;
}

/* Section dividers between content sections */
.content-section-divider {
    width: 100%;
    height: 10px;
    background-color: #000000;
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease;
}

[data-theme="light"] .content-section-divider {
    background-color: #c4c4c4;
}

/* Header divider - removed to eliminate white space */
.header-divider {
    display: none;
}

/* ============================================ */
/* CONTENT SECTIONS */
/* ============================================ */

.content-section {
    position: relative;
    padding: 4rem 0;
    background: white;
}

/* Background patterns for sections without custom backgrounds */
.content-section.bg-pattern-blue {
    background-color: #314e62;
    position: relative;
}

.content-section.bg-pattern-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/Mush_Bg.png');
    background-size: 512px 512px;
    background-repeat: repeat;
    background-position: top left;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

[data-theme="light"] .content-section.bg-pattern-blue {
    background-color: #69a9d3;
}

[data-theme="light"] .content-section.bg-pattern-blue::before {
    filter: invert(1);
    opacity: 0.1;
}

.content-section.bg-pattern-blue > * {
    position: relative;
    z-index: 1;
}

.content-section.bg-pattern-grey {
    background-color: #4f4f4f;
    position: relative;
}

.content-section.bg-pattern-grey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/Mush_Bg.png');
    background-size: 512px 512px;
    background-repeat: repeat;
    background-position: top left;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

[data-theme="light"] .content-section.bg-pattern-grey {
    background-color: #cccccc;
}

[data-theme="light"] .content-section.bg-pattern-grey::before {
    opacity: 0.05;
}

.content-section.bg-pattern-grey > * {
    position: relative;
    z-index: 1;
}

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

/* ============================================ */
/* BUTTONS (Your Custom Design) */
/* ============================================ */

.btn-primary {
    color: #ffffff !important;
    background-color: #333333 !important;
    border: 4px solid #cccccc !important;
    border-radius: 10px !important;
    padding: 15px 30px !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-clip: padding-box;
    transition: all 0.3s ease !important;
    font-family: 'Varela Round', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    transform: scale(1.05) !important;
    background-color: #333333 !important;
    border: 4px solid #658BE6 !important;
    animation: fadeBorder 3s linear infinite !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 0 15px 5px #DAAE00 !important;
    opacity: 1 !important;
}

[data-theme="light"] .btn-primary {
    background-color: #cccccc !important;
    color: #000000 !important;
    border: 4px solid #333333 !important;
}

[data-theme="light"] .btn-primary:hover {
    border: 4px solid #658BE6 !important;
}

@keyframes fadeBorder {
    0% { border-color: #658BE6; }
    50% { border-color: #FFFFFF; }
    100% { border-color: #658BE6; }
}

/* ============================================ */
/* HOME PAGE SECTIONS */
/* ============================================ */

.home-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center center; /* Changed from center top to center center */
    background-repeat: no-repeat;
    background-attachment: scroll; /* Ensure no parallax on these */
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.home-section .section-container {
    position: relative;
    z-index: 2;
    color: white;
}

/* ============================================ */
/* BUY PAGE LOCATION CARDS */
/* ============================================ */

.info-card {
    border: 3px solid #cccccc;
    transition: border-color 0.3s ease;
}

[data-theme="light"] .info-card {
    border: 3px solid #333333;
}

.location-card {
    background: #333333;
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid #cccccc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .location-card {
    background: #cccccc;
    color: #000000;
    border: 3px solid #333333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.location-card > div {
    border: 3px solid #cccccc;
    transition: border-color 0.3s ease;
}

[data-theme="light"] .location-card > div {
    border: 3px solid #333333;
}

/* ============================================ */
/* SUBSCRIBE SECTION */
/* ============================================ */

.subscribe-container {
    background: rgba(74, 74, 74, 0.95);
    border: 3px solid #333333;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: 2rem auto;
    text-align: center;
    color: #FFFFFF;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="light"] .subscribe-container {
    background: rgba(204, 204, 204, 0.95);
    color: #000000;
}

.subscribe-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.email-form {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.email-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Varela Round', sans-serif;
}

/* ============================================ */
/* RECIPE CARDS */
/* ============================================ */

.recipe-section-header {
    border: 3px solid #cccccc;
    transition: border-color 0.3s ease;
}

[data-theme="light"] .recipe-section-header {
    border: 3px solid #333333;
}

.recipe-card {
    background: #333333;
    color: white;
    border: 3px solid #cccccc;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .recipe-card {
    background: #cccccc;
    color: #000000;
    border: 3px solid #333333;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.recipe-card h3 {
    font-size: 1.1rem;
    text-align: center;
}

.recipe-card > div {
    border: 3px solid #cccccc;
    transition: border-color 0.3s ease;
}

[data-theme="light"] .recipe-card > div {
    border: 3px solid #333333;
}

/* ============================================ */
/* CONTACT PAGE */
/* ============================================ */

.contact-info-box {
    background: #333333;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #333333;
    flex: 0 0 300px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="light"] .contact-info-box {
    background: #cccccc;
    color: #000000;
}

.contact-form {
    background: var(--form-container-bg);
    padding: 40px;
    border: 3px solid var(--black);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Varela Round', sans-serif;
    background: #555555;
    color: var(--white);
    transition: all 0.3s ease;
}

[data-theme="light"] .contact-form input[type="text"],
[data-theme="light"] .contact-form input[type="email"],
[data-theme="light"] .contact-form textarea {
    background: #cccccc;
    color: var(--black);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(101, 139, 230, 0.3);
}

.contact-form .btn-primary {
    display: block;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* ============================================ */
/* ABOUT PAGE PROFILE IMAGE */
/* ============================================ */

.profile-image {
    width: 300px;
    height: 400px;
    background-image: url('../images/AboutMe_profile.JPG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 15px;
    border: 3px solid #333333;
}

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

.footer {
    background: #333333;
    color: white;
    padding: 2rem 0;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="light"] .footer {
    background: #cccccc;
    color: #000000;
}

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

.phone-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #DAAE00;
    transition: color 0.3s ease;
}

[data-theme="light"] .phone-number {
    color: #678ce4;
}

/* ============================================ */
/* CHAT BUTTON (Your Custom Design) */
/* ============================================ */

#questionButton {
    background-color: #333333;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: 4px solid #cccccc;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Varela Round', sans-serif;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

#questionButton:hover {
    transform: scale(1.05);
}

[data-theme="light"] #questionButton {
    background-color: #cccccc;
    color: #000000;
    border: 4px solid #333333;
}

#questionButton i {
    margin-right: 10px;
}

@keyframes glowOrange {
    0% { box-shadow: 0 0 0px 0px rgba(218, 174, 0, 0); }
    30% { box-shadow: 0 0 20px 5px rgba(218, 174, 0, 0.5); }
    60% { box-shadow: 0 0 20px 5px rgba(218, 174, 0, 1); }
    100% { box-shadow: 0 0 0px 0px rgba(218, 174, 0, 0); }
}

#questionButton.animate-glow {
    animation: glowOrange 8.67s ease-in-out infinite;
}

#questionButton.blue-glow {
    box-shadow: 0 0 20px 5px rgba(101, 139, 230, 0.8);
    transition: box-shadow 0.4s ease-in-out;
}

/* ============================================ */
/* CHAT BOX (Your Custom Design) */
/* ============================================ */

#questionBox {
    width: 330px;
    height: 300px;
    background-color: #cccccc;
    border-radius: 15px;
    border: 4px solid #cccccc;
    position: fixed;
    bottom: 110px;
    right: 20px;
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom right;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1001;
    display: none;
}

[data-theme="light"] #questionBox {
    background-color: #333333;
    border: 4px solid #333333;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

#questionBox .top {
    background-color: #DAAE00;
    height: 33%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
}

#questionBox .top img {
    max-height: 80%;
    max-width: 50px;
    border-radius: 50%;
    position: relative;
    display: block;
}

.green-circle {
    width: 12px;
    height: 12px;
    background-color: #00ff00;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 2px solid white;
}

.text-container {
    margin-left: 15px;
}

.text-container .farm-name {
    font-weight: bold;
    font-size: 18px;
    font-family: 'Varela Round', sans-serif;
    margin-bottom: 5px;
}

.text-container .reply-time {
    font-size: 12.6px;
    font-family: 'Varela Round', sans-serif;
}

#questionBox .bottom {
    background-color: #a4a4a4;
    height: 67%;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-family: 'Varela Round', sans-serif;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: relative;
    transition: background-color 0.3s ease;
}

.chat-bubble-container {
    position: absolute;
    top: 20px;
    left: 10px;
    display: flex;
    align-items: center;
}

.chat-bubble {
    background-color: #4a4a4a;
    border-radius: 10px;
    padding: 12.5px 20px;
    font-family: 'Varela Round', sans-serif;
    font-size: 17.5px;
    color: #cccccc;
    margin-left: 12.5px;
    max-width: 250px;
    line-height: 1.4;
}

[data-theme="light"] .chat-bubble {
    background-color: #f4f4f4;
    color: #333333;
}

.chat-bubble-container img {
    width: 31px;
    height: 31px;
    border-radius: 50%;
}

.social-buttons-container {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
}

.social-button {
    background-color: #333333;
    color: white;
    border: 4px solid #cccccc;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Varela Round', sans-serif;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 48%;
    justify-content: center;
}

[data-theme="light"] .social-button {
    background-color: #cccccc;
    color: #000000;
    border: 4px solid #333333;
}

.social-button + .social-button {
    margin-left: 5px;
}

.social-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 5px #DAAE00;
}

.social-button i {
    margin-right: 10px;
    font-size: 18px;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .parallax-bg {
        background-attachment: scroll;
        transform: scale(1.03) translate3d(0, 0, 0); /* Less zoom on mobile */
        height: 110%; /* Reduce height on mobile */
        top: -5%;
    }
    
    .home-section {
        background-attachment: scroll;
        background-position: center center; /* Consistent positioning on mobile */
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    #questionButton {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 14px;
    }
    
    #questionBox {
        width: 280px;
        bottom: 80px;
        right: 15px;
    }

    .logo-svg {
        width: 80px;
        height: 80px;
    }

    .content-section-divider {
        height: 8px;
    }

    .profile-image {
        width: 250px;
        height: 350px;
    }

    .content-section.bg-pattern-blue,
    .content-section.bg-pattern-grey {
        background-size: 256px 256px; /* Smaller tile size on mobile */
    }

    .social-links a {
        font-size: 1.5rem; /* Slightly smaller on mobile but still 50% larger than original */
    }

    .header-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .subscribe-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .logo-svg {
        width: 60px;
        height: 60px;
    }

    .section-divider,
    .header-divider {
        height: 8px;
    }

    .parallax-bg {
        transform: scale(1.01) translate3d(0, 0, 0); /* Minimal zoom on small screens */
        height: 105%;
        top: -2.5%;
    }

    .content-section-divider {
        height: 8px;
    }

    .profile-image {
        width: 200px;
        height: 300px;
    }

    .content-section.bg-pattern-blue,
    .content-section.bg-pattern-grey {
        background-size: 128px 128px; /* Even smaller tile size on very small screens */
    }

    .social-links a {
        font-size: 1.3rem; /* Responsive sizing for very small screens */
    }

    .header-divider {
        display: none;
    }
}

/* Disable parallax on devices with reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .parallax-bg {
        background-attachment: scroll;
        transform: scale(1.03) translate3d(0, 0, 0) !important;
        position: absolute;
        top: 0;
        height: 100%;
    }
}

/* ============================================ */
/* MUSHROOM ORDER FORM STYLES */
/* ============================================ */

.order-form-container {
    background: var(--form-container-bg);
    border-radius: 15px;
    border: 3px solid var(--black);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.order-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--black);
    z-index: 1;
}

.order-form-header {
    background: var(--form-header-bg);
    color: var(--white);
    padding: 30px;
    text-align: center;
    border: 2px solid var(--black);
    box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.2);
    border-radius: 15px 15px 0 0;
    position: relative;
    z-index: 2;
}

[data-theme="light"] .order-form-header {
    background: var(--primary-blue);
    border: 2px solid var(--black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.order-form-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.order-form-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.order-form-body {
    padding: 40px;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.form-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.8em;
    color: #DAAE00;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #DAAE00;
    display: inline-block;
    transition: color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .section-title {
    color: #658BE6;
    border-bottom: 3px solid #658BE6;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

[data-theme="light"] .form-group label {
    color: #000000;
}

#mushroomForm input,
#mushroomForm select,
#mushroomForm textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #333333;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #555555;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-family: 'Varela Round', sans-serif;
}

[data-theme="light"] #mushroomForm input,
[data-theme="light"] #mushroomForm select,
[data-theme="light"] #mushroomForm textarea {
    background: #f8f9fa;
    color: #333333;
}

#mushroomForm input:focus,
#mushroomForm select:focus,
#mushroomForm textarea:focus {
    outline: none;
    border-color: #658BE6;
    box-shadow: 0 0 10px rgba(101, 139, 230, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
}

#mushroomForm input:disabled,
#mushroomForm select:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.description {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    font-style: italic;
    transition: color 0.3s ease;
}

[data-theme="light"] .description {
    color: #000000;
}

.mushroom-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mushroom-title {
    font-size: 1.4em;
    color: #DAAE00;
    margin-bottom: 15px;
    font-weight: bold;
}

.mushroom-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #333333;
    border-radius: 8px;
    border: 2px solid #333333;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .mushroom-option {
    background: white;
}

.option-label {
    font-weight: 600;
    color: white;
    font-size: 1.1em;
    flex: 1;
}

[data-theme="light"] .option-label {
    color: #333333;
}

.spinner-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spinner-btn {
    background: #658BE6;
    color: white;
    border: 2px solid #333333;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    padding: 0;
    flex-shrink: 0;
}

.spinner-btn:hover {
    background: #DAAE00;
    color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.spinner-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spinner-input {
    width: 60px;
    text-align: center;
    margin: 0;
}

.pricing-display {
    background: #333333;
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    border: 2px solid #DAAE00;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .pricing-display {
    background: #cccccc;
    color: #000000;
    border: 2px solid #658BE6;
}

.pricing-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
    color: #DAAE00;
    transition: color 0.3s ease;
}

[data-theme="light"] .pricing-title {
    color: #658BE6;
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
}

.total-price {
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    color: #DAAE00;
    transition: color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .total-price {
    color: #658BE6;
    border-top: 2px solid rgba(0,0,0,0.3);
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: auto;
    transform: scale(1.2);
    accent-color: #658BE6;
}

.radio-option label {
    font-weight: normal;
    font-size: 1em;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

[data-theme="light"] .radio-option label {
    color: #000000;
}

.submit-btn {
    background-color: #333333;
    color: white;
    padding: 15px 40px;
    border: 4px solid #cccccc;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    font-family: 'Varela Round', sans-serif;
}

[data-theme="light"] .submit-btn {
    background-color: #cccccc;
    color: #000000;
    border: 4px solid #333333;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 5px #DAAE00;
    border: 4px solid #658BE6;
    animation: fadeBorder 3s linear infinite;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}

/* Custom Calendar Picker */
.calendar-picker {
    position: absolute;
    z-index: 1000;
    background: white;
    border: 2px solid #333333;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-top: 5px;
    min-width: 300px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.calendar-header button {
    background: #658BE6;
    color: white;
    border: 2px solid #333333;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.calendar-header button:hover {
    background: #DAAE00;
    color: #333333;
}

.calendar-header .month-year {
    font-weight: bold;
    font-size: 1.1em;
    color: #333333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-header {
    text-align: center;
    font-weight: bold;
    padding: 8px;
    color: #658BE6;
    font-size: 0.9em;
}

.calendar-day {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: #333333;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: #658BE6;
    color: white;
    transform: scale(1.05);
}

.calendar-day.disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.calendar-day.selected {
    background: #DAAE00;
    color: #333333;
    font-weight: bold;
    border: 2px solid #333333;
}

.calendar-day.valid-pickup {
    background: #e8f4f8;
    border: 2px solid #658BE6;
}

/* Form responsive design */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
    }

    .mushroom-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .spinner-control {
        width: 100%;
        justify-content: center;
    }

    .calendar-picker {
        min-width: 280px;
        font-size: 0.9em;
    }
}
