/* ===== CSS VARIABLES ===== */
:root {
    --primary: #8B6F47;
    --primary-dark: #6B4423;
    --primary-light: #D4A574;
    --secondary: #3E2723;
    --accent: #C19A6B;
    --dark: #1C1410;
    --light: #F5F1ED;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --gray: #757575;
    --gray-light: #E0E0E0;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-label.light {
    color: var(--primary-light);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-title.light {
    color: var(--white);
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin-bottom: 30px;
}

.title-underline.center {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn svg {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--primary-light);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-reserve {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.btn-reserve:hover {
    background: var(--primary-light);
}

.btn.full-width {
    width: 100%;
    justify-content: center;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: var(--dark);
    padding: 10px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.header-contact,
.header-social {
    display: flex;
    gap: 25px;
}

.header-contact a,
.header-social a {
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-contact a:hover,
.header-social a:hover {
    color: var(--primary-light);
}

.navbar {
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    display: block;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--primary);
    font-style: italic;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    border-radius: 20px;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 106px;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 6rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease;
    animation-fill-mode: both;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== FEATURES BAR ===== */
.features-bar {
    padding: 60px 0;
    background: var(--cream);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.125rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    padding-right: 40px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 25px;
    background: var(--cream);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
}

.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
}

.image-box.large {
    grid-row: 1 / 3;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    overflow: hidden;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.placeholder-icon {
    display: block;
    margin-bottom: 10px;
}

.image-placeholder p {
    font-size: 1rem;
    font-weight: 600;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--primary-light);
}

.badge-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 120px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 30px;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.menu-item {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.menu-item-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.menu-item h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.menu-item-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--cream);
    padding: 5px 12px;
    border-radius: 15px;
    margin-bottom: 12px;
}

.menu-item-desc {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.menu-item-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.menu-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
}

.menu-cta p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--dark);
}

/* ===== SPECIAL SECTION ===== */
.special-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.special-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.1), rgba(212, 165, 116, 0.1));
    opacity: 0.3;
}

.special-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.special-text {
    font-size: 1.25rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 40px;
}

.special-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.price-label {
    font-size: 1.25rem;
    color: var(--primary-light);
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.price-per {
    font-size: 1rem;
    color: var(--cream);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 120px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-placeholder {
    height: 350px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-icon {
    font-size: 5rem;
    position: relative;
    z-index: 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.gallery-cat {
    font-size: 0.875rem;
    color: var(--primary-light);
}

/* ===== RESERVATION SECTION ===== */
.reservation-section {
    padding: 120px 0;
    background: var(--light);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reservation-info {
    padding-right: 40px;
}

.reservation-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.info-text p {
    color: var(--gray);
    margin: 0;
}

.reservation-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.reservation-form h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: var(--cream);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.contact-card p {
    color: var(--gray);
    line-height: 1.7;
}

.contact-form-section {
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
}

.contact-form-section h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.map-section {
    margin-top: 60px;
}

.map-placeholder {
    height: 450px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.map-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.map-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 25px;
}

.map-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.map-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--cream);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo h3 {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 3px;
}

.footer-logo span {
    color: var(--primary-light);
    font-size: 0.875rem;
    font-style: italic;
}

.footer-about p {
    color: rgba(245, 241, 237, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    color: var(--primary-light);
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(245, 241, 237, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: rgba(245, 241, 237, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact .icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(245, 241, 237, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(245, 241, 237, 0.8);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .container-fluid {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-content,
    .reservation-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        padding-right: 0;
    }

    .reservation-info {
        padding-right: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-about {
        max-width: 100%;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        width: 130px;
        height: 130px;
    }

    .badge-number {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .navbar {
        padding: 12px 0;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .logo-text h1 {
        font-size: 1.25rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-light);
    }

    .nav-link {
        display: block;
        width: 100%;
    }

    .btn-reserve {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .lang-switcher {
        margin-left: 0;
        margin-top: 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        height: 80vh;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .features-bar {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 25px;
    }

    .about-section,
    .menu-section,
    .special-section,
    .gallery-section,
    .reservation-section,
    .contact-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .image-box.large {
        grid-row: auto;
    }

    .experience-badge {
        position: static;
        margin: 20px auto 0;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .special-price {
        flex-direction: column;
        gap: 10px;
    }

    .price-value {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-placeholder {
        height: 300px;
    }

    .reservation-form-wrapper {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 35px 25px;
    }

    .map-placeholder {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-logo,
    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-text,
    .reservation-info {
        padding-right: 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .menu-item {
        padding: 25px;
    }

    .menu-item-price {
        font-size: 1.75rem;
    }

    .special-text {
        font-size: 1rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .reservation-form-wrapper,
    .contact-form-section {
        padding: 25px 20px;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}