/* ===========================================
   KONSEPT 1: FUSION
   Blanding av konsept-1 struktur med
   konsept-1-viderebygging farger/hero
   =========================================== */

:root {
    --color-primary: hsl(16, 51%, 52%);
    --color-primary-light: hsl(16, 51%, 62%);
    --color-primary-dark: hsl(16, 51%, 42%);
    --color-secondary: #1A1A1A;
    --color-background: #FFFBF8;
    --color-background-warm: #FFF5EE;
    --color-text: #1A1A1A;
    --color-text-light: #5A5A5A;
    --color-white: #FFFFFF;

    --font-display: 'DM Sans', -apple-system, sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 84px;
    transition: height 0.3s ease;
}

.header.scrolled .logo img {
    height: 44px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher - hidden on mobile, shown in mobile menu instead */
.lang-switcher {
    display: none;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    padding: 0.25rem;
}

@media (min-width: 769px) {
    .lang-switcher {
        display: flex;
    }
}

.lang-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.lang-switcher a:hover {
    opacity: 1;
    background: rgba(255,255,255,0.15);
}

.lang-switcher a.active {
    background: var(--color-white);
    color: var(--color-primary);
    opacity: 1;
}

.header.scrolled .lang-switcher {
    background: rgba(255,255,255,0.2);
}

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

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: opacity 0.2s ease;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.4);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    margin: 5px 0;
    border-radius: 2px;
}

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

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

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: -150px;
}

.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
}

