/* ============================================
   DVIJE LIPE - Restaurant Website Styles
   Theme: Cream, Gold, Olive Green
   ============================================ */

:root {
    /* Colors */
    --cream: #f5f0e8;
    --cream-dark: #ebe5d9;
    --cream-light: #faf8f4;
    --gold: #c9a227;
    --gold-light: #dbb83d;
    --gold-dark: #a88b1f;
    --green-dark: #4a5a3a;
    --green: #5a7a4a;
    --green-light: #6b8a5a;
    --green-lighter: #7a9a6a;
    --green-pale: #8aaa7a;
    --text-dark: #2a3a2a;
    --text-muted: #5a6a5a;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body.loading {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
    /* Fallback: if JS fails, don't get stuck on loader forever */
    animation: loaderAutoHide 0.8s var(--ease-out-expo) forwards;
    animation-delay: 2.4s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-tree {
    width: 80px;
    height: 100px;
}

.tree-trunk {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawLine 1s var(--ease-out-expo) forwards;
}

.tree-branch {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawLine 0.8s var(--ease-out-expo) forwards;
}

.branch-1 { animation-delay: 0.3s; }
.branch-2 { animation-delay: 0.4s; }
.branch-3 { animation-delay: 0.5s; }
.branch-4 { animation-delay: 0.6s; }

.leaf {
    opacity: 0;
    transform-origin: center;
    animation: leafGrow 0.5s var(--ease-out-back) forwards;
}

.leaf-1 { animation-delay: 0.7s; }
.leaf-2 { animation-delay: 0.8s; }
.leaf-3 { animation-delay: 0.9s; }
.leaf-4 { animation-delay: 1s; }
.leaf-5 { animation-delay: 1.1s; }
.leaf-6 { animation-delay: 1.2s; }
.leaf-7 { animation-delay: 1.3s; }

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

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

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--green);
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 1.4s;
}

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

@keyframes loaderAutoHide {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ============================================
   FLOATING LEAVES
   ============================================ */
.floating-leaves {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.floating-leaf {
    position: absolute;
    opacity: 0.2;
    animation: floatLeaf linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.floating-leaf svg {
    width: 100%;
    height: 100%;
}

@keyframes floatLeaf {
    0% {
        transform: translateY(-100px) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) translateX(100px);
        opacity: 0;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(90, 122, 74, 0.1);
    padding: 0.5rem 0;
}

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

.nav-logo img {
    height: 50px;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

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

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

.nav-cta {
    background: var(--gold);
    color: var(--cream-light) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hide overlay on desktop */
.nav-overlay {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(90, 122, 74, 0.1) 0%, transparent 50%),
        var(--cream);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(90, 122, 74, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 80% 30%, rgba(201, 162, 39, 0.03) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s var(--ease-out-expo) forwards 1.8s;
}

.hero-logo {
    width: clamp(200px, 30vw, 350px);
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(90, 122, 74, 0.2));
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s var(--ease-out-expo) forwards 2s;
}

.hero-title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    color: var(--green);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s var(--ease-out-expo) forwards 2.2s;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s var(--ease-out-expo) forwards 2.4s;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s var(--ease-out-expo) forwards 2.6s;
}

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

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 3s;
}

.hero-scroll span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-leaf {
    position: absolute;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-leaf-1 {
    top: 15%;
    left: 10%;
    width: 45px;
    animation-delay: 0s;
}

.hero-leaf-2 {
    top: 60%;
    right: 8%;
    width: 38px;
    animation-delay: -2s;
}

.hero-leaf-3 {
    bottom: 20%;
    left: 15%;
    width: 30px;
    animation-delay: -4s;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-primary {
    background: var(--gold);
    color: var(--cream-light);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

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

.btn-secondary:hover {
    background: var(--green);
    color: var(--cream-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(90, 122, 74, 0.3);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header-left .section-line {
    margin: 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--green);
    line-height: 1.2;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    max-width: 720px;
    margin: 1.25rem auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================
   DAILY SPECIALS
   ============================================ */
.specials {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--cream-dark);
}

/* Daily Menu Display - Main Feature */
.daily-menu-display {
    display: none;
    margin-bottom: 3rem;
}

.daily-menu-display.active {
    display: block;
}

.daily-menu-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--cream-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(90, 122, 74, 0.12);
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.daily-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green-light));
    z-index: 2;
}

.daily-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(90, 122, 74, 0.18);
}

.daily-menu-card:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--gold), 0 25px 70px rgba(90, 122, 74, 0.18);
}

