:root {
    --primary-red: #ff0a35;
    --dark-red: #b80028;
    --accent-red: #ff2d56;
    --bg-black: #0a0a0a;
    --box-bg: #141414;
    --text-white: #f5f5f5;
    --text-gray: #c0c0c0;
    --shadow-primary: rgba(255, 10, 53, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.7);
}

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

body {
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 50%, #0a0a0a 100%);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

.social-topbar {
    position: relative;
    width: max-content;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin: 0.75rem auto 0;
    background: transparent;
    z-index: 100;
}

.social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-red), var(--dark-red));
    transform: translate(-50%, -50%);
    transition:
        width 0.4s ease,
        height 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px var(--shadow-primary);
    border-color: var(--primary-red);
}

.social-topbar svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.social-link:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(255, 10, 53, 0.5));
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.8),
        0 5px 20px var(--shadow-primary);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(
            90deg,
            transparent,
            var(--primary-red),
            var(--accent-red),
            var(--primary-red),
            transparent
        )
        1;
}

.background-tiles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.tile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 35s infinite;
    filter: brightness(0.85) contrast(1.1) saturate(1.2);
}

.tile:nth-child(1) {
    animation-delay: 0s;
}
.tile:nth-child(2) {
    animation-delay: 5s;
}
.tile:nth-child(3) {
    animation-delay: 10s;
}
.tile:nth-child(4) {
    animation-delay: 15s;
}
.tile:nth-child(5) {
    animation-delay: 20s;
}
.tile:nth-child(6) {
    animation-delay: 25s;
}
.tile:nth-child(7) {
    animation-delay: 30s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    3% {
        opacity: 1;
    }
    14% {
        opacity: 1;
    }
    17% {
        opacity: 0;
        transform: scale(1.08);
    }
    100% {
        opacity: 0;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(10, 10, 10, 0.75),
        rgba(0, 0, 0, 0.9)
    );
    z-index: -1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    z-index: 10;
    transform: translateY(0);
    opacity: 1;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 30px rgba(255, 10, 53, 0.8))
        drop-shadow(0 0 60px rgba(255, 10, 53, 0.4))
        drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

h1 {
    font-family: "Oswald", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 8px;
    background: linear-gradient(
        135deg,
        #fff 0%,
        var(--primary-red) 50%,
        var(--accent-red) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    text-shadow: none;
    margin: 0;
    animation: gradientShift 4s ease infinite;
    position: relative;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

h1::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow:
        0 0 20px var(--primary-red),
        0 0 40px var(--primary-red),
        0 0 60px rgba(255, 10, 53, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-white);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -0.5rem;
    font-weight: 300;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 10, 53, 0.3);
    animation: subtitleGlow 3s ease-in-out infinite;
}

@keyframes subtitleGlow {
    0%,
    100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
        text-shadow:
            0 2px 10px rgba(0, 0, 0, 0.8),
            0 0 30px rgba(255, 10, 53, 0.6);
    }
}

/* Main Content Structure */
main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content-section {
    padding: 5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-red),
        transparent
    );
    transform: translateX(-50%);
}

.container {
    max-width: 1100px;
    text-align: center;
    width: 100%;
}

h2 {
    font-family: "Oswald", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    text-shadow: none;
}

h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-red),
        var(--accent-red),
        transparent
    );
    margin: 0.75rem auto 0;
    box-shadow: 0 0 10px var(--shadow-primary);
    border-radius: 2px;
}

h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red));
    transform: translateY(-50%);
}

/* About Section */
.about-section {
    background: radial-gradient(
        ellipse at center,
        rgba(255, 10, 53, 0.03),
        transparent
    );
}

.about-section p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    position: relative;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
}

.feature-box {
    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.95),
        rgba(10, 10, 10, 0.95)
    );
    border: 2px solid rgba(255, 10, 53, 0.15);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    width: 340px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.feature-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 10, 53, 0.1),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(255, 10, 53, 0.25),
        0 0 40px rgba(255, 10, 53, 0.1);
    border-color: var(--primary-red);
    background: linear-gradient(
        135deg,
        rgba(25, 25, 25, 1),
        rgba(15, 15, 15, 1)
    );
}

.icon-wrapper {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(255, 10, 53, 0.3));
    transition: all 0.4s ease;
}

.feature-box:hover .icon-wrapper {
    transform: scale(1.15) rotateY(180deg);
    filter: drop-shadow(0 6px 20px rgba(255, 10, 53, 0.6));
}

h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Feature Box Content Switching */
.feature-content-front,
.feature-content-back {
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.feature-content-back {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.feature-box.active .feature-content-front {
    display: none;
}

.feature-box.active .feature-content-back {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInContent 0.6s ease;
}

.feature-box.active {
    background: linear-gradient(
        135deg,
        rgba(255, 10, 53, 0.1),
        rgba(10, 10, 10, 0.95)
    );
    border-color: var(--accent-red);
}

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

/* Promotions Section */
.promotions-section {
    background: radial-gradient(
        ellipse at top,
        rgba(255, 10, 53, 0.05),
        transparent 70%
    );
    position: relative;
}

.promotions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.promotion-box {
    background: linear-gradient(
        135deg,
        rgba(255, 10, 53, 0.08),
        rgba(0, 0, 0, 0.9)
    );
    border: 2px dashed var(--primary-red);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.promotion-box::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        var(--primary-red),
        var(--accent-red),
        var(--primary-red)
    );
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.promotion-box:hover::before {
    opacity: 0.3;
}

.promotion-box:hover {
    transform: scale(1.05) rotate(-1deg);
    border-style: solid;
    border-color: var(--accent-red);
    box-shadow:
        0 20px 60px rgba(255, 10, 53, 0.3),
        0 0 40px rgba(255, 10, 53, 0.2);
}

.promo-time {
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-highlight {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 10, 53, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 10, 53, 0.5);
    }
    50% {
        text-shadow:
            0 0 30px rgba(255, 10, 53, 0.8),
            0 0 40px rgba(255, 10, 53, 0.4);
    }
}

.menu-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
}

