/* ==========================================================================
   IMKEREI WINDSCHATTEN - STYLE SYSTEM (DSGVO Compliant & Premium Design)
   ========================================================================== */

/* --- 1. LOCAL FONTS (@font-face) --- */

/* Lora (Heading Font) */
@font-face {
    font-family: 'Lora';
    src: url('assets/fonts/lora-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('assets/fonts/lora-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('assets/fonts/lora-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Outfit (Body Font) */
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/outfit-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/outfit-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/outfit-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/outfit-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/outfit-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- 2. CSS CUSTOM PROPERTIES --- */
:root {
    /* Color Palette */
    --primary: hsl(38, 95%, 53%);         /* Warm Golden Honey */
    --primary-light: hsl(38, 95%, 90%);   /* Very soft honey glow */
    --primary-dark: hsl(35, 90%, 42%);    /* Amber Amber */
    --secondary: hsl(145, 20%, 35%);      /* Garden Sage Green */
    --secondary-light: hsl(145, 20%, 93%);
    --dark: rgb(34, 30, 26);              /* Premium Charcoal Brown */
    --light-bg: hsl(35, 45%, 98%);        /* Soft warm cream bg */
    --white: #ffffff;
    --border-color: rgba(214, 201, 185, 0.4);
    
    /* Typography */
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout Tokens */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    --box-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --box-shadow-medium: 0 10px 30px rgba(71, 57, 39, 0.08);
    --box-shadow-hover: 0 20px 40px rgba(71, 57, 39, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Sticky header size */
    --header-height: 95px;
}

/* --- 3. RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* --- 4. LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- 5. COMPONENT: BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 168, 37, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

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

.btn-block {
    width: 100%;
}

/* --- 6. COMPONENT: MAIN HEADER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(253, 251, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 75px;
    background-color: rgba(253, 251, 248, 0.95);
    box-shadow: var(--box-shadow-subtle);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-logo {
    height: 52px;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    color: var(--dark);
}

/* Navigation Links */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    opacity: 0.8;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--primary-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* --- 7. SECTION HEADER --- */
.section-header {
    margin-bottom: 60px;
}

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

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin-top: 16px;
    border-radius: 2px;
}

.section-header.text-center .section-divider {
    margin-left: auto;
    margin-right: auto;
}

/* --- 8. HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 25, 21, 0.85), rgba(29, 25, 21, 0.45));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 40px;
    color: var(--white);
    margin-left: max(5%, calc((100% - 1200px) / 2));
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(249, 168, 37, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: var(--border-radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes scrollMouse {
    0% { opacity: 0; top: 6px; }
    30% { opacity: 1; }
    80% { opacity: 0; top: 18px; }
    100% { opacity: 0; top: 18px; }
}

/* --- 9. ABOUT SECTION --- */
.about-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text-column p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 1.05rem;
}

.about-text-column p.lead-text {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--secondary);
    font-weight: 500;
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

.features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Visual Card Column */
.about-visual-column {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-wrapper {
    width: 100%;
    max-width: 380px;
}

.visual-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 48px 40px;
    position: relative;
    box-shadow: var(--box-shadow-medium);
    overflow: hidden;
    z-index: 1;
}

.card-decor-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.card-decor-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.card-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 24px;
}

.visual-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.visual-content p {
    font-style: italic;
    opacity: 0.85;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}

.card-author {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}

/* --- 10. HONEY SECTION --- */
.honey-section {
    padding: 120px 0;
    background-color: var(--white);
}

.honey-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    align-items: center;
}

.honey-info-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    position: relative;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background-color: var(--primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.honey-info-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.honey-desc {
    font-size: 1.05rem;
    margin-bottom: 16px;
    opacity: 0.95;
    line-height: 1.5;
}

.honey-info-card p {
    margin-bottom: 16px;
    opacity: 0.85;
    font-size: 0.95rem;
}

.honey-attributes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.attribute {
    display: flex;
    align-items: center;
    gap: 12px;
}

.attr-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.attr-text {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Honey Product Image Wrapper */
.honey-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.honey-product-image {
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition-smooth);
}

.honey-product-image:hover {
    transform: scale(1.03);
    box-shadow: var(--box-shadow-hover);
}

/* Vertical list on the right side for details */
.honey-details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    background-color: var(--light-bg);
    border: 1px solid transparent;
    padding: 32px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow-subtle);
}

.detail-card:hover {
    background-color: var(--white);
    border-color: var(--border-color);
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-4px);
}

.detail-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.detail-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.detail-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- 10.5 RETAIL / VERKAUFSSTELLEN SECTION --- */
.retail-section {
    padding: 120px 0;
    background-color: var(--white);
}

.retail-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
}

.retail-content-wrapper {
    padding: 64px;
}

.retail-content-wrapper p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.retail-content-wrapper p.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.shop-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    margin: 32px 0;
}

.shop-icon {
    font-size: 2.5rem;
}

.shop-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.shop-info p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.retail-buttons {
    display: flex;
    gap: 16px;
}

.retail-visual-wrapper {
    background-color: var(--primary-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px;
    text-align: center;
    position: relative;
}

.honey-jar-decorative {
    font-size: 5rem;
    margin-bottom: 24px;
    animation: float 4s ease-in-out infinite;
}

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

.retail-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.5;
}

/* --- 11. CONTACT SECTION --- */
.contact-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
}

.contact-info {
    padding: 64px;
    background-color: var(--dark);
    color: var(--white);
}

.contact-info .section-title {
    color: var(--white);
    margin-bottom: 24px;
}

.contact-info p {
    opacity: 0.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-item .icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-detail-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail-item p {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

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

/* Form Styling */
.contact-form-wrapper {
    padding: 64px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input, .form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--light-bg);
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    background-color: var(--white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    margin-top: 5px;
    accent-color: var(--primary-dark);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.form-checkbox label a {
    color: var(--primary-dark);
    font-weight: 500;
    text-decoration: underline;
}

/* Status & Loader styling for Form */
.form-status {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}
.form-status.success { color: var(--secondary); }
.form-status.error { color: #d32f2f; }

.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

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

/* --- 12. FOOTER --- */
.main-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* --- 13. MODALS (DSGVO & Impressum) --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--border-radius-md);
    max-width: 650px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--box-shadow-hover);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--dark);
}

.modal h2 {
    font-family: var(--font-heading);
    margin-bottom: 24px;
    font-size: 2rem;
}

.modal h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.modal p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* --- 14. MEDIA QUERIES (Responsiveness) --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .about-grid, .honey-grid, .retail-box {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-visual-column {
        justify-content: flex-start;
    }
    .visual-wrapper {
        max-width: 100%;
    }
    .contact-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-content {
        padding: 0 24px;
        margin-left: 0;
    }
    
    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    /* Mobile Navigation menu dropdown */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--light-bg);
        border-left: 1px solid var(--border-color);
        padding: 100px 40px;
        z-index: 1000;
        transition: var(--transition-smooth);
    }
    
    .main-nav.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    /* Animated Hamburger to X */
    .mobile-nav-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .mobile-nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .honey-details-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-form-wrapper, .retail-content-wrapper, .retail-visual-wrapper {
        padding: 32px 24px;
    }
    
    .modal-content {
        padding: 32px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll Animation classes (handled by IntersectionObserver in app.js) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
