/* Base Variables & Theming */
:root {
    /* Colors */
    --color-primary: #8C1A6B;
    /* Magenta / Logo Pembe */
    --color-primary-hover: #A3207E;
    --color-secondary: #0F3325;
    /* Very Dark Green / Zeytin YeÅŸili */
    --color-secondary-light: #1A5239;
    --color-bg-gray: #252428;
    /* Custom Dark Gray Backgrounds */
    --color-accent: #D4AF37;
    /* Gold / AltÄ±n */
    --color-bg-light: #FDFBF7;
    /* Warm White / SÄ±cak Beyaz */
    --color-bg-dark: #121212;
    --color-text-dark: #2C2C2C;
    --color-text-light: #FDFBF7;
    --color-text-muted: #7A7A7A;
    --color-border: #E0DCD3;
    --color-overlay: rgba(37, 36, 40, 0.75);
    /* Custom dark gray overlay */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Utilities */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(140, 26, 107, 0.15);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-logo {
    width: auto;
    max-width: none;
}

.site-logo.white-logo {
    height: 150px;
    margin-top: -25px;
    margin-bottom: -25px;
}

.site-logo.colored-logo {
    height: 100px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

.text-center {
    text-align: center;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-light {
    color: var(--color-text-light);
}

.text-light-muted {
    color: rgba(253, 251, 247, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    gap: 8px;
    /* For icons */
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: none;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-transform: none;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.3rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--color-bg-light);
    padding: 0.3rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.logo a span {
    color: var(--color-accent);
}

.header.scrolled .logo a {
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
}

.header.scrolled .nav-links a {
    color: var(--color-text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flag-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(50%);
    line-height: 1;
}

.flag-btn.active {
    opacity: 1;
    filter: grayscale(0%);
}

.flag-btn:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.2);
}

.flag-btn::after {
    display: none;
}

.flag-img {
    width: 28px;
    height: 20px;
    display: block;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hamburger {
    border: 0;
    background: transparent;
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.header.scrolled .hamburger {
    color: var(--color-text-dark);
}

/* Header Dark (For Menu Page) */
.header.dark-header {
    background-color: var(--color-bg-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.dark-header .logo a,
.header.dark-header .hamburger {
    color: var(--color-secondary);
}

.header.dark-header .nav-links a {
    color: var(--color-text-dark);
}

/* Home Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 36, 40, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Ephesis', cursive !important;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400 !important;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* About Section */
.about-banner {
    width: 100%;
    height: clamp(220px, 30vw, 280px);
    margin-bottom: 5rem;
    border-top: 6px solid #FDFBF7;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center 30%;
}

.about-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 2rem;
    align-items: stretch;
}

.about-images-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.about-img-main {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 1rem;
}

.about-text-inner {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-banner {
        height: auto;
        margin-bottom: 3rem;
        border-top: 4px solid #FDFBF7;
    }

    .about-banner img {
        height: auto;
        object-fit: contain;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-img-overlap {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
        border-width: 5px;
    }
}

.img-1 {
    width: 70%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 2;
}

.img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border: 10px solid var(--color-bg-light);
}

/* Specials Section */
.specials {
    background-color: var(--color-bg-gray);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.special-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.special-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.special-card:hover .special-img {
    transform: scale(1.05);
}

.special-info {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-bg-light);
    z-index: 2;
}

.special-info h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.special-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Reservation Section */
.reservation {
    background-color: #FDFBF7;
}

/* Gallery Section */
.gallery {
    background-color: var(--color-bg-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border: 0;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.item-1 {
    background-image: url('/images/organizasyon.jpg');
}

.item-2 {
    background-image: url('/images/kahvalti.jpg');
}

.item-3 {
    background-image: url('/images/restorant.jpg');
}

.item-4 {
    background-image: url('/images/plaj.jpg');
}

.item-5 {
    background-image: url('/images/slider1.jpg');
}

.item-6 {
    background-image: url('/images/slider2.jpg');
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(140, 26, 107, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--color-text-light);
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Contact Section Grid (Info & Map) */
.contact {
    background-color: var(--color-bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* keep map and info balanced */
}

.info-items {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.2rem;
}

.info-item h4 {
    margin-bottom: 0.2rem;
    color: var(--color-secondary);
}

.info-item p {
    color: var(--color-text-muted);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Footer */
.footer {
    background-color: var(--color-bg-gray);
    color: var(--color-text-light);
    padding: 4rem 0 0 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--color-accent);
}

.footer-brand p {
    color: rgba(253, 251, 247, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(253, 251, 247, 0.1);
    color: var(--color-text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: var(--color-bg-gray);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(253, 251, 247, 0.5);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding-bottom: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #f1f1f1;
    font-size: 2.2rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2002;
    padding: 0;
    line-height: 1;
    outline: none;
}

.close-modal:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    z-index: 2001;
    padding: 0;
    outline: none;
}

.modal-next {
    right: 5%;
}

.modal-prev {
    left: 5%;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {

    .modal-prev,
    .modal-next {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        height: 400px;
        order: -1;
    }

    .img-1 {
        width: 80%;
        height: 80%;
    }

    .img-2 {
        width: 60%;
        height: 60%;
    }

    .reservation-actions {
        flex-direction: column;
    }

    .contact-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-light);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a {
        color: var(--color-text-dark);
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }
}

/* Menu Page Specifics Restored */
.menu-page-body {
    background-color: var(--color-bg-light);
    padding-top: 80px;
}

.menu-hero {
    height: 40vh;
    min-height: 300px;
    background: url('/images/slider2.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 36, 40, 0.6);
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
}

.menu-lang-switcher {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .menu-lang-switcher {
        display: flex;
    }
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.menu-tab {
    background: transparent;
    border: 2px solid var(--color-border);
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
    background-color: var(--color-bg-gray);
    border-color: var(--color-bg-gray);
    color: var(--color-text-light);
}

.menu-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category.active {
    display: block;
    column-count: 2;
    column-gap: 0;
}

@media (max-width: 768px) {
    .menu-category.active {
        column-count: 1;
    }
}

/* Elements that span full width across both columns */
.menu-category>p,
.menu-category>h4 {
    grid-column: 1 / -1;
    column-span: all;
}

.menu-item-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px dashed var(--color-border);
    transition: var(--transition);
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

.menu-item-thumb {
    width: 80px;
    height: 80px;
    border-radius: 0;
    object-fit: cover;
    margin-right: 1.5rem;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.menu-item-thumb:hover {
    transform: scale(1.05);
}

.menu-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex: 1;
}


.menu-item-card:hover {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom-color: transparent;
    transform: translateX(5px);
}

.menu-item-info h3 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.menu-item-info p {
    color: var(--color-text-dark);
    font-size: 1.05rem;
    max-width: 95%;
}

.menu-item-price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    white-space: nowrap;
}

/* Menu Subcategory Headers (e.g. Biralar, Viski, RakÄ± inside AlkollÃ¼) */
.menu-subcategory {
    grid-column: 1 / -1;
    column-span: all;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1rem 1.5rem 0.5rem;
    margin: 0;
    border-bottom: 2px solid var(--color-primary);
    letter-spacing: 1px;
}

.menu-subcategory:first-child {
    padding-top: 0;
}

/* Size Pill Badges for multi-price items */
.size-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.size-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
    transition: var(--transition);
}

.size-pill:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(140, 43, 31, 0.15);
}

.size-label {
    background-color: var(--color-primary);
    color: white;
    padding: 0.3rem 0.6rem;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.8rem;
}

.size-price {
    padding: 0.3rem 0.6rem;
    font-weight: 600;
    color: var(--color-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background-color: #fff;
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }

    .menu-item-card {
        padding: 1rem 0;
        align-items: flex-start;
    }

    .menu-item-content {
        align-items: flex-start;
    }

    .menu-item-thumb {
        width: 70px;
        height: 70px;
        margin-right: 1rem;
    }

    .menu-item-info h3 {
        font-size: 1.15rem;
    }

    .menu-item-price {
        font-size: 1rem;
        margin-left: 0.5rem;
    }

    .menu-item-info p {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.4;
    }

    .size-pills {
        gap: 0.4rem;
    }

    .size-pill {
        font-size: 0.75rem;
    }

    .size-label {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }

    .size-price {
        padding: 0.2rem 0.4rem;
        font-size: 0.8rem;
    }

    .menu-subcategory {
        font-size: 1.1rem;
        padding: 0.8rem 1rem 0.4rem;
    }
}

.special-title::after {
    display: none;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

/* Categories Banner */
.categories-banner {
    display: flex;
    width: 100%;
    height: 400px;
}

.cat-box {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.cat-box:hover .cat-bg {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.4s ease;
}

.cat-box:hover .cat-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.cat-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-cursive {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cat-normal {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .categories-banner {
        flex-wrap: wrap;
        height: auto;
    }

    .cat-box {
        flex: 1 1 50%;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .cat-box {
        flex: 1 1 100%;
        height: 250px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}