/* ===================================
   Garten und Naturfreunde
   Elegant Outdoor Indian Restaurant
   Mobile-First Stylesheet
   =================================== */

/* CSS Custom Properties */
:root {
    /* Color Palette - Elegant Nature & Indian Inspired */
    --color-primary: #2D5A3D;        /* Deep forest green */
    --color-primary-light: #3D7A52;  /* Lighter green */
    --color-primary-dark: #1E3D2A;   /* Darker green */

    --color-accent: #C4956A;         /* Warm terracotta/saffron */
    --color-accent-light: #D4A87A;   /* Light saffron */
    --color-accent-dark: #A67B4A;    /* Deep terracotta */

    --color-gold: #B8860B;           /* Elegant gold */
    --color-gold-light: #D4A84B;     /* Light gold */

    /* Neutrals */
    --color-cream: #FAF8F5;          /* Warm off-white */
    --color-beige: #F5F1EB;          /* Light beige */
    --color-sand: #E8E2D9;           /* Sand */
    --color-stone: #D4CEC4;          /* Stone gray */

    --color-text: #2C2C2C;           /* Near black */
    --color-text-light: #5A5A5A;     /* Gray text */
    --color-text-muted: #8A8A8A;     /* Muted text */

    --color-white: #FFFFFF;
    --color-black: #1A1A1A;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --header-height: 70px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
}

/* Selection */
::selection {
    background: var(--color-accent);
    color: var(--color-white);
}

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

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Layout
   =================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-4xl) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    color: var(--color-primary-dark);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.cookie-content p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

@media (min-width: 480px) {
    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cookie-link {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-decoration: underline;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    transition: color var(--transition-fast);
}

.nav-logo:hover .logo-text {
    color: var(--color-accent);
}

/* Hamburger Menu */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    z-index: 1001;
}

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

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

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    background: var(--color-cream);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

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

.lang-toggle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    padding: var(--space-sm) 0;
    margin-top: var(--space-md);
    border-top: 1px solid var(--color-sand);
    padding-top: var(--space-lg);
}

.lang-active {
    color: var(--color-primary);
    font-weight: 600;
}

.lang-inactive {
    color: var(--color-text-muted);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        padding: 0;
        background: transparent;
        flex-direction: row;
        align-items: center;
        gap: var(--space-xl);
        box-shadow: none;
    }

    .nav-link {
        font-size: 0.875rem;
        padding: var(--space-xs) 0;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--color-accent);
        transition: width var(--transition-base);
    }

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

    .lang-toggle {
        margin-top: 0;
        border-top: none;
        padding-top: var(--space-sm);
        margin-left: var(--space-md);
        padding-left: var(--space-md);
        border-left: 1px solid var(--color-sand);
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-dark);
    overflow: hidden;
}

/* Animated Background Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Ken Burns effect - subtle zoom while active */
.hero-slide.active {
    animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(30, 61, 42, 0.7) 0%,
        rgba(45, 90, 61, 0.6) 50%,
        rgba(30, 61, 42, 0.8) 100%
    );
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-xl);
    color: var(--color-white);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.hero-cta:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--color-white);
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

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

.about-content {
    display: grid;
    gap: var(--space-2xl);
}

.about-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 600px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature {
    text-align: center;
    padding: var(--space-lg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--color-accent);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-primary-dark);
}

.feature p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ===================================
   Menu Section
   =================================== */
.menu {
    background: var(--color-beige);
}

.menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.menu-tab {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    background: var(--color-white);
    border: 1px solid var(--color-sand);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.menu-tab:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.menu-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.menu-content {
    min-height: 300px;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.menu-placeholder {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-sand);
}

.placeholder-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.placeholder-subtext {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* Menu item styles (for when menu is added) */
.menu-item {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: box-shadow var(--transition-base);
}

.menu-item:hover {
    box-shadow: var(--shadow-md);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-primary-dark);
}

.menu-item-price {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.menu-item-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.tag.vegetarian {
    background: #E8F5E9;
    color: #2E7D32;
}

.tag.vegan {
    background: #E3F2FD;
    color: #1565C0;
}

.tag.spicy {
    background: #FBE9E7;
    color: #D84315;
}

.menu-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: var(--space-xl);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition-base);
}

.gallery-item:hover,
.gallery-item:focus {
    transform: scale(1.02);
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-beige) 100%);
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* ===================================
   Hours Section
   =================================== */
.hours {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.hours .section-label {
    color: var(--color-accent-light);
}

.hours .section-title {
    color: var(--color-white);
}

.hours-content {
    max-width: 500px;
    margin: 0 auto;
}

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
}

.time {
    color: var(--color-accent-light);
    font-weight: 500;
}

.time.closed {
    opacity: 0.6;
    font-style: italic;
}

.hours-note {
    text-align: center;
    font-size: 0.8125rem;
    opacity: 0.7;
    margin-top: var(--space-lg);
}

/* ===================================
   Location Section
   =================================== */
.location {
    background: var(--color-beige);
}

.location-content {
    display: grid;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .location-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.location-info {
    order: 2;
}

@media (min-width: 768px) {
    .location-info {
        order: 1;
    }
}

.address-block {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.address-block strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-primary-dark);
}

.contact-details p {
    margin-bottom: var(--space-sm);
}

.contact-details a {
    color: var(--color-primary);
}

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

.placeholder-inline {
    color: var(--color-text-muted);
    font-style: italic;
}

.map-container {
    order: 1;
}

@media (min-width: 768px) {
    .map-container {
        order: 2;
    }
}

.map-placeholder {
    aspect-ratio: 4/3;
    background: var(--color-sand);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    color: var(--color-text-muted);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--color-stone);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-base);
}

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

.social-link svg {
    width: 20px;
    height: 20px;
}

.placeholder-link {
    opacity: 0.5;
    pointer-events: none;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

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

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

    html {
        scroll-behavior: auto;
    }

    .hero-slide {
        transform: scale(1) !important;
    }

    .hero-slide.active {
        animation: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #1a4d2e;
        --color-accent: #a67b4a;
    }
}

/* Print styles */
@media print {
    .header,
    .cookie-banner,
    .hero-scroll,
    .footer-social {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-xl);
        background: var(--color-primary);
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .section {
        padding: var(--space-xl) 0;
        page-break-inside: avoid;
    }
}
