/* CSS Variables */
:root {
    --color-dark: #1a1a1a;
    --color-black: #0a0a0a;
    --color-red: #c41e3a;
    --color-red-dark: #a01828;
    --color-green: #2d7a3e;
    --color-green-dark: #1f5a2e;
    --color-white: #ffffff;
    --color-gray: #9ca3af;
    --color-gray-light: #e5e7eb;
    --color-gold: #d4af37;
    
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-script: 'Brush Script MT', cursive;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(196, 30, 58, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    max-height: 140px;
}

.logo img {
    height: 180px;
    width: auto;
    cursor: pointer;
    transition: var(--transition);
}

    img:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .logo img {
        height: 200px;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    font-size: 1.1rem;
}

.nav-link:hover {
    color: var(--color-red);
    padding-left: 0.5rem;
}

.nav-link-special {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: var(--color-white) !important;
    font-weight: 600;
    padding: 1rem 1.5rem !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    animation: wobble 8s ease-in-out infinite;
    border-bottom: none !important;
}

.nav-link-special:hover {
    background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5);
    animation: wobble 4s ease-in-out infinite;
    padding-left: 1.5rem !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    position: relative;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 100%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.3;
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.7) 0%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/leaf1.png'), url('img/leaf2.png');
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    background-size: 200px, 200px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    animation: fadeInUp 1s ease;
}

.badge-ribbon {
    display: inline-block;
    background: var(--color-green);
    color: var(--color-white);
    padding: 0.5rem 2rem;
    font-size: 2.2rem;
    font-weight: bold;
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.4);
    margin-bottom: 2rem;
    border-radius: 5px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--color-gold);
    margin-bottom: 3rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
}

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

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 900px;
    z-index: 3;
    position: relative;
}

.food-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    animation: fadeInUp 1s ease both;
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.food-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* About Section */

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.quality-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(196, 30, 58, 0.95);
    color: var(--color-white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.quality-badge .percentage {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.quality-badge .meat-info {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.about-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--color-red);
}

.lead {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--color-gray-light);
    margin-bottom: 2rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

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

.feature svg {
    color: var(--color-green);
    flex-shrink: 0;
}

/* Menu Highlights */
.menu-highlights {
    padding: 6rem 1.5rem;
    background: var(--color-black);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.highlight-card {
    background: var(--color-dark);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    border-color: var(--color-red);
}

.highlight-image {
    height: 200px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.1);
}

.highlight-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--color-white);
}

.highlight-card p {
    padding: 0 1.5rem 1rem;
    color: var(--color-gray);
}

.highlight-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-red);
}

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

/* Full Menu */
.full-menu {
    padding: 6rem 1.5rem;
    background: var(--color-dark);
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.menu-cat-btn {
    padding: 0.75rem 1.5rem;
    background: var(--color-black);
    color: var(--color-white);
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.menu-cat-btn:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.menu-cat-btn.active {
    background: var(--color-red);
    border-color: var(--color-red);
}

.menu-category {
    animation: fadeIn 0.5s ease;
}

.menu-category h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-red);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-red);
}

.menu-category h4 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--color-gold);
}

