/* ===== CSS Variables ===== */
:root {
    --primary-color: #6e0c0c;
    --primary-dark: #450101;
    --primary-light: #a01010;
    --accent-gold: #d97706;
    --accent-gold-light: #f59e0b;
    --accent-cream: #f2e2a2;
    --accent-orange: #ff8c00;
    --accent-green: #15803d;
    --accent-purple: #7c2d92;
    --text-dark: #1c1410;
    --text-light: #ffffff;
    --background-light: #fffbeb;
    --background-gradient-start: #d9d0b0;
    --background-gradient-end: #e6e2d5;
    --shadow: rgba(139, 0, 0, 0.25);
    --shadow-gold: rgba(217, 119, 6, 0.3);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== Top Contact Bar ===== */
.top-contact-bar {
    background-color: var(--primary-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--accent-gold);
}

.contact-icon {
    width: 18px;
    height: 18px;
}

.top-contact-bar .social-links {
    display: flex;
    gap: 1rem;
    padding: 0;
    background-color: transparent;
}

.top-contact-bar .social-icon {
    width: 20px;
    height: 20px;
}

/* ===== Navbar Styles ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
}

/* ===== Navigation Links ===== */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* ===== Order Button ===== */
.order-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-light);
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.order-btn::after {
    display: none;
}

.order-btn:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-gold);
}

/* ===== Logo Styles ===== */
.nav-logo {
    text-align: center;
    flex-shrink: 0;
    margin: 0 2rem;
}

.nav-logo a {
    text-decoration: none;
    color: var(--text-light);
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--accent-cream);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== Language Toggle ===== */
.language-toggle {
    display: flex;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--accent-cream);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lang-btn:hover {
    border-color: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.lang-btn.active {
    border-color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.2);
}

.flag-icon {
    width: 26px;
    height: 26px;
    object-fit: cover;
}

/* ===== Social Links ===== */
.social-icon {
    color: var(--accent-cream);
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== Main Content ===== */
main {
    padding-top: 120px;
}

section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--background-light) 0%, #fff5e6 100%);
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/interior.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 0;
}


.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(102, 5, 5, 0.03) 35px, rgba(102, 5, 5, 0.03) 70px);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-decoration-top,
.hero-decoration-bottom {
    width: 120px;
    color: var(--accent-gold);
    margin: 0 auto 2rem;
    opacity: 0.7;
}

.hero-decoration-bottom {
    margin: 3rem auto 0;
}

.hero-title {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-gold);
    font-style: italic;
}

.hero-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 5, 5, 0.3);
}

.hero-btn-primary:hover svg {
    transform: translateX(5px);
}

.hero-btn-secondary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-light);
}

.hero-btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-orange));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.hero-btn-secondary:hover svg {
    transform: scale(1.1);
}

.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 5, 5, 0.15);
}

.info-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: var(--text-light);
}

.info-card-icon svg {
    width: 26px;
    height: 26px;
}

.info-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.info-card-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.hero-image-side {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-spice-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.spice-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.spice-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 5, 5, 0.2), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.spice-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent);
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.spice-4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(102, 5, 5, 0.15), transparent);
    top: 30%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

.hero-mandala {
    position: absolute;
    width: 400px;
    height: 400px;
    color: var(--accent-gold);
    opacity: 0.5;
    animation: rotateMandalaSlow 60s linear infinite;
}

@keyframes rotateMandalaSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.scroll-arrow svg {
    width: 18px;
    height: 18px;
}

/* ===== About Section ===== */
.about-section {
    background: linear-gradient(to bottom, #ffffff 0%, var(--background-light) 50%, #fff5e6 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 5, 5, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(212, 175, 55, 0.02) 60px, rgba(212, 175, 55, 0.02) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(212, 175, 55, 0.02) 60px, rgba(212, 175, 55, 0.02) 61px);
    pointer-events: none;
    z-index: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    border-radius: 50%;
    z-index: -1;
}

.section-label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-decoration {
    width: 120px;
    margin: 0 auto;
    color: var(--accent-gold);
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Image Container */
.about-image-container {
    position: relative;
}

.about-image-frame {
    position: relative;
    padding: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 5, 5, 0.15);
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-cream) 0%, #fff 100%);
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Hide placeholder if image loads */
.about-image img:not([src=""]) ~ .image-placeholder {
    display: none;
}

/* Corner Decorations */
.corner-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--accent-gold);
}

.corner-top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(102, 5, 5, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Content */
.about-text-content {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), #e6c04e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
    opacity: 0.8;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 5, 5, 0.2);
    margin-top: 2rem;
}

.about-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 5, 5, 0.3);
}

.about-cta-btn:hover svg {
    transform: translateX(5px);
}

/* Decorative Background Elements */
.about-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatSlow 8s ease-in-out infinite;
    z-index: 0;
}

