/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette */
    --brand-blue: #023b80;
    --brand-yellow: #ffcd07;
    --brand-red: #e93f1e;

    /* Semantic tokens */
    --primary-color: var(--brand-blue);
    --secondary-color: #2C2C2C;
    --accent-color: var(--brand-yellow);
    --danger-color: var(--brand-red);

    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;

    /* Neutrals to keep the theme breathable */
    --neutral-bg: #f5f7fa;     /* light section backgrounds */
    --neutral-surface: #ffffff; /* cards/surfaces */
    --neutral-text: #1a1a1a;  /* default text */
    
    /* Restaurant-friendly eye-comfort colors - Warm, inviting palette */
    --bg-cream: #F5F5DC;        /* Cream - for contact cards */
    --bg-warm-white: #FFFEF7;   /* Warm white - for about/contact sections */
    --bg-sand: #F4E8D8;         /* Sand - for menu section */
    --bg-terracotta: #E8D5C4;   /* Terracotta - accent option */
    --bg-sage: #E8EDE8;         /* Sage green - for reviews section */
    --bg-warm-gray: #F7F5F3;    /* Warm gray - for contact section */
    --bg-soft-beige: #FAF8F3;   /* Soft beige - for services section */
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.smoke-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.smoke {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: smokeFloat 15s infinite ease-in-out;
}

.smoke-1 {
    bottom: 10%;
    left: 10%;
    animation-delay: 0s;
}

.smoke-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
    width: 150px;
    height: 150px;
}

.smoke-3 {
    bottom: 15%;
    left: 50%;
    animation-delay: 6s;
    width: 180px;
    height: 180px;
}

.smoke-4 {
    bottom: 25%;
    right: 30%;
    animation-delay: 9s;
    width: 120px;
    height: 120px;
}

@keyframes smokeFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-60px) translateX(-15px) scale(1.1);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-40px) translateX(25px) scale(1.3);
        opacity: 0.6;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2,59,128,0.6);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--danger-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,205,7,0.35);
}

/* Brand button system (for consistent CTA styling) */
.btn-brand-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    background: var(--danger-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 10px 24px rgba(233,63,30,0.18);
}
.btn-brand-primary:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 14px 30px rgba(233,63,30,0.22);
}

.btn-brand-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 10px 24px rgba(2,59,128,0.12);
}
.btn-brand-secondary:hover {
    transform: translateY(-2px);
    background: #ffd600;
    box-shadow: 0 14px 30px rgba(2,59,128,0.16);
}

.btn-brand-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.85);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-brand-ghost:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: rgba(255,205,7,0.9);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* About Section / Contact Us Section */
.about,
.contact-us-section {
    background: var(--bg-warm-white);
    padding: 5rem 0;
}

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

/* Contact Hero Card Styles */
.contact-hero-card {
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(184, 134, 11, 0.15);
}

.contact-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.contact-hero-text {
    flex: 1;
}

.contact-hero-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.contact-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-hero-image {
    flex: 0 0 40%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.contact-hero-image:hover img {
    transform: scale(1.1);
}

.contact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-overlay-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-overlay-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Language Content Blocks */
.lang-content {
    transition: opacity 0.3s ease;
}

.lang-content[data-lang="en"] {
    display: block;
}

.lang-content[data-lang="cs"] {
    display: none;
}

html[lang="cs"] .lang-content[data-lang="cs"] {
    display: block;
}

html[lang="cs"] .lang-content[data-lang="en"] {
    display: none;
}

html[lang="en"] .lang-content[data-lang="en"] {
    display: block;
}

html[lang="en"] .lang-content[data-lang="cs"] {
    display: none;
}

/* Menu Section */
.menu {
    background: var(--bg-sand);
}

.menu-carousel-wrapper {
    overflow: hidden;
    margin: 3rem 0;
    position: relative;
}

.menu-carousel {
    display: flex;
    gap: 2rem;
    animation: scrollMenu 40s linear infinite;
    width: fit-content;
}

.menu-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollMenu {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.menu-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInScale 0.6s ease;
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.menu-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.menu-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu-card-content .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.menu-button-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.btn-menu {
    padding: 1rem 3rem;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Services Section */
.services {
    background: var(--bg-soft-beige);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    transform: rotate(360deg) scale(1.1);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    background: var(--bg-sage);
    padding: 5rem 0;
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
}

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

.review-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.review-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Reservation Form in Services */
.reservation-form-wrapper {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--primary-color);
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.reservation-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    background: var(--bg-warm-gray);
}

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

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

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

.contact-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--text-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-text {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 500px;
}

.footer-credits {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.credits-content {
    text-align: right;
}

.credits-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.author-link:hover {
    color: var(--primary-color);
    background: rgba(184, 134, 11, 0.1);
    transform: translateX(-5px);
}

.linkedin-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.author-link:hover .linkedin-icon {
    fill: var(--accent-color);
    transform: scale(1.2) rotate(5deg);
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Scroll Animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-credits {
        justify-content: center;
    }

    .credits-content {
        text-align: center;
    }

    .contact-hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-hero-image {
        flex: none;
        width: 100%;
    }

    .contact-highlights {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .menu-card {
        flex: 0 0 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 568px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .reservation-form {
        padding: 2rem 1.5rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .menu-card {
        flex: 0 0 250px;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu.active {
        right: 0;
    }

    .contact-us-section {
        padding: 50px 0;
    }

    .contact-hero-card {
        padding: 2rem 1.5rem;
    }

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

/* About Us Page Styles - Refined */

/* About Hero */
.about-hero {
    height: 50vh;
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.culture-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

.culture-text {
    flex: 1;
}

.culture-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.culture-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Integrated Contact Section */
.integrated-contact {
    padding: 5rem 0;
    background: var(--bg-warm-white);
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateX(5px);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card p,
.info-card span {
    color: var(--text-light);
    font-size: 1.05rem;
}

.highlight-text {
    font-weight: 600;
    color: var(--text-dark) !important;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.5rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.map-wrapper {
    height: 400px;
    background: var(--bg-warm-gray);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.map-placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    gap: 1rem;
}

.map-placeholder-content i {
    font-size: 3rem;
}

.map-actions {
    margin-top: 1.5rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .culture-grid {
        flex-direction: column;
    }

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

    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 568px) {
    .about-hero .hero-title {
        font-size: 2.5rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}