/* =============================================
   GLOBAL STYLES & VARIABLES
   ============================================= */

:root {
    --primary-burgundy: #1C1410;  /* warm charcoal-brown */
    --dark-burgundy: #110C08;     /* deep coal */
    --cream: #181210;             /* warm dark bg */
    --beige: #2A1F14;             /* warmer mid-dark */
    --dark-brown: #E8D8C4;        /* parchment-warm text */
    --anthracite: #231A10;
    --gold: #C89035;              /* aged amber */
    --accent-gold: #C87528;      /* smoky ember orange */
    --light-text: #EAD9C4;
    --white: #201810;             /* alternating dark section bg */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-brown);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: clip;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Transparent-first header: full-width, no border-radius, no glass blur.
   Gains dark bg on scroll via JS (.scrolled class) */
.header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--light-text);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background: rgba(20, 13, 7, 0.97);
    border-bottom-color: rgba(200, 117, 40, 0.3);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: space-between;
    min-height: 76px;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    color: #C89035;
    text-decoration: none;
}

.logo i {
    font-size: 1.7rem;
    line-height: 1;
    color: #C87528;
    filter: drop-shadow(0 0 6px rgba(200, 117, 40, 0.45));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(234, 213, 176, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
}

.logo-suffix {
    font-size: 1.3rem;
    font-weight: 900;
    font-style: italic;
    color: #EAD5B0;
    letter-spacing: 0.01em;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
}

/* Desktop-Navigation */
.nav-menu {
    display: flex;
    gap: 0;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    margin-left: 1rem;
}

.nav-menu a {
    color: rgba(234, 213, 176, 0.80);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s ease;
    position: relative;
    padding: 0.5rem 0.65rem;
    font-family: 'Poppins', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #C89035;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.65rem;
    right: 0.65rem;
    height: 1px;
    background: #C87528;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: center;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

/* Hamburger-Button */
.menu-toggle {
    display: none;
    border: 1px solid rgba(200, 140, 60, 0.35);
    background: transparent;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 3px;
    position: relative;
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #C89035;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* CTA-Button im Header */
.cta-button {
    background: #8B4A18;
    color: #F5E8D0;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(200, 140, 60, 0.4);
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #A85820;
    border-color: rgba(200, 140, 60, 0.7);
}

/* =============================================
   HERO SECTION
   ============================================= */

/* Full-bleed cinematic hero – no glass box, raw text on dark image */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('Pic/hero-background.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.38) saturate(0.75);
    transform: scale(1.04);          /* slight over-crop to allow subtle Ken Burns */
    transition: transform 8s ease;
}

.hero:hover .hero-image {
    transform: scale(1.0);
}

/* Warm ember glow from bottom + vignette - rustikaler Rauch */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 55% at 50% 100%, rgba(180, 90, 20, 0.38) 0%, transparent 65%),
        linear-gradient(to top, rgba(10, 5, 0, 0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%),
        radial-gradient(ellipse 130% 90% at 50% 50%, transparent 55%, rgba(0,0,0,0.35) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--light-text);
    text-align: center;
    padding: 6rem 1.5rem 2rem;       /* top padding clears transparent header */
    max-width: 860px;
    animation: fadeInUp 1s ease-out;
}

.hero-eyebrow {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C89035;
    margin-bottom: 1.75rem;
    opacity: 0.88;
    font-family: 'Lora', serif;    /* rustikale Serif statt Poppins */
    font-style: italic;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.4rem, 6.5vw, 6rem);
    font-weight: 900;
    font-style: italic;            /* rustikaler Charakter */
    line-height: 0.95;
    color: #F5E8D0;               /* Pergament-Warmweiß statt reinem Weiß */
    margin-bottom: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #C87528 30%, #E09035 60%, transparent 100%);
    margin: 1.85rem auto;
    border-radius: 0;              /* kein Radius – rohe Linie */
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(224, 200, 165, 0.78);  /* warmes Pergament */
    margin-bottom: 2.5rem;
    font-family: 'Lora', serif;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.btn-primary {
    background-color: #8B4A18;    /* dunkel-rustikales Ember-Braun */
    color: #F5E8D0;
    border: 1px solid #A85820;
}

.btn-primary:hover {
    background-color: #A85820;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 74, 24, 0.55);
}

.btn-secondary {
    background-color: transparent;
    color: #D4C4A8;
    border: 2px solid rgba(200, 175, 130, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(200, 175, 130, 0.08);
    border-color: #C8A870;
    color: #F5E8D0;
    transform: translateY(-2px);
}

/* =============================================
   BENEFITS SECTION
   ============================================= */

.benefits {
    background-color: var(--cream);
    padding: 5rem 0;
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.strength-item {
    display: flex;
    align-items: center;
    background-color: var(--beige);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
    border-left: 5px solid var(--accent-gold);
}

.strength-item:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.2);
}

.strength-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--accent-gold), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-size: 1.8rem;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
}