.about-spice-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.about-spice-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 5, 5, 0.15), transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.about-spice-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* ===== Specials Section ===== */
.specials-section {
    background: linear-gradient(135deg, #fff 0%, var(--background-light) 50%, #fff5e6 100%);
    padding: 6rem 2rem;
    position: relative;
}

.specials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Menu Cards Grid */
.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.menu-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(102, 5, 5, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(102, 5, 5, 0.2);
}

/* Menu Card Image */
.menu-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--accent-cream);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .image-overlay {
    opacity: 1;
}

.dish-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dish-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Hide placeholder if image loads */
.menu-card-image img:not([src=""]) ~ .dish-placeholder {
    display: none;
}

/* Badges */
.spicy-indicator,
.veggie-badge,
.chef-special,
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.veggie-badge {
    background: linear-gradient(135deg, var(--accent-green), #16a34a);
    color: #fff;
}

.chef-special {
    top: auto;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
}

.popular-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
}

/* Menu Card Content */
.menu-card-content {
    padding: 1.5rem;
}

.dish-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.dish-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    min-height: 3rem;
}

.dish-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.dish-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* View Full Menu Button */
.view-menu-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.view-full-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px var(--shadow-gold);
}

.view-full-menu-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.view-full-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px var(--shadow-gold);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold-light));
}

.view-full-menu-btn:hover svg {
    transform: translateX(5px);
}

/* ===== Order Online Section ===== */
.order-online-section {
    background: linear-gradient(135deg, var(--background-light) 0%, #ffffff 50%, var(--background-gradient-start) 100%);
    padding: 6rem 2rem;
    position: relative;
}

.order-online-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Delivery Services Grid */
.delivery-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 4rem 0 3rem;
}

.delivery-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.delivery-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.delivery-service-card:hover::before {
    opacity: 1;
}

.delivery-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 50%;           /* ← dělá kruh */
    background: #f8f8f8;          /* záložní barva pro případ, že obrázek selže */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;            /* velmi důležité – obrázek vyplní kruh */
    object-position: center;
    display: block;
}


.delivery-service-card:hover .service-icon {
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.18);
}


.takeaway-card .service-icon {
    background: linear-gradient(135deg, rgba(217,119,6,0.12), rgba(245,158,11,0.08));
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.5;
}

.service-phone {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

/* Order Info Box */
.order-info-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 20px;
    box-shadow: 0 6px 25px var(--shadow-gold);
    max-width: 600px;
    margin: 0 auto;
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.info-icon svg {
    width: 32px;
    height: 32px;
}

.info-content {
    color: var(--text-light);
}

.info-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.info-content p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Payment Methods Row */
.payment-methods-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-8px);
}

.payment-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.payment-method:hover .payment-icon {
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

.payment-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.payment-info-text {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-dark);
    opacity: 0.75;
    margin-top: 2rem;
    font-style: italic;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Footer Logo */
.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-logo-subtitle {
    font-size: 0.9rem;
    color: var(--accent-cream);
    opacity: 0.9;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--accent-cream);
    opacity: 0.85;
}

/* Footer Social Links */
.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-cream);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Column Titles */
.footer-column-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: var(--accent-cream);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: var(--accent-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--accent-gold);
}

.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-gold);
}

/* Opening Hours */
.footer-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-cream);
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.footer-hours-item .day {
    font-weight: 600;
}