.daily-menu-image-wrapper {
    position: relative;
    width: 100%;
}

.daily-menu-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s var(--ease-out-expo);
}

.daily-menu-card:hover .daily-menu-image-wrapper img {
    transform: scale(1.02);
}

.daily-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 58, 42, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    opacity: 0;
    transition: all 0.35s ease;
}

.daily-menu-card:hover .daily-menu-overlay {
    background: rgba(42, 58, 42, 0.6);
    opacity: 1;
}

.daily-menu-overlay svg {
    stroke: var(--gold);
}

.daily-menu-overlay span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 162, 39, 0.9);
    border-radius: 50px;
    color: var(--cream-light);
}

/* Daily Menu Modal */
.daily-menu-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.daily-menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.daily-menu-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 58, 42, 0.92);
    backdrop-filter: blur(10px);
}

.daily-menu-modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 20px;
}

.daily-menu-modal-img {
    max-width: 100%;
    max-height: calc(95vh - 80px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.daily-menu-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10001;
}

.daily-menu-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* PDF fallback link */
.daily-menu-pdf-link {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--gold);
    color: var(--green-dark);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    display: none;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    z-index: 10001;
}

.daily-menu-pdf-link:hover {
    background: var(--gold-light);
    transform: translateX(-50%) translateY(-2px);
}

.daily-menu-modal.is-pdf .daily-menu-pdf-link {
    display: flex;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.specials-grid .special-card {
    width: 100%;
    max-width: 400px;
}

.special-card {
    background: var(--cream-light);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(90, 122, 74, 0.08);
    transition: all 0.5s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(30px);
}

.special-card.has-image,
.special-card:not(.has-image) {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.special-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green-light));
    z-index: 2;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(90, 122, 74, 0.15);
}

.special-card.has-image:hover {
    transform: translateY(-10px);
}

/* Special Card Image */
.special-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}

.special-card:hover .special-image img {
    transform: scale(1.05);
}

/* Special Content for cards with images or icon wrapper */
.special-card.has-image .special-content,
.special-card:not(.has-image) .special-content {
    padding: 1.5rem 2rem 2rem;
}

.special-card:not(.has-image) .special-content {
    text-align: center;
}

/* Special card icon placeholder (for cards without images) */
.special-icon-wrapper {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(90, 122, 74, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.special-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(90, 122, 74, 0.08) 0%, transparent 50%);
}

.special-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.35);
    position: relative;
    z-index: 1;
    transition: transform 0.4s var(--ease-out-expo);
}

.special-card:hover .special-icon {
    transform: scale(1.08);
}

.special-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--cream-light);
}

.special-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.75rem;
}

.special-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.special-card.has-image p:empty {
    display: none;
}

.special-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

.special-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 80px;
    opacity: 0.1;
}

.specials-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.specials-empty svg {
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.specials-empty p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
}

.specials-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.branch-decoration {
    width: 100%;
    height: 100%;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

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

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--green);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cream-light);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.25);
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.25rem;
}

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

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border: 2px dashed var(--green-light);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(90, 122, 74, 0.1) 0%, transparent 50%);
}

.about-image-placeholder svg {
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.about-image-placeholder span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--green);
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.about-image-decoration::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 50%;
    opacity: 0.15;
}

/* About photo collage */
.about-collage {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(90, 122, 74, 0.18);
    box-shadow: 0 20px 60px rgba(90, 122, 74, 0.16);
    backdrop-filter: blur(8px);
}

.about-collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.5s var(--ease-out-expo);
}

.about-collage:hover .about-collage-img {
    transform: scale(1.02);
}

.about-collage-main {
    grid-row: 1 / span 2;
    min-height: 420px;
}

.about-collage-top,
.about-collage-bottom {
    min-height: 200px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-padding) 0;
    position: relative;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(201, 162, 39, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(90, 122, 74, 0.14) 0%, transparent 60%),
        linear-gradient(135deg, #1b1612 0%, #231b15 45%, #181310 100%);
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.gallery .section-title {
    color: var(--cream-light);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.gallery .section-line {
    background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.35));
}

.gallery-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.gallery-filters {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.gallery-filter {
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.35s var(--ease-out-expo);
}

.gallery-filter:hover {
    background: rgba(255, 255, 255, 0.10);
}

.gallery-filter.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1b1612;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.25);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.photo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(0);
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s var(--ease-out-expo), filter 0.6s var(--ease-out-expo);
    filter: saturate(1.05) contrast(1.02);
}

.photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(201, 162, 39, 0.18), transparent 45%),
        linear-gradient(to top, rgba(0,0,0,0.55), transparent 55%);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out-expo);
    pointer-events: none;
}

.photo-card::before {
    content: 'Povećaj';
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
    pointer-events: none;
}

.photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

.photo-card:hover img {
    transform: scale(1.06);
}

.photo-card:hover::after,
.photo-card:hover::before {
    opacity: 1;
}

.photo-card:hover::before {
    transform: translateY(0);
}

.gallery-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.95;
    text-align: center;
}

@media (max-width: 1024px) {
    .about-collage-main {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
    }
    .about-collage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 0.75rem;
    }
    .about-collage-main {
        grid-column: 1;
        grid-row: 1;
        min-height: 380px;
        height: 420px;
    }
    .about-collage-top {
        display: none !important;
    }
    .about-collage-bottom {
        grid-column: 2;
        grid-row: 1;
        min-height: 380px;
        height: 420px;
    }
    .photo-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery images do not open a modal on mobile */
    .gallery-hint {
        display: none;
    }
}

@media (hover: none), (pointer: coarse) {
    /* Hide "click to enlarge" hint on touch devices */
    .gallery-hint {
        display: none;
    }
}

/* ============================================
   MENU GALLERY
   ============================================ */
.menu-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
    position: relative;
}

.menu-gallery-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Thumbnail Navigation */
.menu-thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.menu-thumb {
    width: 50px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.menu-thumb:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.menu-thumb.active {
    border-color: var(--gold);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.menu-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Gallery */
.menu-gallery {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-slide-container {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(90, 122, 74, 0.15);
}

.menu-slide {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-slide-item {
    min-width: 100%;
    cursor: pointer;
}

.menu-slide-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation Arrows */
.menu-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream-light);
    border: 2px solid var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(90, 122, 74, 0.15);
    flex-shrink: 0;
    /* Prevent zoom on mobile */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.menu-arrow:hover:not(:disabled) {
    background: var(--green);
    color: var(--cream-light);
    border-color: var(--green);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(90, 122, 74, 0.25);
}

.menu-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Page Info */
.menu-page-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.menu-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 2px solid var(--green-light);
    cursor: pointer;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.menu-dot:hover {
    background: var(--green-lighter);
}

.menu-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.menu-page-counter {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-muted);
}

.menu-page-counter span {
    color: var(--green);
    font-weight: 600;
}

.menu-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .menu-thumbnails {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-gallery {
        gap: 0.5rem;
    }
    
    .menu-arrow {
        width: 44px;
        height: 44px;
    }
    
    .menu-arrow svg {
        width: 22px;
        height: 22px;
    }
    
    .menu-slide-container {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .menu-arrow {
        width: 40px;
        height: 40px;
    }
    
    .menu-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .menu-dot {
        width: 8px;
        height: 8px;
    }
}

/* ============================================
   DELIVERY / WOLT
   ============================================ */
.delivery {
    padding: 4rem 0;
    background: var(--cream);
}

.delivery-card {
    background: linear-gradient(135deg, rgba(107, 138, 90, 0.15) 0%, rgba(90, 122, 74, 0.25) 100%);
    border: 1px solid rgba(90, 122, 74, 0.2);
    border-radius: 30px;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 10px 40px rgba(90, 122, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.delivery-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.delivery-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.wolt-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #00c2e8;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 8px 30px rgba(0, 194, 232, 0.3);
}

.wolt-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 194, 232, 0.4);
}

.wolt-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cream-light);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 15px rgba(90, 122, 74, 0.1);
}

.social-link:hover {
    background: var(--green);
    color: var(--cream-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(90, 122, 74, 0.2);
}

.contact-map {
    height: 100%;
    min-height: 400px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(90, 122, 74, 0.15);
}

.map-wrapper iframe {
    filter: grayscale(20%) contrast(1.1);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(42, 58, 42, 0.9), transparent);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cream-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-dark);
    padding: 3rem 0 2rem;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
}

.footer-decoration svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   ANIMATIONS & SCROLL EFFECTS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"] {
    transform: translateX(40px);
}

[data-animate="scale"] {
    transform: scale(0.9);
}

/* Stagger children */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out-expo);
}