.strength-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.strength-content p {
    color: var(--dark-brown);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.85;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about {
    background-color: var(--white);
    padding: 5rem 0;
}

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

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-list li {
    padding: 0.75rem 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-list li strong {
    color: var(--accent-gold);
}

.about-content .btn {
    margin-top: 1rem;
}

/* =============================================
   ASSORTMENT SECTION
   ============================================= */

.assortment {
    background-color: var(--beige);
    padding: 5rem 0;
    text-align: center;
}

.assortment h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
    font-family: 'Lora', serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(107, 44, 63, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--accent-gold);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    padding: 1.5rem 1.5rem 0.5rem;
}

.product-card p {
    color: var(--dark-brown);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Lora', serif;
}

/* =============================================
   OFFERS SECTION
   ============================================= */

.offers {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--light-text);
}

.offers h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.offers .section-subtitle {
    color: var(--light-text);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.offer-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.offer-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.offer-card p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.offer-price {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* =============================================
   CATERING SECTION
   ============================================= */

.catering {
    background-color: var(--white);
    padding: 5rem 0;
}

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

.catering-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.catering-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.catering-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.catering-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.catering-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.catering-list li {
    padding: 0.75rem 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent-gold);
    padding-left: 1rem;
}

.catering-list li strong {
    color: var(--accent-gold);
}

/* =============================================
   QUALITY PROMISE SECTION
   ============================================= */

/* =============================================
   ATMOSPHERE SECTION
   ============================================= */

.atmosphere {
    padding: 5.5rem 0;
    background: #130D07;          /* warmes Kohleschwarz */
}

.atmosphere h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-style: italic;           /* rustikal */
    text-align: center;
    color: #EAD5B0;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.atmosphere .section-subtitle {
    text-align: center;
    color: rgba(210,185,148,0.55);
    margin-bottom: 3rem;
    font-size: 0.95rem;
    font-family: 'Lora', serif;
    font-style: italic;
}

.atmosphere-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.atmosphere-card {
    background: #1E1408;          /* warmes Dunkelbraun-Panel */
    border: 1px solid rgba(160, 100, 40, 0.25);
    border-top: 3px solid #8B4A18;  /* rustikale Holzbalken-Kante oben */
    border-radius: 4px;            /* weniger abgerundet – handwerklich */
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: inset 0 1px 0 rgba(200,150,80,0.08);
}

.atmosphere-card:hover {
    background: #261A0C;
    transform: translateY(-5px);
    border-top-color: #C87528;
}

