:root {
    /* Color Palette */
    --primary: #b78a3b;
    --primary-dark: #9e6e2a;
    --primary-light: #d4a558;
    --secondary: #2c3e50;
    --secondary-dark: #1e2b37;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f9f7f5;
    --bg-white: #fff;
    --bg-dark: #1a1a1a;
    --border: #eee;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    
    /* Spacing */
    --container-padding: 0 20px;
    --section-spacing: 80px;
    --section-spacing-mobile: 50px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.center-text h2:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-left, .top-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-left span:before {
    content: '•';
    margin-right: 5px;
    color: var(--primary);
}

.top-left span:first-child:before {
    display: none;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: var(--bg-white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav ul li a:hover:after,
.nav ul li a.active:after {
    width: 100%;
}

.nav ul li a:hover {
    color: var(--primary);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-weight: 600;
    color: var(--secondary);
    border-left: 1px solid var(--border);
    padding-left: 20px;
}

.lang-switch:hover {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-white);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FEATURED DISHES ===== */
.featured-dishes {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dish-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.dish-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.dish-card h3 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.dish-card p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: var(--section-spacing) 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

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

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

.about-text h2:after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ===== MENU CTA ===== */
.menu-cta {
    padding: var(--section-spacing) 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/assets/images/menu-cta-bg.jpg') center/cover fixed;
    color: var(--text-white);
}

.menu-cta h2 {
    color: var(--text-white);
}

.menu-cta h2:after {
    background: var(--primary);
}

.menu-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ===== RESERVATION CTA ===== */
.reservation-cta {
    padding: var(--section-spacing) 0;
    background: var(--secondary);
    color: var(--text-white);
}

.reservation-cta h2 {
    color: var(--text-white);
}

.reservation-cta h2:after {
    background: var(--primary);
}

.reservation-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
/* ===== FOOTER WITH EXTRA SPACING ===== */
.main-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 70px 0 0;
}

.main-footer .container {
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    padding: 0 10px;
}

.footer-col h3 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-links a:hover {
    color: var(--primary);
}

/* Desktop Large */
@media screen and (min-width: 1600px) {
    .main-footer .container {
        padding-left: 80px;
        padding-right: 80px;
        max-width: 1800px;
    }
    
    .footer-bottom {
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* Desktop Medium */
@media screen and (min-width: 1200px) and (max-width: 1599px) {
    .main-footer .container {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .footer-bottom {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* Tablet */
@media screen and (max-width: 991px) {
    .main-footer .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .footer-bottom {
        padding-left: 40px;
        padding-right: 40px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .legal-links {
        justify-content: center;
        gap: 25px;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    .main-footer {
        padding: 50px 0 0;
    }
    
    .main-footer .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-col {
        padding: 0;
    }
    
    .footer-bottom {
        padding-left: 30px;
        padding-right: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .main-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-col h3 {
        font-size: 2rem;
    }
    
    .footer-col h4 {
        font-size: 1.2rem;
    }
}
/* ===== CENTER TEXT UTILITY ===== */
.center-text {
    text-align: center;
}

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

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .nav ul {
        gap: 20px;
    }
    
    .header-right {
        gap: 15px;
    }
}

/* Mobile (up to 767px) */
@media screen and (max-width: 767px) {
    :root {
        --section-spacing: 50px;
    }
    
    /* Header Mobile */
    .menu-toggle {
        display: flex;
        order: 2;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100%;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .nav ul li a {
        font-size: 1.2rem;
    }
    
    .header-right {
        margin-left: auto;
    }
    
    .btn-primary {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .lang-switch {
        padding-left: 10px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Split Layout Mobile */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid img {
        height: 200px;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    /* Top Bar Mobile */
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .top-left, .top-right {
        justify-content: center;
    }
    
    /* Dish Cards Mobile */
    .dish-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dish-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Small Mobile (up to 480px) */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
    
    .top-left, .top-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-left span:before {
        display: none;
    }
}

/* Landscape Mode */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .nav {
        height: calc(100vh - 70px);
    }
    
    .nav ul {
        padding: 20px;
        gap: 15px;
    }
    
    .nav ul li a {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .hero-buttons,
    .btn-primary,
    .btn-secondary,
    .footer-bottom,
    .reservation-cta,
    .menu-cta {
        display: none;
    }
    
    body {
        color: #000;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
	
	
	
	
	
	/* ===== CONTACT FORM STYLES ===== */
.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
}

.contact-form h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-form h2:after {
    left: 0;
    transform: none;
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group:nth-child(1),
.form-group:nth-child(2),
.form-group:nth-child(3),
.form-group:nth-child(7) {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(183, 138, 59, 0.1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group input[type="date"],
.form-group input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    color: var(--text-dark);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-group input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-group input[type="number"] {
    appearance: none;
    -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    grid-column: span 2;
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.contact-form button[type="submit"]:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-form button[type="submit"]:hover:before {
    width: 300px;
    height: 300px;
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    padding-left: 15px;
    position: relative;
}

.field-error:before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
}

.form-success {
    grid-column: span 2;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    border-left: 4px solid #28a745;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form button[type="submit"].loading {
    background: var(--primary-dark);
    pointer-events: none;
    position: relative;
    color: transparent;
}

.contact-form button[type="submit"].loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--text-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-info {
    grid-column: span 2;
    text-align: center;
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-info a {
    color: var(--primary);
    text-decoration: underline;
}

.form-info a:hover {
    color: var(--primary-dark);
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
    .contact-form {
        padding: 25px;
    }
    
    .contact-form form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(1),
    .form-group:nth-child(2),
    .form-group:nth-child(3),
    .form-group:nth-child(7),
    .contact-form button[type="submit"] {
        grid-column: span 1;
    }
}

@media screen and (max-width: 480px) {
    .contact-form {
        padding: 20px;
    }
    
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
    }
    
    .contact-form button[type="submit"] {
        padding: 12px 20px;
        font-size: 1rem;
    }
}
	
	
	/* ===== MENU HERO ===== */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/assets/images/menu-hero.jpg') center/cover;
    padding: 100px 0 80px;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ===== MENU QUICK NAV ===== */
.menu-quick-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.menu-quick-nav a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.menu-quick-nav a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== MENU SECTIONS ===== */
.menu-section {
    padding: 60px 0;
    border-bottom: 1px dashed var(--border);
}

.menu-section:last-of-type {
    border-bottom: none;
}

.menu-section:nth-child(even) {
    background: var(--bg-light);
}

.menu-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.menu-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary);
}

/* ===== MENU LIST ===== */
.menu-list {
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.menu-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--primary);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-item-header h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.menu-item .price {
    background: var(--primary);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    display: inline-block;
}

.menu-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    padding-right: 100px;
}

/* ===== DIETARY TAGS ===== */
.tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-white);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

.tag[data-type="v"], 
.tag:contains("V") {
    background: #28a745;
}

.tag[data-type="vg"],
.tag:contains("VG") {
    background: #20c997;
}

.tag[data-type="gf"],
.tag:contains("GF") {
    background: #fd7e14;
}

/* ===== MENU NOTE ===== */
.menu-note {
    margin-top: 50px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.menu-note p {
    margin: 5px 0;
    color: var(--text-dark);
}

.menu-note strong {
    color: var(--primary);
}

/* ===== MENU CTA BOTTOM ===== */
.menu-cta-bottom {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
}

.menu-cta-bottom h2 {
    color: var(--text-white);
}

.menu-cta-bottom h2:after {
    background: var(--primary);
    left: 50%;
    transform: translateX(-50%);
}

.menu-cta-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

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

/* Tablet */
@media screen and (max-width: 768px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .menu-quick-nav {
        gap: 10px;
    }
    
    .menu-quick-nav a {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .menu-item {
        padding: 15px;
    }
    
    .menu-item p {
        padding-right: 0;
    }
    
    .menu-item-header h3 {
        font-size: 1.2rem;
    }
    
    .menu-item .price {
        font-size: 1rem;
        padding: 4px 12px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .menu-quick-nav {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .menu-quick-nav a {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .menu-section {
        padding: 40px 0;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-item-header h3 {
        font-size: 1.1rem;
    }
    
    .menu-item .price {
        align-self: flex-start;
    }
    
    .menu-note {
        padding: 20px;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 380px) {
    .menu-item {
        padding: 12px;
    }
    
    .tag {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .menu-quick-nav,
    .menu-cta-bottom {
        display: none;
    }
    
    .menu-section {
        break-inside: avoid;
        padding: 20px 0;
    }
    
    .menu-item {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
	
/* ===== LEGAL PAGE STYLES (Privacy, Terms, Imprint) ===== */
.legal-page {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.legal-page .container {
    max-width: 900px;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.legal-page .container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
}

.legal-page h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--secondary);
    margin-bottom: 10px;
}

.legal-page h1 + p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 40px 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.legal-page h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.legal-page h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-page ul, 
.legal-page ol {
    margin: 20px 0 30px;
    padding-left: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.legal-page li:before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-page strong {
    color: var(--secondary);
}

.legal-page em {
    color: var(--primary);
    font-style: italic;
}

.legal-page .highlight {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin: 30px 0;
}

.legal-page .highlight p:last-child {
    margin-bottom: 0;
}

.legal-page a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-dark);
}

/* Table styles for legal pages */
.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-page th {
    background: var(--secondary);
    color: var(--text-white);
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.legal-page td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.legal-page tr:nth-child(even) {
    background: var(--bg-light);
}

/* Contact information blocks */
.legal-page .contact-block {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid var(--border);
}

.legal-page .contact-block p {
    margin-bottom: 10px;
}

.legal-page .contact-block p:last-child {
    margin-bottom: 0;
}

/* Important notices */
.legal-page .important-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.legal-page .important-notice p {
    color: #856404;
    margin-bottom: 0;
}

.legal-page .important-notice strong {
    color: #856404;
}

/* Demo notice specific to legal pages */
.demo-notice + .legal-page {
    padding-top: 40px;
}

/* ===== RESPONSIVE LEGAL PAGES ===== */
@media screen and (max-width: 768px) {
    .legal-page .container {
        padding: 30px 25px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-page h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }
    
    .legal-page h3 {
        font-size: 1.2rem;
    }
    
    .legal-page p,
    .legal-page li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .legal-page ul, 
    .legal-page ol {
        padding-left: 15px;
    }
}

@media screen and (max-width: 480px) {
    .legal-page .container {
        padding: 20px 15px;
    }
    
    .legal-page h1 {
        font-size: 1.8rem;
    }
    
    .legal-page h2 {
        font-size: 1.3rem;
    }
    
    .legal-page .contact-block {
        padding: 15px;
    }
    
    .legal-page table {
        font-size: 0.9rem;
    }
    
    .legal-page th,
    .legal-page td {
        padding: 8px;
    }
}

/* Print styles for legal pages */
@media print {
    .legal-page .container {
        box-shadow: none;
        padding: 0;
    }
    
    .legal-page .container:before {
        display: none;
    }
    
    .demo-notice {
        display: none;
    }
    
    .legal-page a {
        text-decoration: none;
        color: #000;
    }
}
	
	/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Gallery overlay effect */
.gallery-item:after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover:before {
    opacity: 1;
}

/* Gallery filter buttons (optional) */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
}

.gallery-cta h2 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.gallery-cta h2:after {
    background: var(--primary);
    left: 50%;
    transform: translateX(-50%);
}

.gallery-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Lightbox enhancements */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    animation: lightboxFadeIn 0.3s ease forwards;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--primary);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

@keyframes lightboxFadeIn {
    to {
        opacity: 1;
    }
}

/* Masonry grid layout option */
.gallery-grid.masonry {
    display: block;
    columns: 3;
    column-gap: 20px;
}

.gallery-grid.masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    aspect-ratio: auto;
}

.gallery-grid.masonry .gallery-item img {
    height: auto;
}

/* ===== RESPONSIVE GALLERY ===== */

/* Tablet */
@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .gallery-grid.masonry {
        columns: 2;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .gallery-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .gallery-grid.masonry {
        columns: 1;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 35px;
    }
    
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
}

/* Small Mobile */
@media screen and (max-width: 380px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-item:after {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Loading animation for images */
.gallery-item img {
    opacity: 0;
    animation: imageFadeIn 0.5s ease forwards;
}

@keyframes imageFadeIn {
    to {
        opacity: 1;
    }
}

/* Optional: Add different image orientations */
.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* Hover effect for gallery items with descriptions */
.gallery-item.has-description {
    position: relative;
}

.gallery-item-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.gallery-item:hover .gallery-item-description {
    transform: translateY(0);
}

.gallery-item-description h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-item-description p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Print styles */
@media print {
    .gallery-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .gallery-item:after,
    .gallery-item:before,
    .gallery-cta {
        display: none;
    }
}