/*
 * Plenty F Koe To Go - Food Delivery & Takeout Website
 * Modern orange and teal color scheme with food-inspired design elements
 */

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #FF6B35;       /* Vibrant Orange */
    --primary-light: #FF9E64; /* Light Orange */
    --secondary: #00A8A8;     /* Teal */
    --secondary-light: #48D1CC; /* Light Teal */
    --accent: #FFD54F;        /* Accent Gold */
    --dark: #333333;          /* Dark Gray */
    --light: #FFFFFF;         /* White */
    --light-gray: #F8F8F8;    /* Light Gray */
    --medium-gray: #E0E0E0;   /* Medium Gray */
    --text: #333333;          /* Main Text */
    --text-light: #777777;    /* Light Text */
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Source Sans Pro', sans-serif;
    
    /* Spacing */
    --section-spacing: 100px 0;
    --container-padding: 0 15px;
    
    /* Other Variables */
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --border: 1px solid var(--medium-gray);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0;
}

h1 span {
    color: var(--primary);
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h2 span {
    color: var(--primary);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-header h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

section {
    padding: var(--section-spacing);
}

.highlight {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.primary-btn {
    background-color: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.secondary-btn {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.secondary-btn:hover {
    background-color: var(--secondary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-nav {
    background-color: var(--primary);
    color: var(--light);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header and Navigation */
header {
    background-color: var(--light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    margin-left: 15px;
    font-weight: 700;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 600;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(0, 168, 168, 0.9)), 
                url('https://via.placeholder.com/1920x1080?text=Food+Background') center/cover no-repeat;
    color: var(--light);
    margin-top: 70px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.hero h2 span {
    color: var(--accent);
}

.subtitle {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--light);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    font-size: 1rem;
}

/* About Section */
.about {
    background-color: var(--light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    position: relative;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat {
    background-color: var(--light);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid var(--primary);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Menu Section */
.menu {
    background-color: var(--light-gray);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 168, 168, 0.03) 0%, transparent 20%);
    z-index: 0;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.menu-tab {
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid var(--medium-gray);
    background-color: var(--light);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.menu-item {
    background-color: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
}

.menu-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.menu-item-info {
    flex: 1;
}

.menu-item-info h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.menu-item-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.menu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-tags span {
    background-color: rgba(0, 168, 168, 0.1);
    color: var(--secondary);
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.menu-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--heading-font);
    margin-left: 20px;
}

.menu-cta {
    text-align: center;
    margin-top: 40px;
}

/* Services Section */
.services {
    background-color: var(--light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 90% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 10% 80%, rgba(0, 168, 168, 0.03) 0%, transparent 20%);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid var(--secondary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.service-link:hover::after {
    width: 100%;
}

/* Locations Section */
.locations {
    background-color: var(--light-gray);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.location-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.location-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--primary) transparent transparent;
}

.location-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.location-address {
    font-weight: 500;
    margin-bottom: 10px;
}

.location-phone {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

.location-hours {
    padding: 15px 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: 20px;
}

.location-hours p {
    margin-bottom: 5px;
}

.location-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.location-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.location-link:hover::after {
    width: 100%;
}

/* Resources Section */
.resources {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23FFFFFF" opacity="0.1"/></svg>');
    background-repeat: repeat;
    opacity: 0.2;
    z-index: 0;
}

.resources .section-header h2,
.resources .section-header p {
    color: var(--light);
}

.resources .section-subtitle {
    color: var(--accent);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.resource-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-column a {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--light);
    text-decoration: none;
    border-left: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.resource-column a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.resource-column a:hover {
    color: var(--light);
    transform: translateY(-3px) translateX(3px);
    border-left-color: var(--accent);
}

.resource-column a:hover::before {
    opacity: 0.1;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to right, var(--secondary-light) 0%, var(--secondary) 100%);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><path d="M10 8L15 23L20 8" stroke="%23FFFFFF" stroke-width="2" fill="none" opacity="0.3"/></svg>');
    background-repeat: repeat;
    opacity: 0.2;
    z-index: 0;
}

.testimonials .section-header h2,
.testimonials .section-subtitle {
    color: var(--light);
}

.testimonials .section-header p {
    color: var(--light);
    opacity: 0.9;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial {
    flex: 1;
    min-width: 300px;
}

.testimonial-content {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: 10px;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.testimonial-author h4 {
    color: var(--primary);
    margin-bottom: 0;
}

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

/* Order Section */
.order {
    background-color: var(--light);
}

.order-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.order-option {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid var(--primary);
}

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

.order-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
}

.order-option h3 {
    margin-bottom: 15px;
}

.order-option p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.delivery-info {
    background-color: var(--light-gray);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 40px;
}

.delivery-info h3 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary);
}

.delivery-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.delivery-detail {
    text-align: center;
}

.delivery-detail h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.delivery-detail p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0L60 30L30 60L0 30Z" fill="%23FFFFFF" opacity="0.05"/></svg>');
    background-repeat: repeat;
    z-index: 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    color: var(--light);
    margin-bottom: 20px;
}

.newsletter h2 span {
    color: var(--accent);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: var(--body-font);
    border-radius: 50px 0 0 50px;
}

.newsletter-form button {
    padding: 0 30px;
    border: none;
    border-radius: 0 50px 50px 0;
    background-color: var(--secondary);
    color: var(--light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--dark);
}

.privacy-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo p {
    margin: 15px 0 0;
    color: var(--light);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo p span {
    color: var(--primary);
}

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

.footer-column h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.social-mini {
    display: flex;
    gap: 15px;
}

.social-mini a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-mini a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .about-stats {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        height: auto;
        padding: 100px 0 50px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        height: 24px;
        width: 30px;
        position: relative;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        height: 2px;
        width: 30px;
        background-color: var(--primary);
        position: absolute;
        transition: var(--transition);
    }
    
    .nav-toggle-label span {
        top: 11px;
    }
    
    .nav-toggle-label span::before {
        content: '';
        top: -8px;
    }
    
    .nav-toggle-label span::after {
        content: '';
        top: 8px;
    }
    
    .nav-toggle:checked + .nav-toggle-label span {
        background-color: transparent;
    }
    
    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--light);
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle:checked ~ nav {
        height: auto;
        padding: 20px 0;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius);
    }
    
    .newsletter-form input {
        border-radius: var(--radius) var(--radius) 0 0;
        text-align: center;
    }
    
    .newsletter-form button {
        border-radius: 0 0 var(--radius) var(--radius);
        width: 100%;
        padding: 15px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .location-card {
        padding: 20px;
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-tab {
        width: 100%;
        text-align: center;
    }
    
    .menu-item-content {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-item-price {
        margin: 10px 0 0;
    }
    
    .delivery-details {
        grid-template-columns: 1fr;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
