/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

:root {
    --primary-color: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff6b6b;
    --secondary-color: #ffd60a;
    --accent-color: #06ffa5;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.25);
    --gradient-1: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    --gradient-2: linear-gradient(135deg, #ffd60a 0%, #ffa700 100%);
    --gradient-3: linear-gradient(135deg, #06ffa5 0%, #00d9ff 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Scrolling Lunch Ticker */
.lunch-ticker {
    background: linear-gradient(135deg, #ffd60a 0%, #ffed4e 100%);
    border-bottom: 3px solid var(--primary-color);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lunch-ticker-content {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.ticker-item {
    display: inline-block;
    padding: 0 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 50%, #780000 100%);
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 214, 10, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 255, 165, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 107, 107, 0.2) 0%, transparent 50%);
    animation: pulseGradient 15s ease infinite;
}

@keyframes pulseGradient {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100px 100px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 214, 10, 0.3);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 214, 10, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
}

.about-badges {
    margin-top: 10px;
    text-align: center;
}

.about-badges img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
}

/* Contact Bar */
.contact-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item svg {
    color: var(--secondary-color);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Deals Section */
.deals-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.deals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 90% 80%, rgba(255, 214, 10, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.deal-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.deal-image {
    width: calc(100% + 70px);
    height: 280px;
    margin: -35px -35px 25px -35px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.deal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.1) rotate(1deg);
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-1);
}

.deal-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.deal-card.featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    box-shadow: 0 15px 40px rgba(255, 214, 10, 0.2);
}

.deal-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.deal-card:hover::after {
    opacity: 1;
}

.deal-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-card.featured .deal-badge {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.deal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.deal-price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.deal-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-light);
}

.deal-items {
    list-style: none;
    margin-bottom: 15px;
}

.deal-items li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-light);
    position: relative;
    padding-left: 25px;
}

.deal-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.deal-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Lunch Special Section */
.lunch-special-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffd60a 0%, #ffed4e 100%);
    position: relative;
    overflow: hidden;
}

.lunch-special-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.lunch-special-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 3px solid var(--primary-color);
}

.lunch-time-badge {
    background: var(--gradient-1);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.lunch-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.lunch-price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-shadow: 0 3px 10px rgba(230, 57, 70, 0.1);
}

.lunch-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-light);
}

.lunch-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.lunch-item {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.lunch-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.lunch-note {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

@media (max-width: 480px) {
    .lunch-items {
        grid-template-columns: 1fr;
    }
    
    .lunch-price {
        font-size: 2.5rem;
    }
    
    .lunch-title {
        font-size: 2rem;
    }
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.menu-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 57, 70, 0.1);
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.menu-image {
    width: calc(100% + 60px);
    height: 200px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.menu-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.05);
}

.combo-four-card .menu-image {
    height: 350px;
}

.combo-four-card .menu-image img {
    object-fit: contain;
    width: 100%;
    transform: scale(1.15);
}

.combo-four-card:hover .menu-image img {
    transform: scale(1.2);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.menu-card:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.menu-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.menu-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.menu-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.menu-card ul {
    list-style: none;
}

.menu-card ul li {
    padding: 5px 0;
    color: var(--text-light);
}

/* Other Menu Items */
.other-menu-section {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Delivery & Pickup Specials Sections */
.delivery-specials-section {
    padding: 80px 0;
    background: var(--white);
}

.pickup-specials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.specials-category {
    margin-bottom: 50px;
}

.specials-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.special-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
    text-align: center;
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.special-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.special-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.special-price span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-light);
}

.special-card ul {
    list-style: none;
    text-align: left;
}

.special-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.special-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.featured-pickup {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.featured-pickup ul {
    text-align: center;
}

.featured-pickup ul li {
    padding-left: 0;
}

.featured-pickup ul li::before {
    display: none;
}

.featured-pickup:hover {
    box-shadow: 0 12px 30px rgba(255, 214, 10, 0.25);
}

/* Other Menu Items */.menu-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.menu-item-image {
    width: calc(100% + 60px);
    height: 200px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.menu-item-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    transform: scale(0.9);
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(0.97) rotate(0.5deg);
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.menu-description {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.size-pricing {
    list-style: none;
}

.size-pricing li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
}

.size-pricing li span:first-child {
    font-weight: 600;
}

.size-pricing li span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Specialty Pizza Section */
.specialty-pizza-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.price-option {
    background: var(--gradient-1);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.specialty-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
    border-left-color: var(--secondary-color);
}

.specialty-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.specialty-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Chicken Wing Menu Section */
.wing-menu-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.wing-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.wing-deal-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
}

.wing-deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

.wing-count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.wing-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.wing-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-light);
}