.atm-icon {
    width: 68px;
    height: 68px;
    border-radius: 4px;            /* eckig – robuster Charakter */
    background: linear-gradient(145deg, #5A2B0A, #8B4A18);
    border: 1px solid rgba(200, 120, 40, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.atm-icon i {
    font-size: 1.8rem;
    color: #E8C48A;               /* warmes Bernstein-Gold */
}

.atmosphere-card h3 {
    font-size: 1.1rem;
    color: #EAD5B0;               /* Pergament-Warmton */
    margin: 0 0 0.75rem;
    font-family: 'Lora', serif;    /* Serif statt Poppins – rustikaler */
    font-weight: 600;
    font-style: italic;
}

.atmosphere-card p {
    font-size: 0.88rem;
    color: rgba(210,185,148,0.68);
    line-height: 1.7;
    margin: 0;
    font-family: 'Lora', serif;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonials {
    padding: 5rem 0;
    background: #0C0804;          /* tiefstes Kohleschwarz-Braun */
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: #EAD5B0;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: rgba(200,140,60,0.06);
    border-left: 3px solid #8B4A18;
    border-radius: 0 4px 4px 0;    /* weniger rund */
    padding: 1.75rem;
}

.testimonial-stars {
    color: #C89035;               /* warmes Amber-Gold */
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 0.9rem;
    color: rgba(245,241,237,0.72);
    line-height: 1.7;
    margin: 0 0 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.78rem;
    color: rgba(245,241,237,0.4);
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact {
    background-color: var(--white);
    padding: 5rem 0;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.info-item p {
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-item strong {
    color: var(--accent-gold);
}

.contact-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.opening-hours {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.opening-hours tr {
    border-bottom: 1px solid var(--beige);
}

.opening-hours td {
    padding: 0.75rem 0;
    text-align: left;
    color: var(--dark-brown);
}

.opening-hours td:first-child {
    font-weight: 600;
    color: var(--accent-gold);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--beige);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    background: #2C1E0F;
    color: var(--dark-brown);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(193, 153, 102, 0.1);
}

.form-group button {
    margin-top: 1rem;
}

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

.footer {
    background-color: var(--dark-burgundy);
    color: var(--light-text);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(245, 241, 237, 0.1);
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--light-text);
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 165, 116, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--light-text);
}

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

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

@media (max-width: 1024px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        min-height: 64px;
        gap: 0;
    }

    .logo { order: 1; }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 2;
        margin-left: auto;
    }

    .cta-button { display: none; }

    .nav-menu {
        order: 3;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1rem 1rem;
        background: linear-gradient(160deg, rgba(22, 14, 6, 0.98), rgba(30, 18, 8, 0.98));
        backdrop-filter: blur(16px);
        border-radius: 4px;
        border: 1px solid rgba(200, 117, 40, 0.25);
        border-top: 2px solid #8B4A18;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        z-index: 150;
    }

    .nav-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }

    .nav-menu a {
        padding: 0.85rem 1.2rem;
        border-radius: 2px;
        margin: 0.2rem 0;
        text-align: left;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border-left: 3px solid transparent;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .nav-menu a:hover { background: rgba(200, 117, 40, 0.12); border-left-color: #C87528; transform: none; }
    .nav-menu a:after { display: none; }

    .hero-content { text-align: center; max-width: 100%; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .about-grid, .catering-grid, .contact-grid { grid-template-columns: 1fr; }
    .products-grid, .offers-grid, .quality-points { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .strength-item { flex-direction: column; text-align: center; }
    .strength-icon { margin-right: 0; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .assortment h2,
    .about-content h2,
    .catering-content h2,
    .quality-promise h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .quality-quote {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .assortment h2,
    .about-content h2,
    .catering-content h2,
    .quality-promise h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .quality-quote {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

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

.text-gold {
    color: var(--accent-gold);
}

.text-burgundy {
    color: var(--primary-burgundy);
}

/* =============================================
   RESPONSIVE – NEW SECTIONS
   ============================================= */

@media (max-width: 768px) {
    .atmosphere-cards {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   RESPONSIVE – GRILLMEISTER REDESIGN
   ============================================= */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-content { padding-top: 5rem; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero-divider { margin: 1.25rem auto; }
}

/* =============================================
   BESCAPE GAMES – FIKTIV-DISCLAIMER
   ============================================= */
.escape-disclaimer {
    background: #0F0C08;
    border-top: 1px solid rgba(200, 117, 40, 0.35);
    padding: 0.5rem 1.5rem;
    position: relative;
    z-index: 300;
}
.escape-disclaimer__inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    color: rgba(200, 160, 80, 0.70);
    letter-spacing: 0.04em;
}
.escape-disclaimer__inner i {
    color: rgba(200, 117, 40, 0.70);
    flex-shrink: 0;
}
.escape-disclaimer__inner strong {
    color: rgba(220, 180, 100, 0.90);
    font-weight: 600;
}
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.35); }
.escape-disclaimer__inner a:hover { color: #f59034; }

.footer-bottom p a {
    color: inherit;
    opacity: 0.75;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.3);
    transition: opacity 0.2s ease;
}
.footer-bottom p a:hover {
    opacity: 1;
    text-decoration-color: currentColor;
}
