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

:root {
    --primary-navy: #1e3a8a;
    --dark-navy: #1e293b;
    --light-grey: #f8fafc;
    --medium-grey: #e2e8f0;
    --accent-blue: #3b82f6;
    --light-blue: #60a5fa;
    --dark-grey: #374151;
    --white: #ffffff;
    --text-grey: #64748b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-grey);
    background-color: var(--light-grey);
    line-height: 1.6;
}

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

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

/* Two-stripe header: thin navy authority bar on top + clean white main bar */
.header {
    background: #FFFFFF;
    color: #1A2A42;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #D8E0EC;
}

/* Thick navy top accent stripe */
.header::before {
    content: '';
    display: block;
    height: 6px;
    background: linear-gradient(90deg, #1B3A6B 0%, #2E5FA3 60%, #1B3A6B 100%);
}

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

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo i {
    font-size: 1.5rem;
    color: #1B3A6B;
    line-height: 1;
}

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

.logo-name {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2E5FA3;
    font-family: 'Poppins', sans-serif;
}

.logo-suffix {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0E1E36;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.01em;
}

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

.nav-menu a {
    color: #0E1E36;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    padding: 0.45rem 0.85rem;
    border-radius: 3px;
    position: relative;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1B3A6B;
    background: rgba(30, 58, 107, 0.08);
}

/* Hamburger-Button */
.menu-toggle {
    display: none;
    border: 1px solid #D0D9E9;
    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: 9px 7px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #1B3A6B;
    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: #1B3A6B;
    color: #FFFFFF;
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #243F7A;
}

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

/* Formal light hero: neutral background, no dark overlay, announcement grid */
.hero {
    background-color: #0E1E36;
    background-image: url('Pic/hero-background.webp');
    background-size: cover;
    background-position: center top;
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    border-bottom: none;
}

/* Dark navy overlay over the hero image */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8, 16, 38, 0.78) 0%, rgba(18, 38, 80, 0.65) 60%, rgba(8, 16, 38, 0.80) 100%);
    z-index: 0;
}

.hero-inner {
    max-width: 860px;
    animation: fadeInUp 0.85s ease-out;
    position: relative;
    z-index: 1;
}

.hero-rubric {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(160, 195, 255, 0.9);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
}

.hero-rubric::before,
.hero-rubric::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: rgba(160, 195, 255, 0.6);
}

.hero-inner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.22;
    color: #F0F5FF;
    margin-bottom: 1rem;
}

.hero-inner p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(210, 225, 250, 0.82);
    margin-bottom: 2.25rem;
    font-family: 'Lora', serif;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Notice / Announcement grid below the headline buttons */
.hero-notices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 900px;
}

.notice-card {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 4px solid #5B8FDE;
    border-radius: 6px;
    padding: 1.25rem 1.25rem;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.notice-card:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.notice-date {
    font-size: 0.72rem;
    color: rgba(160, 195, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.notice-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #F0F5FF;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

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

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

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 3px;         /* sharp, formal, institutional */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.03em;
}

.btn-primary {
    background-color: #1B3A6B;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #243F7A;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(27, 58, 107, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: #1B3A6B;
    border: 2px solid #1B3A6B;
}

.btn-secondary:hover {
    background-color: #1B3A6B;
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Hero is dark → invert secondary button to white outline */
.hero .btn-secondary {
    color: #F0F5FF;
    border-color: rgba(240, 245, 255, 0.6);
}

.hero .btn-secondary:hover {
    background: rgba(240, 245, 255, 0.15);
    color: #F0F5FF;
    border-color: rgba(240, 245, 255, 0.9);
}

.cta-button {
    background: #1B3A6B;
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #243F7A;
}

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

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

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

.benefit-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border-top: 4px solid var(--accent-blue);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* =============================================
   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(--dark-navy);
    margin-bottom: 1rem;
}

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

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-blue);
    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(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

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

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

.product-card {
    overflow: hidden;
    border-radius: 18px;
    background: inherit;
    border: none;
    box-shadow: none;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background-color: rgba(59, 130, 246, 0.12);
}

.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(--dark-navy);
    padding: 1.5rem 1.5rem 0.5rem;
}

.product-card p {
    color: var(--text-grey);
    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-navy) 0%, var(--dark-navy) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

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

.offers .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

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

.offer-card {
    position: relative;
    padding: 2rem;
    border-radius: 18px;
    background: inherit;
    border: none;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
}

.offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

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

.offer-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.offer-price {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--light-blue);
    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(--dark-navy);
    margin-bottom: 1rem;
}

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

.catering-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-blue);
    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(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid rgba(59, 130, 246, 0.5);
    padding-left: 1rem;
}

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

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

.quality-promise {
    background-color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.quality-promise h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.quality-quote {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-grey);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.quality-point {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.quality-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.quality-point h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 0.75rem;
}

.quality-point p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Lora', serif;
}

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

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

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-navy);
    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(--dark-navy);
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.opening-hours tr {
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

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

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-grey);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

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

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

.footer {
    background-color: var(--dark-navy);
    color: var(--white);
    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(148, 163, 184, 0.25);
}

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

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

.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(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(59, 130, 246, 0.8);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

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

.footer-links a {
    color: rgba(59, 130, 246, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .about-grid,
    .catering-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        position: relative;
    }

    .nav-menu {
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.6rem 0 1rem;
        background: #FFFFFF;
        border-radius: 0;
        border-top: 3px solid #1B3A6B;
        box-shadow: 0 6px 18px rgba(30, 58, 138, 0.12);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        z-index: 150;
    }

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

    .nav-menu a {
        padding: 0.75rem 1.4rem;
        border-radius: 0;
        margin: 0;
        text-align: left;
        border-bottom: 1px solid #EBF0F8;
        color: #2A3A54;
    }

    .nav-menu a:hover {
        background: #F0F4FB;
        color: #1B3A6B;
    }

    .nav-menu a::after {
        display: none;
    }

    .logo {
        order: 1;
    }

    .cta-button {
        order: 2;
        width: 100%;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .products-grid,
    .offers-grid,
    .quality-points {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu a {
        font-size: 1.05rem;
    }
}

@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-blue);
}

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

/* =============================================
   MODERN LAYOUT OVERHAUL
   ============================================= */

/* =============================================
   RESPONSIVE – RATHAUS REDESIGN
   ============================================= */
@media (max-width: 860px) {
    .hero-notices { grid-template-columns: 1fr 1fr; }
    .hero-inner h1 { font-size: 2rem; }
}
@media (max-width: 540px) {
    .hero-notices { grid-template-columns: 1fr; }
    .hero { padding: 4rem 1rem 3rem; }
}

/* =============================================
   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;
}