.hero-curve svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 10rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--color-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Scroll down button - same style and position as scroll-top */
.scroll-down {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-down:hover {
    background: var(--color-primary-dark);
    transform: translateY(2px);
}

.scroll-down.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.scroll-down svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.hero-image {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

/* Removed hover effect on hero image */

.hero-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.hero-floating {
    position: absolute;
    background: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-floating-1 {
    top: 2rem;
    left: -2rem;
}

.hero-floating-2 {
    bottom: 3rem;
    right: -1.5rem;
}

.hero-floating-icon {
    width: 44px;
    height: 44px;
    background: var(--color-background-warm);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.hero-floating-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.hero-floating-text span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Section */
.section {
    padding: 6rem 2rem;
}

.section-warm {
    background: var(--color-background-warm);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

/* Section label - with decorative lines */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    opacity: 0.5;
}

/* Legacy badge styles kept for compatibility */
.section-badge {
    display: inline-block;
    background: var(--color-background-warm);
    color: var(--color-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-warm .section-badge {
    background: rgba(193, 111, 74, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

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

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 160px;
    height: 160px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--color-primary);
}

.about-content p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-white);
    stroke-width: 3;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Menu - CSS Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 1.25rem;
}

.menu-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.menu-card-image {
    width: 100%;
    height: 100%;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: var(--color-white);
}

.menu-card-category {
    display: inline-block;
    background: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.menu-card-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.menu-card-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.menu-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
}

.review-star {
    color: #F59E0B;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
}

.review-author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.review-author-info span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Contact / Info */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--color-background-warm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.contact-card-content h4 {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.contact-card-content p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--color-text);
    text-decoration: none;
}

.contact-card-content a:hover {
    color: var(--color-primary);
}

.contact-map-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 350px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA */
.cta-section {
    background: var(--color-primary);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Catering */
.catering-section {
    background: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

.catering-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.catering-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.catering-shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
}

.catering-shape-2 {
    width: 350px;
    height: 350px;
    bottom: -150px;
    left: -100px;
}

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

.catering-content {
    position: relative;
    z-index: 1;
}

.catering-content .section-badge {
    background: rgba(193, 111, 74, 0.3);
    color: var(--color-white);
}

.catering-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.catering-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.catering-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.catering-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.catering-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.catering-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.catering-image {
    position: relative;
    z-index: 1;
}

.catering-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .catering-grid { grid-template-columns: 1fr; gap: 2rem; }
    .catering-image { order: -1; }
    .catering-image img { height: 300px; }
}

@media (max-width: 768px) {
    .catering-list { grid-template-columns: 1fr; }
    .catering-content h2 { font-size: 2rem; }
}

/* Footer */
.footer {
    background: var(--color-secondary);
    color: rgba(255,255,255,0.8);
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo-top {
    display: block;
}

.footer-logo-top img {
    height: 60px;
    width: auto;
    max-width: 180px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-logo-top:hover img {
    opacity: 1;
}

.footer-tagline {
    font-size: 0.95rem;
    max-width: 400px;
    flex: 1;
    min-width: 200px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    gap: 1rem;
    padding-top: 1.5rem;
}

.footer-guru {
    transform: scale(0.7);
    cursor: pointer;
}

.footer-guru .circ_cont {
    background: #fff !important;
}

.footer-credit {
    text-align: right;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-primary-light);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--color-background-warm);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-light);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.modal-body iframe {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border: none;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1200;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu-header img {
    height: 40px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: var(--color-background-warm);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.mobile-menu-nav a:hover {
    background: var(--color-background-warm);
    color: var(--color-primary);
}

.mobile-menu-footer {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.mobile-lang-switcher a {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-text-light);
    background: var(--color-background);
    transition: all 0.2s ease;
}

.mobile-lang-switcher a:hover {
    background: var(--color-background-warm);
}

.mobile-lang-switcher a.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1.25rem 2rem;
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-banner-text a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background: var(--color-primary-light);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem 1.25rem;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content { max-width: 600px; margin: 0 auto; }
    .hero-description { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .scroll-indicator { align-items: center; margin: 0 auto; }
    .hero-image { max-width: 500px; margin: 0 auto; }
    .hero-floating { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { max-width: 500px; margin: 0 auto; }

    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .logo img { height: 60px; }
    .header.scrolled .logo img { height: 40px; }

    .hero { min-height: auto; }
    .hero-inner { padding: 7rem 1.5rem 8rem; }
    .hero-title { font-size: 2.5rem; }

    /* Move hero badge below title on mobile */
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    .hero-badge {
        order: 2;
        margin-bottom: 0;
        margin-top: 1rem;
        align-self: center;
    }
    .hero-title {
        order: 1;
    }
    .hero-description {
        order: 3;
        margin-top: 1.5rem;
    }
    .hero-buttons {
        order: 4;
    }

    .section { padding: 4rem 1.5rem; }
    .section-title { font-size: 2rem; }

    .menu-showcase,
    .reviews-grid { grid-template-columns: 1fr; }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .cta-title { font-size: 2rem; }

    .footer-top { flex-direction: column; text-align: center; }
    .footer-tagline { text-align: center; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    .footer-guru { order: 2; }
    .footer-copyright,
    .footer-credit { text-align: center; }

    .scroll-top,
    .scroll-down {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* ===========================================
   SCROLL ANIMATIONS
   Subtle fade-in animations on scroll
   =========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for items in grids */
.menu-showcase .fade-in:nth-child(1) { transition-delay: 0ms; }
.menu-showcase .fade-in:nth-child(2) { transition-delay: 100ms; }
.menu-showcase .fade-in:nth-child(3) { transition-delay: 200ms; }
.menu-showcase .fade-in:nth-child(4) { transition-delay: 300ms; }

.reviews-grid .fade-in:nth-child(1) { transition-delay: 0ms; }
.reviews-grid .fade-in:nth-child(2) { transition-delay: 100ms; }
.reviews-grid .fade-in:nth-child(3) { transition-delay: 200ms; }

.contact-cards .fade-in:nth-child(1) { transition-delay: 0ms; }
.contact-cards .fade-in:nth-child(2) { transition-delay: 75ms; }
.contact-cards .fade-in:nth-child(3) { transition-delay: 150ms; }
.contact-cards .fade-in:nth-child(4) { transition-delay: 225ms; }

/* Responsive menu grid */
@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px 220px;
        gap: 1rem;
    }
}

@media (max-width: 500px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 180px 180px 180px;
        gap: 0.75rem;
    }

    .menu-card-overlay {
        padding: 1rem;
    }

    .menu-card-overlay h4 {
        font-size: 1rem;
    }

    .menu-card-overlay p {
        font-size: 0.8rem;
    }
}