[data-stagger].visible > *:nth-child(1) { transition-delay: 0.1s; }
[data-stagger].visible > *:nth-child(2) { transition-delay: 0.2s; }
[data-stagger].visible > *:nth-child(3) { transition-delay: 0.3s; }
[data-stagger].visible > *:nth-child(4) { transition-delay: 0.4s; }
[data-stagger].visible > *:nth-child(5) { transition-delay: 0.5s; }

[data-stagger].visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
    }
    
    .about-image-placeholder {
        aspect-ratio: 1/1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        order: -1;
    }
}

@media (max-width: 768px) {
    /* Smaller leaves on mobile */
    .floating-leaf {
        transform: scale(0.7);
    }
    
    .hero-leaf-1 {
        width: 32px;
    }
    
    .hero-leaf-2 {
        width: 28px;
    }
    
    .hero-leaf-3 {
        width: 22px;
    }
    
    /* Navigation */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 6rem 2rem 2rem;
        transition: right 0.5s var(--ease-out-expo);
        box-shadow: -10px 0 50px rgba(0,0,0,0.15);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(90, 122, 74, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        text-align: left;
        display: block;
        padding: 1.25rem 0.5rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(90, 122, 74, 0.05);
        padding-left: 1rem;
    }
    
    .nav-cta {
        text-align: center !important;
        margin-top: 0.5rem;
    }
    
    /* Toggle button improvements */
    .nav-toggle.active span {
        background: var(--green);
    }
    
    /* Mobile menu overlay */
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(42, 58, 42, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 999;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        z-index: 1000;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Section Headers - Center */
    .section-header {
        text-align: center;
        padding: 0 1rem;
    }
    
    .section-header-left {
        text-align: center;
    }
    
    .section-header-left .section-line {
        margin: 1.5rem auto 0;
    }
    
    /* Daily Menu Display */
    .daily-menu-card {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .daily-menu-overlay span {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .daily-menu-modal-content {
        padding: 50px 10px 10px;
    }
    
    .daily-menu-modal-img {
        max-height: calc(95vh - 60px);
        border-radius: 8px;
    }
    
    .daily-menu-modal-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }
    
    /* Specials Grid */
    .specials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .special-card {
        text-align: center;
    }
    
    .special-card.has-image {
        text-align: left;
    }
    
    .special-card.has-image .special-content {
        text-align: center;
    }
    
    .special-image {
        height: 180px;
    }
    
    .special-icon-wrapper {
        height: 180px;
    }
    
    .special-icon {
        width: 90px;
        height: 90px;
    }
    
    .special-icon svg {
        width: 42px;
        height: 42px;
    }
    
    /* Menu Gallery Mobile */
    .menu-gallery-container {
        padding: 0 0.5rem;
    }
    
    /* Delivery Section */
    .delivery-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }
    
    .delivery-content {
        text-align: center;
    }
    
    /* About Section */
    .about-content {
        text-align: center;
    }
    
    .about-content .section-header-left {
        text-align: center;
    }
    
    .about-content .section-header-left .section-line {
        margin: 1.5rem auto 0;
    }
    
    .about-features {
        align-items: center;
    }
    
    .about-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .about-image {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }
    
    .about-image-placeholder {
        aspect-ratio: 1/1;
        min-height: 220px;
    }
    
    /* Contact Section */
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info .btn {
        margin: 0 auto;
    }
    
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .about-collage {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .about-collage-main,
    .about-collage-bottom {
        min-height: 300px;
        height: 350px;
    }
    
    .hero-logo {
        width: clamp(160px, 50vw, 250px);
    }
    
    .hero-title-main {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Contact adjustments */
    .map-wrapper {
        min-height: 300px;
        border-radius: 15px;
    }
    
    /* Delivery */
    .delivery-card {
        padding: 1.5rem;
    }
    
    .wolt-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */
@media (hover: none) {
    .btn {
        transition: transform 0.15s ease, background 0.15s ease;
    }
    
    .btn:active {
        transform: scale(0.97);
    }
    
    .menu-arrow:active:not(:disabled) {
        transform: scale(0.9);
        background: var(--green);
        color: var(--cream-light);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .social-link:active {
        transform: scale(0.9);
        background: var(--green);
        color: var(--cream-light);
    }
    
    .menu-slide-item:active {
        opacity: 0.9;
    }
}

/* Clickable images on mobile */
.menu-slide-item img {
    pointer-events: auto;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(201, 162, 39, 0.2);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loader {
        display: none;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}
