/* Global Styles */
:root {
    --primary-color: #c41200;
    --secondary-color: #1a1a1a;
    --accent-color: #ffd700;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Background Decorative Elements */
.bg-decoration::before,
.bg-decoration::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

/* Floating Elements Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(10px) rotate(-1deg); }
    66% { transform: translateY(-5px) rotate(1deg); }
}

/* Cherry Blossom Elements */
.cherry-blossom {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffb7c5 30%, #ff91a4 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.cherry-blossom::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6b8a;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Bamboo Elements */
.bamboo-element {
    position: absolute;
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, #4a5d23, #6b8e23);
    border-radius: 2px;
    opacity: 0.3;
    animation: float-reverse 8s ease-in-out infinite;
    z-index: 0;
}

.bamboo-element::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 2px;
    background: #4a5d23;
    left: -1px;
    top: 20px;
    border-radius: 1px;
}

.bamboo-element::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 2px;
    background: #4a5d23;
    left: -1px;
    top: 50px;
    border-radius: 1px;
}

/* Geometric Patterns */
.geometric-pattern {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(196, 18, 0, 0.1);
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite;
    z-index: 0;
}

.geometric-pattern.circle {
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.15);
}

.geometric-pattern.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(196, 18, 0, 0.08);
    border-radius: 0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(196, 18, 0, 0.1), rgba(255, 215, 0, 0.05));
    font-weight: 600;
}

.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    border-radius: 1px;
}

.btn-reservation {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-reservation:hover {
    background: #a00f00;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/home-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(196, 18, 0, 0.15), rgba(255, 215, 0, 0.1));
    transform: rotate(45deg);
    animation: float-reverse 16s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #a00f00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 18, 0, 0.3);
}

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

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: #1a1f2e;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.menu-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(196, 18, 0, 0.1), rgba(255, 215, 0, 0.1));
    transform: rotate(45deg);
    animation: float-reverse 10s ease-in-out infinite;
}

.menu-header-content {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-main-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.menu-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}


.menu-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-pricing-card {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.time-header {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.meal-type {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 300;
}

.meal-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1;
}

.meal-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2rem 0;
}

.meal-days {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 400;
}

.meal-price {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
}

.price-note {
    font-size: 1rem;
    font-weight: 300;
}

.weekend-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.weekend-price {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 400;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
}

.menu-btn {
    background: linear-gradient(135deg, rgba(196, 18, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid var(--accent-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 300px;
    text-transform: uppercase;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.menu-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), #ffed4e);
    color: var(--secondary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border-color: #ffed4e;
}

.menu-btn:hover::before {
    left: 100%;
}

.menu-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

.menu-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-btn:hover:after {
    width: 80%;
    background: var(--secondary-color);
}

.spacer {
    height: 3rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 30px;
    height: 30px;
    background: rgba(196, 18, 0, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 3%;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, 0.12);
    transform: rotate(45deg);
    animation: float-reverse 14s ease-in-out infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-hover);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 8%;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(255, 183, 197, 0.4), rgba(255, 145, 164, 0.2));
    border-radius: 50%;
    animation: float 9s ease-in-out infinite;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 12%;
    width: 35px;
    height: 35px;
    border: 2px solid rgba(196, 18, 0, 0.08);
    border-radius: 50%;
    animation: float-reverse 11s ease-in-out infinite;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 18, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

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

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


/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 6%;
    width: 38px;
    height: 38px;
    border: 3px solid rgba(196, 18, 0, 0.1);
    transform: rotate(60deg);
    animation: float 15s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 18%;
    right: 4%;
    width: 22px;
    height: 22px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 50%;
    animation: float-reverse 7s ease-in-out infinite;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Reservation Section */
.reservation-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 3%;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(196, 18, 0, 0.05));
    transform: rotate(30deg);
    animation: float 13s ease-in-out infinite;
}

.reservation-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 5%;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 183, 197, 0.15);
    border-radius: 50%;
    animation: float-reverse 9s ease-in-out infinite;
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.reservation-text {
    padding-right: 2rem;
}

.reservation-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.quote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    box-shadow: var(--shadow);
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    position: relative;
}

.quote-text:before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    top: -10px;
    font-family: serif;
}

.quote-text:after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    right: -10px;
    bottom: -30px;
    font-family: serif;
}

.reservation-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.reservation-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.contact-info i {
    color: var(--primary-color);
}

.reservation-image {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

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

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.company-info {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation utility classes */
.animate {
    animation-fill-mode: both;
}

/* Smooth transitions for all animated elements */
.hero-title,
.hero-subtitle,
.hero-buttons,
.about-content h2,
.about-content p,
.about-stats,
.about-img-main,
.about-img-secondary,
.feature-card,
.menu-pricing-card,
.reservation-text h2,
.quote,
.reservation-description,
.reservation-buttons,
.reservation-image,
.gallery-section h2,
.gallery-item,
.contact-section h2,
.info-item,
.contact-map {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Loading animation for the entire page */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .about-images {
        display: none;
    }

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


    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .menu-pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .meal-title {
        font-size: 2.5rem;
    }

    .menu-btn {
        min-width: 250px;
        font-size: 0.8rem;
    }

    .menu-main-title {
        font-size: 2rem;
    }

    .menu-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .menu-highlight {
        padding: 0.8rem 1.5rem;
        margin: 0 1rem;
    }

    .highlight-text {
        font-size: 0.9rem;
    }

    .logo {
        height: 35px;
        max-width: 120px;
    }

    .footer-logo {
        height: 40px;
        max-width: 150px;
    }

    .reservation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reservation-text {
        padding-right: 0;
        text-align: center;
    }

    .reservation-text .section-title {
        text-align: center;
    }

    .reservation-buttons {
        align-items: center;
    }

    .reservation-image {
        height: 300px;
        order: -1;
    }

    .quote-text:before,
    .quote-text:after {
        display: none;
    }

    .company-info {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}