:root {
    --primary: #8B2635;
    --primary-dark: #6B1D2A;
    --primary-light: #A53344;
    --secondary: #2C3E50;
    --accent: #FFB400;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --dark: #1A202C;
    --text: #2D3748;
    --text-light: #718096;
    --text-muted: #A0AEC0;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

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

/* Utilities */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white; /* Changed to white for hero section */
    padding: 1rem 2rem;
    border: 2px solid white; /* Changed border to white */
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary); /* Text becomes primary color on hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    color: white !important; /* Ensure it stays white on hover */
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.75rem 0;
    position: relative;
    z-index: 102;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

.banner-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Navigation */
.main-nav {
    background: white;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: relative;
    z-index: 101;
    transition: var(--transition);
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section - Split Layout */
.hero {
    position: relative; /* Needed for overlay positioning */
    min-height: 80vh;
    /* background: url(--light); */
    display: flex;
    align-items: center;
    padding: 4rem 0 2rem;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2; /* Keep text above overlay */
}


.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-left {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 0.9;
    margin-bottom: 0.5rem;
}

.hero-sub {
    display: block;
    font-size: 2rem;
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-stats-inline {
    margin-bottom: 3rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.hero-right {
    position: relative;
    max-height: 500px;
}

.hero-image-stack {
    position: relative;
    height: auto;
}

.hero-image.main-image {
     position:relative;
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  min-height:420px;
  border-radius:var(--border-radius-lg);
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,.15);
}

@media (min-width:1024px){
  .hero-image.main-image{aspect-ratio:4/3; min-height:520px}
}

.hero-image img {
    width: 100%;
    height: auto; /* prevent cropping */
    object-fit: contain; /* keep full image in frame */
    display: block;
}

.hero-slideshow {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    position:absolute;
  inset:0;
  overflow:hidden;
  border-radius:inherit;
}

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


.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.quality-card {
    top: 10%;
    right: -10%;
    background: linear-gradient(135deg, var(--accent), #FFD700);
    color: var(--dark);
}

.time-card {
    bottom: 15%;
    left: -15%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.floating-card i {
    font-size: 1.5rem;
}

.floating-card div strong {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
}

.floating-card div span {
    font-size: 0.8rem;
    opacity: 0.9;
}

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

/* Quick Features Bar */
.quick-features {
    background: var(--secondary);
    color: white;
    padding: 2rem 0;
}

.features-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Menu Section */
.menu {
    padding: 4rem 0;
    background: var(--light);
}

.menu-warnings {
    margin-top: 1rem;
    text-align: center;
}

.warning {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0.25rem 0;
}

.menu-container {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.menu-tabs {
    display: flex;
    background: var(--secondary);
    padding: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.menu-tab {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary);
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.menu-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.menu-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow);
}

.menu-details {
    padding: 1.5rem;
}

.menu-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.menu-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.size-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-btn {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.size-btn:hover,
.size-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

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

.about-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    /* overflow: hidden; */
    margin-bottom: 2rem;
}

.about-image-container img {
    border-radius: 15px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.about-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    box-shadow: var(--shadow);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.exp-item {
    background: var(--light);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border);
}

.exp-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    padding-bottom: 5px;
}

.exp-item span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content-new {
    padding-top: 2rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-content-new h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-text-blocks {
    margin-bottom: 2rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text-blocks p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature span {
    font-weight: 500;
    color: var(--text);
}

/* Order Online Section */
.order-online {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light), #F1F5F9);
    position: relative;
    overflow: hidden;
}

.order-online::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.order-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.order-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.order-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.order-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.order-option {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.order-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.option-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.option-info p {
    color: var(--text-light);
    margin: 0;
}

.order-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border: 2px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.order-btn.primary {
    background: linear-gradient(135deg, var(--dark), var(--secondary));
    color: white;
    border-color: var(--border);
}

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

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.order-btn.primary:hover {
    background: linear-gradient(135deg, black, black);
}

.order-btn:not(.primary):hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.order-btn i {
    font-size: 1.5rem;
    color: inherit;
}

.order-btn div strong {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.order-btn div span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--light);
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-row i {
    width: 20px;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.detail-row div strong {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.detail-row div span {
    color: var(--text-light);
    line-height: 1.4;
}

.map-section {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.map-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.map-link:hover {
    background: var(--primary-dark);
}

.catering-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-height: 500px;
}

.catering-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.catering-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.catering-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.catering-header p {
    color: var(--text-light);
    margin: 0;
}

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

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    margin: 1rem 0;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.link-group ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 1;
    font-weight: 500;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-right {
        height: 250px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .order-buttons {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Menu */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 400px;
        padding: 2rem 0;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .banner-content {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .features-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .warning {
        font-size: 0.5rem;
    }

.section-header p {
            font-size: 0.9rem;

}

    .order-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-main {
        font-size: 3.5rem;
    }
    
    .hero-sub {
        font-size: 1.5rem;
    }
    
    .about-content-new h2 {
        font-size: 2.2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 70vh;
    }
    
    .hero-split {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .menu {
        padding: 2rem 0;
    }
    
    .about {
        padding: 2rem 0;
    }
    
    .order-online {
        padding: 2rem 0;
    }
    
    .contact {
        padding: 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .features-horizontal {
        grid-template-columns: 1fr;
    }
    
    .hero-main {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-sub {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-split {
        gap: 1.5rem;
    }
    
    .hero-left {
        padding: 1rem 0;
    }
}

/* Add these CSS rules to fix the mobile issues */

/* Fix phone number styling - remove blue color and underline */
a[href^="tel:"] {
    /* color: inherit !important; */
    text-decoration: none !important;
}

/* Banner content mobile fix - keep on one line */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: row !important;
        justify-content: space-between;
        gap: 1rem !important;
    }
    
    .banner-info {
        font-size: 0.75rem; /* Slightly smaller text to fit better */
    }
}

/* Hero section mobile fixes */
@media (max-width: 768px) {
    /* Fix hero slideshow on mobile */
    .hero-image.main-image {
        aspect-ratio: 16/9 !important;
        min-height: 250px !important;
        max-height: 300px;
    }
    
    /* Reduce space underneath hero image */
    .hero {
        padding-bottom: 1rem !important;
    }
    
    .hero-split {
        gap: 1rem !important;
    }
    
    /* Hide the call button under "View Full Menu" on mobile */
    .hero-actions .btn-secondary {
        display: none !important;
    }
    
   
    
   
}

/* Additional mobile refinements */
@media (max-width: 480px) {
    .banner-content {
        gap: 0.5rem !important;
    }
    
    .banner-info {
        font-size: 0.7rem;
    }
    
    .banner-info span {
        white-space: nowrap;
    }
    
   
    
    .hero-image.main-image {
        min-height: 200px !important;
    }
}


.specials-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .specials-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Popup Container */
        .specials-popup {
            background: white;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9) translateY(20px);
            transition: var(--transition);
        }

        .specials-overlay.active .specials-popup {
            transform: scale(1) translateY(0);
        }

        /* Popup Header */
        .popup-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 2rem;
            border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
            position: relative;
            text-align: center;
        }

        .popup-header h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .popup-header .day-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius-lg);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .popup-header .subtitle {
            opacity: 0.9;
            font-size: 1rem;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        /* Popup Content */
        .popup-content {
            padding: 2rem;
        }

        .specials-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .special-item {
            background: var(--light);
            border: 2px solid var(--border);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .special-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
        }

        .special-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .special-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            gap: 1rem;
        }

        .special-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1.3;
            flex: 1;
        }

        .special-price {
            background: linear-gradient(135deg, var(--accent), #FFD700);
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius-lg);
            font-weight: 800;
            font-size: 1.1rem;
            white-space: nowrap;
            box-shadow: var(--shadow-sm);
            display: flex;
            justify-content: center;
        }

        .special-description {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.4;
            margin-top: 0.5rem;
        }

        /* Call to Action */
        .popup-cta {
            background: var(--light);
            padding: 1.5rem 2rem;
            border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .cta-text {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .order-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .order-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        }

        /* Empty State */
        .no-specials {
            text-align: center;
            padding: 2rem;
            color: var(--text-light);
        }

        .no-specials i {
            font-size: 3rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .specials-overlay {
                padding: 0.5rem;
            }

            .popup-header {
                padding: 1.5rem;
            }

            .popup-header h2 {
                font-size: 1.5rem;
            }

            .popup-content {
                padding: 1.5rem;
            }

            .special-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .special-price {
                align-self: flex-end;
                display: flex;
            }

            .popup-cta {
                padding: 1.5rem;
            }

            .order-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .specials-popup {
                margin: 0.5rem;
                max-height: 95vh;
            }

            .popup-header h2 {
                font-size: 1.3rem;
            }

            .special-item {
                padding: 1rem;
            }

            .special-name {
                font-size: 1.1rem;
            }
        }