.menu-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
}

.menu-trigger::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 10, 53, 0.05);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-trigger:hover::before {
    opacity: 1;
}

.menu-trigger:hover .menu-header,
.menu-trigger:hover .menu-hint {
    color: var(--primary-red) !important;
    transform: translateY(-2px);
}

.menu-header {
    pointer-events: none;
    transition: all 0.3s ease;
}

.menu-hint {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.menu-image-wrapper {
    margin-bottom: 2rem;
}

.menu-zoom-controls {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.menu-zoom-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.menu-zoom-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-zoom-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary-red);
    background: linear-gradient(135deg, var(--box-bg), #0a0a0a);
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.menu-zoom-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 10, 53, 0.4);
}

.menu-zoom-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #333;
    color: #555;
}

.menu-image-container {
    overflow: auto;
    max-height: 80vh;
    padding: 1rem 0;
    border-radius: 12px;
}

.menu-image {
    display: block;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 10, 53, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 10, 53, 0.1);
}

.menu-image:hover {
    border-color: var(--primary-red);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 10, 53, 0.2);
}

.menu-text-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition:
        max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s ease,
        transform 0.5s ease;
}

.menu-section.open .menu-text-wrapper {
    max-height: 2500px;
    opacity: 1;
    transform: translateY(0);
}

.menu-text-block {
    text-align: left;
    margin-bottom: 1.5rem;
}

.menu-text-block h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.menu-text-block p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Menu Preview */
.menu-preview {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.menu-item {
    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.9),
        rgba(10, 10, 10, 0.9)
    );
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-red);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

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

.menu-item:hover {
    background: linear-gradient(
        135deg,
        rgba(25, 25, 25, 1),
        rgba(15, 15, 15, 1)
    );
    transform: translateX(5px);
    box-shadow:
        0 15px 50px rgba(255, 10, 53, 0.2),
        -5px 0 20px rgba(255, 10, 53, 0.15);
    border-left-width: 6px;
}

/* Menu Item Content Switching */
.menu-content-front,
.menu-content-back {
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.menu-content-back {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.menu-item.active .menu-content-front {
    display: none;
}

.menu-item.active .menu-content-back {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInContent 0.6s ease;
}

.menu-item.active {
    background: linear-gradient(
        135deg,
        rgba(255, 10, 53, 0.12),
        rgba(10, 10, 10, 0.95)
    );
    border-left-color: var(--accent-red);
}

.menu-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 8px rgba(255, 10, 53, 0.3));
    transition: transform 0.3s ease;
}

.menu-item:hover span {
    transform: scale(1.1);
}

.menu-item h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-item p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Reservations & Contact */
.reservations-section {
    background: radial-gradient(
        ellipse at center,
        rgba(255, 10, 53, 0.06),
        transparent 70%
    );
    padding-bottom: 6rem;
    position: relative;
}

.reservations-section h2 {
    margin-bottom: 1.5rem;
}

.reservations-section > p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s ease,
        height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn:hover span {
    transform: scale(1.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: white;
    box-shadow: 0 8px 25px rgba(255, 10, 53, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--primary-red));
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 10, 53, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid var(--primary-red);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: white;
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 40px rgba(255, 10, 53, 0.4);
}

/* Map Section */
.map-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
}

.map-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid rgba(255, 10, 53, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 10, 53, 0.15);
    transition: all 0.4s ease;
}

.map-wrapper:hover {
    border-color: var(--primary-red);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(255, 10, 53, 0.25);
    transform: translateY(-3px);
}

.map-section p {
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    color: var(--text-gray);
    text-align: center;
    padding: 3rem 2rem;
    font-size: 1rem;
    border-top: 2px solid rgba(255, 10, 53, 0.2);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-red),
        transparent
    );
    transform: translateX(-50%);
}

footer p {
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .logo {
        width: 90px;
        height: 90px;
    }

    .hero {
        height: 50vh;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    h2::before {
        display: none;
    }

    .content-section {
        padding: 3rem 1rem;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .feature-box {
        width: 100%;
        max-width: 400px;
    }

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

    .promotions-grid {
        gap: 1.5rem;
    }

    .promotion-box {
        width: 100%;
        max-width: 350px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .social-topbar {
        gap: 0.75rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .menu-zoom-controls {
        gap: 1.5rem;
    }

    .menu-zoom-btn {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 1.75rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .feature-box {
        padding: 2rem 1.5rem;
    }

    .icon-wrapper {
        font-size: 3rem;
    }
}