.menu-subtitle {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pizza-sizes {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    font-weight: bold;
}

.menu-grid {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--color-red);
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.menu-number {
    color: var(--color-red);
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 40px;
}

.menu-item h4 {
    flex: 1;
    font-size: 1.1rem;
    margin: 0;
    color: var(--color-white);
}

.menu-price {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-item p {
    color: var(--color-gray);
    margin-left: 56px;
}

.menu-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 8px;
    color: var(--color-gray-light);
    border-left: 3px solid var(--color-red);
}

/* Hours Section */
.hours {
    padding: 6rem 1.5rem;
    background: var(--color-black);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hours-card {
    background: var(--color-dark);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--color-green);
    transition: var(--transition);
}

.hours-card.special {
    border-color: var(--color-gold);
}

.hours-card.closed {
    border-color: var(--color-gray);
    opacity: 0.7;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hours-card .day {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.hours-card .time {
    font-size: 1.5rem;
    color: var(--color-red);
    font-weight: bold;
}

/* Language Section */
.language {
    padding: 6rem 1.5rem;
    background: var(--color-dark);
}

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

.language-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-top: 3px solid var(--color-gold);
}

.language-card h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.language-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.language-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.turkish {
    color: var(--color-red);
    font-weight: 600;
}

.german {
    color: var(--color-gray-light);
}

/* Contact Section */
.contact {
    padding: 6rem 1.5rem;
    background: var(--color-black);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item svg {
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h3 {
    color: var(--color-red);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--color-gray-light);
}

.contact-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-red);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-dark);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-links a:hover {
    border-color: var(--color-red);
    transform: translateY(-2px);
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

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

.map-buttons {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem;
}

.map-link {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid transparent;
}

.map-link-google {
    border-color: #4285F4;
}

.map-link-google:hover {
    background: #4285F4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.6);
}

.map-link-apple {
    border-color: #555555;
}

.map-link-apple:hover {
    background: #555555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 85, 85, 0.6);
}

.map-link-osm {
    border-color: var(--color-red);
}

.map-link-osm:hover {
    background: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
}

@media (max-width: 768px) {
    .map-buttons {
        flex-direction: column;
        align-items: stretch;
        width: calc(100% - 2rem);
    }
    
    .map-link {
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
    }
}

#map {
    height: 100%;
    width: 100%;
}

/* Footer */
.footer {
    background: var(--color-dark);
    padding: 3rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo img {
    height: 100px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

@media (min-width: 768px) {
    .footer-logo img {
        height: 200px;
    }
}

.footer-logo p {
    color: var(--color-green);
    font-weight: bold;
}

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

.footer-link {
    background: none;
    border: none;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--color-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
}

.footer-credit {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.footer-credit a {
    color: var(--color-red);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.modal-content {
    background: var(--color-dark);
    max-width: 800px;
    width: 100%;
    border-radius: 15px;
    position: relative;
    margin: 2rem auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-red);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--color-red-dark);
    transform: rotate(90deg);
}

.modal-content h2 {
    padding: 2rem 2rem 1rem;
    color: var(--color-red);
    font-size: 2rem;
    border-bottom: 2px solid var(--color-red);
}

.modal-body {
    padding: 2rem;
    color: var(--color-gray-light);
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body h3 {
    color: var(--color-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body h4 {
    color: var(--color-white);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-5deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
    75% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

@keyframes wobble {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
    }
    10% {
        transform: translateX(-2px) translateY(-1px) scale(1.02);
    }
    20% {
        transform: translateX(2px) translateY(1px) scale(0.98);
    }
    30% {
        transform: translateX(-2px) translateY(2px) scale(1.01);
    }
    40% {
        transform: translateX(2px) translateY(-2px) scale(0.99);
    }
    50% {
        transform: translateX(-1px) translateY(1px) scale(1.01);
    }
    60% {
        transform: translateX(1px) translateY(-1px) scale(0.99);
    }
    70% {
        transform: translateX(-1px) translateY(2px) scale(1.005);
    }
    80% {
        transform: translateX(1px) translateY(-1px) scale(0.995);
    }
    90% {
        transform: translateX(-1px) translateY(1px) scale(1.005);
    }
}

/* Leaf Decorations */
.leaf-decoration {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.leaf-decoration.leaf-1 {
    width: 150px;
    height: 150px;
    background: url('img/leaf1.png') no-repeat center;
    background-size: contain;
    animation: float 8s ease-in-out infinite;
}

.leaf-decoration.leaf-2 {
    width: 180px;
    height: 180px;
    background: url('img/leaf2.png') no-repeat center;
    background-size: contain;
    animation: floatReverse 10s ease-in-out infinite;
}

/* About Section with Decorations */
.about {
    padding: 6rem 1.5rem;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.about .leaf-decoration.leaf-1 {
    top: 10%;
    right: 5%;
}

.about .leaf-decoration.leaf-2 {
    bottom: 15%;
    left: 3%;
}

/* Menu Highlights with Decorations */
.menu-highlights {
    padding: 6rem 1.5rem;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

.menu-highlights .leaf-decoration.leaf-1 {
    top: 20%;
    left: 2%;
    animation-delay: 1s;
}

.menu-highlights .leaf-decoration.leaf-2 {
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

/* Full Menu with Decorations */
.full-menu {
    padding: 6rem 1.5rem;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.full-menu .leaf-decoration.leaf-1 {
    top: 5%;
    right: 8%;
    animation-delay: 0.5s;
}

.full-menu .leaf-decoration.leaf-2 {
    top: 50%;
    left: 2%;
    animation-delay: 1.5s;
}

/* Hours with Decorations */
.hours {
    padding: 6rem 1.5rem;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

.hours .leaf-decoration.leaf-1 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

/* Language with Decorations */
.language {
    padding: 6rem 1.5rem;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.language .leaf-decoration.leaf-2 {
    top: 15%;
    left: 5%;
    animation-delay: 1s;
}

.language .leaf-decoration.leaf-1 {
    bottom: 10%;
    right: 3%;
    animation-delay: 3s;
}

/* Contact with Decorations */
.contact {
    padding: 6rem 1.5rem;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

.contact .leaf-decoration.leaf-2 {
    top: 10%;
    right: 5%;
    animation-delay: 0.5s;
}

/* Tablet */
@media (min-width: 768px) {
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-link {
        border: none;
        padding: 0.5rem 1rem;
    }
    
    .nav-link:hover {
        padding-left: 1rem;
    }
    
    .nav-link-special {
        padding: 0.5rem 1.5rem !important;
    }
    
    .nav-link-special:hover {
        padding-left: 1.5rem !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-logo {
        text-align: left;
    }
}