.footer-hours-item .time {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Company Details */
.footer-company-item {
    color: var(--accent-cream);
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.company-detail {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--primary-dark);
    padding: 1.5rem 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: var(--accent-cream);
    opacity: 0.8;
}

.made-by {
    font-size: 0.9rem;
    color: var(--accent-cream);
    opacity: 0.8;
}

.developer-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.3rem;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .top-contact-bar {
        padding: 0.5rem 1rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .contact-icon {
        width: 16px;
        height: 16px;
    }

    .navbar-container {
        padding: 1rem;
    }

    .nav-left,
    .nav-right {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title-main {
        font-size: 2.8rem;
    }

    .hero-title-sub {
        font-size: 1.3rem;
    }

    .hero-image-side {
        height: 300px;
    }

    .hero-mandala {
        width: 300px;
        height: 300px;
    }

    .hero-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .menu-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .dish-name {
        font-size: 1.3rem;
    }

    .delivery-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-icon {
        width: 100px;
        height: 100px;
    }

    .service-name {
        font-size: 1.3rem;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-contact-bar {
        padding: 0.4rem 1rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .contact-item {
        font-size: 0.8rem;
    }

    .top-contact-bar .social-links {
        gap: 0.75rem;
    }

    .top-contact-bar .social-icon {
        width: 18px;
        height: 18px;
    }

    .navbar {
        top: 90px;
    }

    main {
        padding-top: 210px;
    }

    .navbar-container {
        flex-wrap: wrap;
    }

    .nav-left,
    .nav-right {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .navbar-container.active .nav-left,
    .navbar-container.active .nav-right {
        display: flex;
    }

    .nav-logo {
        order: -1;
        margin: 0;
    }

    .nav-logo h1 {
        font-size: 1.3rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .mobile-menu-toggle {
        display: flex;
        order: -1;
        margin-left: auto;
    }

    .language-toggle {
        margin-left: 0;
        order: -1;
    }

    .hero-section {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title-main {
        font-size: 2.2rem;
    }

    .hero-title-sub {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .hero-image-side {
        display: none;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .about-image-frame {
        padding: 1rem;
    }

    .corner-decoration {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }

    .experience-badge {
        bottom: -15px;
        right: 20px;
        padding: 1.2rem 1.5rem;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-icon svg {
        width: 22px;
        height: 22px;
    }

    .badge-number {
        font-size: 1.6rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .about-description p {
        font-size: 1rem;
    }

    .menu-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-card-image {
        height: 200px;
    }

    .dish-name {
        font-size: 1.2rem;
    }

    .dish-description {
        font-size: 0.9rem;
        min-height: auto;
    }

    .dish-price {
        font-size: 1.4rem;
    }


    .view-full-menu-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .delivery-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .delivery-service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 90px;
        height: 90px;
    }

    .service-name {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-phone {
        font-size: 1.1rem;
    }

    .order-info-box {
        padding: 1.5rem 2rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon svg {
        width: 26px;
        height: 26px;
    }

    .info-content h4 {
        font-size: 1.2rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .payment-methods-row {
        gap: 2rem;
    }

    .payment-icon {
        width: 85px;
        height: 85px;
    }

    .payment-label {
        font-size: 0.95rem;
    }

    .payment-info-text {
        font-size: 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-item span {
        font-size: 0.75rem;
    }

    .contact-icon {
        width: 14px;
        height: 14px;
    }

    .nav-logo h1 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 0.5rem;
    }

    .lang-btn {
        width: 35px;
        height: 35px;
    }

    .hero-title-main {
        font-size: 1.8rem;
    }

    .hero-title-sub {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-card-icon {
        width: 45px;
        height: 45px;
    }

    .scroll-indicator {
        font-size: 0.85rem;
    }

    .section-label {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .about-description p {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }

    .about-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .experience-badge {
        bottom: -10px;
        right: 15px;
        padding: 1rem 1.2rem;
    }

    .badge-number {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .menu-card-image {
        height: 180px;
    }

    .menu-card-content {
        padding: 1.2rem;
    }

    .dish-name {
        font-size: 1.1rem;
    }

    .dish-description {
        font-size: 0.85rem;
    }

    .dish-footer {
        justify-content: center;
    }

    .dish-price {
        font-size: 1.5rem;
    }

    .view-full-menu-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .spicy-indicator,
    .veggie-badge,
    .chef-special,
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .delivery-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .delivery-service-card {
        padding: 1.8rem 1.2rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .service-name {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .service-phone {
        font-size: 1rem;
    }

    .order-info-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
    }

    .info-content h4 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.95rem;
    }

    .payment-methods-row {
        gap: 1.5rem;
    }

    .payment-icon {
        width: 70px;
        height: 70px;
    }

    .payment-label {
        font-size: 0.85rem;
    }

    .payment-info-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .footer-logo h3 {
        font-size: 1.6rem;
    }

    .footer-column-title {
        font-size: 1.1rem;
    }

    .footer-description,
    .footer-contact-item,
    .footer-hours-item,
    .company-detail {
        font-size: 0.85rem;
    }

    .copyright,
    .made-by {
        font-size: 0.8rem;
    }
}

/* ===== Location Section Styles ===== */

.location-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--background-gradient-start) 0%, var(--background-gradient-end) 100%);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Location Info Cards */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-light);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.info-card p {
    font-size: 1rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.8;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.12);
    border: 3px solid var(--accent-gold);
    height: fit-content;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ===== Responsive Design for Location ===== */

/* Tablet */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .location-info {
        grid-template-columns: repeat(3, 1fr);
        flex-direction: row;
        gap: 1.5rem;
    }

    .map-container iframe {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .location-section {
        padding: 4rem 1.5rem;
    }

    .location-info {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .location-section {
        padding: 3rem 1rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Full-width Map Container */
.map-container-fullwidth {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.12);
    margin-top: 3rem;
}

.map-container-fullwidth iframe {
    width: 100%;
    height: 600px;
    display: block;
}

/* Responsive for full-width map */
@media (max-width: 768px) {
    .map-container-fullwidth iframe {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .map-container-fullwidth iframe {
        height: 350px;
    }
}