.wing-deal-card ul {
    list-style: none;
}

.wing-deal-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.featured-wing {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

/* Mega Deal Section */
.mega-deal-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.mega-deal-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.mega-deal-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 1;
}

.mega-badge {
    background: var(--gradient-2);
    color: var(--text-dark);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 214, 10, 0.4);
}

.mega-deal-card h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.mega-price {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.mega-price span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-light);
}

.mega-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.mega-item {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Side Orders Section */
.side-orders-section {
    padding: 80px 0;
    background: var(--white);
}

.sides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.side-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.side-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.15);
}

.side-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.side-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.extra-toppings-note {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-top: 40px;
}

.extra-toppings-note p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.extra-toppings-note strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Toppings Section */
.toppings-section {
    padding: 80px 0;
    background: var(--white);
}

.toppings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.topping-category {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.topping-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.topping-category ul {
    list-style: none;
}

.topping-category ul li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.topping-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.topping-category ul li .note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.detail-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.detail-box p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.detail-box a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-box a:hover {
    color: var(--primary-color);
}

.google-link-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    color: var(--white) !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.3);
}

.google-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.5);
    color: var(--white) !important;
}

.google-button svg {
    width: 24px;
    height: 24px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-light);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 150px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .lunch-ticker {
        top: 76px;
    }

    .ticker-item {
        font-size: 0.9rem;
        padding: 0 30px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .specials-grid {
        grid-template-columns: 1fr;
    }

    .menu-row {
        flex-direction: column;
    }

    .pricing-options {
        flex-direction: column;
        gap: 15px;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .wing-deals-grid {
        grid-template-columns: 1fr;
    }

    .mega-deal-card {
        padding: 30px 20px;
    }

    .mega-items {
        grid-template-columns: 1fr;
    }

    .sides-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .toppings-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .logo img {
        height: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .deal-image img,
    .menu-image img {
        height: 220px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .lunch-special-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .deal-price,
    .menu-price,
    .special-price {
        font-size: 1.8rem;
    }

    .deal-card,
    .menu-card,
    .special-card {
        padding: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo img {
        height: 60px;
    }

    .nav-wrapper {
        padding: 8px 0;
    }

    .container {
        padding: 0 15px;
    }

    .contact-bar {
        padding: 15px 0;
    }

    .contact-item svg {
        width: 18px;
        height: 18px;
    }

    .deal-image {
        height: 200px;
    }

    .deal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .combo-four-card .menu-image {
        height: 200px;
    }

    .combo-four-card .menu-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
    }

    .menu-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .price-option {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .wing-count {
        font-size: 1.5rem;
    }

    .wing-price {
        font-size: 2rem;
    }

    .mega-badge {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .mega-deal-card h2 {
        font-size: 1.8rem;
    }

    .mega-price {
        font-size: 3rem;
    }

    .side-item {
        padding: 15px;
    }

    .side-item h4 {
        font-size: 0.9rem;
    }

    .side-price {
        font-size: 1.1rem;
    }

    .topping-category h3 {
        font-size: 1.2rem;
    }

    .topping-category ul li {
        font-size: 0.9rem;
    }

    .detail-box h3 {
        font-size: 1.1rem;
    }

    .detail-box p {
        font-size: 0.9rem;
    }

    .lunch-time-badge {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .lunch-title {
        font-size: 1.8rem;
    }

    .lunch-price {
        font-size: 2.5rem;
    }

    .lunch-item {
        font-size: 0.95rem;
        padding: 12px;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .special-card h4 {
        font-size: 1.1rem;
    }

    .menu-item-card {
        padding: 20px;
    }

    .specialty-card h3 {
        font-size: 1.1rem;
    }

    .specialty-card p {
        font-size: 0.85rem;
