/* Base styles for the document */
:root {
    --primary-orange: #FF6B35;
    --orange-hover: #E65C2E;
    --primary-purple: #6A0DAD;
    --highlight-yellow: #FFC107;
    --neutral-dark: #222222;
    --neutral-light: #F9F9F9;
    --soft-orange: #FFF3E6;
}

/* ========================
   BODY AND BASE STYLES
======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    color: var(--neutral-dark);
    background-color: var(--neutral-light);
}

/* ========================
   HEADER
======================== */
.header {
    min-height: 90vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/truck-bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* ========================
   NAVBAR
======================== */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2px 10px; /* Reduced padding */
    padding: 20px 4%; /* Added horizontal padding */
    background: rgba(0,0,0,0.2); /* More transparent background */
    backdrop-filter: blur(6px); /* Slight blur for glass effect */
    position: relative;
    z-index: 1000;
}

nav img {
    width: 150px; /* Reduced logo size */
    transition: transform 0.3s ease;
}

nav img:hover {
    transform: scale(1.05);
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 16px;
    position: relative;
    transition: transform 0.3s ease;
}

.nav-links ul li:hover {
    transform: translateY(-2px);
}

.nav-links ul li a {
    color: var(--soft-orange);
    text-decoration: none;
    font-size: 16px;  
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 3px;
    background: var(--primary-orange);
    display: block;
    margin: auto;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.nav-links ul li:hover a {
    color: var(--highlight-yellow);
}

nav .fa {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--soft-orange);
}

/* ========================
   HERO TEXT BOX
======================== */
.text-box {
    width: 90%;
    color: var(--neutral-light);
    position: absolute;
    top: 50%;
    left: 50%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    padding-top: 60px;
}
.text-box h1 {
    font-size: 62px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 30px;
    color: #f1f1f1;
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* ========================
   HERO BUTTON
======================== */
.hero-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: var(--neutral-light);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}
.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--orange-hover), var(--primary-purple));
}

/* ========================
   MEDIA QUERIES 
======================== */

@media (max-width: 768px) {
    nav {
        padding: 15px 4%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .nav-links {
        position: fixed;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(10px);
        height: 100vh;
        width: 250px;
        top: 0;
        right: -250px;
        text-align: left;
        z-index: 1001;
        transition: 0.3s ease;
        padding-top: 60px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links ul li {
        color: var(--soft-orange);
        text-decoration: none;
        font-size: 13px;  /* Reduced font size */
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }
    
    nav .fa {
        display: block;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
    nav .fa-times {
        position: absolute;
        top: 20px;
        left: 20px;
    }
}

/* ========================
   INTRODUCTION PAGE
======================== */
.intro-us {
    width: 100%;
    min-height: 90vh;
    padding: 40px 0;
    background: #cfb491;
}
.intro-container {
    max-width: 1200px;
    margin: auto;
    display: block;
    padding-top: 80px;
}
.intro-content {
    float: left;
    width: 55%;
}
.image-container {
    float: right;
    width: 40%;
}
.image-container img {
    width: 80%;
    max-width: 470px;
    border-radius: 10px;
    border-radius: 10px;
}
.intro-content .title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
}
.intro-content p {
    margin-top: 30px;
    font-weight: 600;
    color: #000000;
    
}
.intro-content .hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px px;
    font-size: 14px;
    background: #a14b00;
    position: relative;
    cursor: pointer;
    margin-top: 30px;
}
.intro-content .hero-btn:hover {
    background: transparent;
    border: 1px solid #f15500;
    color: #f44336;
    transition: 1s;
}

/* ========================
   FEATURES
======================== */
.features {
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}

.feature-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-box {
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.feature-box img {
    width: 100%;
    border-radius: 10px;
}

.feature-box h3 {
    margin: 10px 0;
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.feature-box:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.stars .fa {
    color: #f44336;
}

/* ========================
   FOOOD SPECIALS
======================== */
.food-specials {
    padding: 80px 0;
    background: #f9f9f9;
}

.specials-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.special-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.special-item:hover {
    transform: translateY(-10px);
}

.special-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.special-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f44336;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
}

.special-content {
    padding: 20px;
}

.special-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.special-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.special-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.special-info span {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.special-info span i {
    color: #f44336;
}

.order-btn {
    background: #f44336;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.order-btn:hover {
    background: #d32f2f;
}

/* ========================
   TITLE SECTION
======================== */

.title {
    text-align: center;
    padding: 30px 0;
}

.title h2 {
    font-size: 2.3rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    color: #333;
}

.underline {
    height: 3px;
    width: 60px;
    background: #f44336;
    margin: 10px auto;
}

/* ========================
   TESTIMONIALS
======================== */

.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonial-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.testimonial-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-10px);
}

.customer-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.customer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.customer-details h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.stars {
    color: #f44336;
    margin-bottom: 10px;
}

.testimonial-box p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

/* ========================
   START FOOTER
======================== */
.footer {
    background-color: var(--neutral-dark);
    color: var(--neutral-light);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-purple));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-section h3 {
    color: var(--neutral-light);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-section ul li a:hover {
    color: var(--highlight-yellow);
    transform: translateX(5px);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--neutral-light);
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.2);
}

.social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 6px 15px rgba(106, 13, 173, 0.3);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.contact-info li:hover {
    transform: translateX(5px);
}

.contact-info i {
    color: var(--primary-orange);
    font-size: 18px;
}

.newsletter-form {
    margin-top: 20px;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--neutral-light);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: var(--primary-orange);
    color: var(--neutral-light);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #d32f2f;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
/* ========================
   END FOOTER
======================== */

/* ========================
   SUBHEADER STYLES
======================== */
.sub-header {
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/truck4.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.sub-header h1 {
    position: relative;
    transform: translateY(-50%);
    font-size: 45px;
    margin-top: 100px;
}
.sub-header .underline {
    margin: 20px auto;
}

/* ========================
   SUBHEADER MEDIA QUERIES 3
======================== */
@media (max-width: 768px) {
    .sub-header {
        min-height: 40vh;
        background-position: top;
        padding: 20px 10px;
    }
    .sub-header h1 {
        font-size: 28px;
        margin-top: 50px;
        transform: none;
    }
    .sub-header .underline {
        margin: 10px auto;
    }
}

/* ========================
   ABOUT US PAGE
======================== */
.about-us {
    width: 100%;
    padding: 80px 10%;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}
.about-us .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}
.about-col {
    flex: 1 1 40%;
    min-width: 300px;
}
.about-col img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.about-col img:hover {
    transform: scale(1.02);
}
.about-col h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.about-col p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-col .hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #333;
    border: 2px solid #f44336;
    padding: 12px 34px;
    font-size: 14px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.about-col .hero-btn:hover {
    background: #f44336;
    color: #fff;
}

/* ========================
    VALUES SECTION
======================== */
.values-section {
    margin: 60px 0;
    text-align: center;
}
.values-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 40px;
}
.values-col {
    flex: 1 1 30%;
    min-width: 250px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.values-col:hover {
    transform: translateY(-10px);
}
.values-col h3 {
    color: #f44336;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.values-col p {
    color: #666;
    line-height: 1.6;
}

/* ========================
   TEAM SECTION
======================== */

.team-section {
    margin: 60px 0;
    text-align: center;
}
.team-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 40px;
}
.team-col {
    flex: 1 1 45%;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.team-col:hover {
    transform: translateY(-10px);
}
.team-col img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}
.team-col h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.team-col p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ========================
    TESTIMONIALS SECTION 2
======================== */
.testimonials-section {
    margin: 60px 0;
    text-align: center;
}
.testimonials-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 40px;
}
.testimonial-col {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 20px;
}
.testimonial-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.testimonial-content:hover {
    transform: translateY(-10px);
}
.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-content h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.testimonial-content .fa {
    color: #f44336;
    margin: 0 2px;
}

/* ========================
   START MENU PAGE
======================== */

/* ========================
   PROTEIN SELECTION
======================== */
.protein-selection {
    padding: 80px 0;
    background: var(--soft-orange);
}

.protein-selection .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.protein-selection .title {
    text-align: center;
    margin-bottom: 40px;
}

.protein-selection .title h2 {
    font-size: 2.5em;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.protein-selection .underline {
    width: 100px;
    height: 3px;
    background: var(--primary-orange);
    margin: 0 auto;
}

.protein-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.protein-card {
    background: var(--neutral-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.protein-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.protein-card h3 {
    color: var(--primary-purple);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.protein-card p {
    color: var(--neutral-dark);
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .protein-options {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .protein-selection {
        padding: 40px 0;
    }
}

/* ========================
   MENU ITEMS SECTION
======================== */
.menu-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.menu-section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--soft-orange);
    border-radius: 20px;
}

.menu-section h2 {
    color: var(--primary-purple);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-purple));
    border-radius: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.menu-item {
    background: var(--neutral-light);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover img {
    transform: scale(1.05);
}

.menu-item h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin: 15px;
    font-weight: 600;
}

.menu-item p {
    color: var(--neutral-dark);
    margin: 0 15px 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-item .price {
    display: flex;
    align-items: center;
    color: var(--primary-purple);
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 15px 15px;
    gap: 5px;
}

.menu-item .price::before {
    content: '$';
    font-size: 1rem;
    color: var(--primary-purple);
}

/* ========================
    ORDER BUTTONS
======================== */

.order-buttons {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.order-btn.uber {
    background-color: #000000;
    color: #ffffff;
}

.order-btn.doordash {
    background-color: #ff3008;
    color: #ffffff;
}

.order-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* ========================
   MEDIA QUERIES 2
======================== */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-section h2 {
        font-size: 2rem;
    }
}

/* ========================
   CONTACT PAGE STYLES
======================== */
.contact-section {
    padding: 80px 0;
    background: var(--soft-orange);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-purple));
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box, .contact-form-box {
    background: var(--neutral-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-info-box:hover, .contact-form-box:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.contact-info-box h2, .contact-form-box h2 {
    color: var(--primary-purple);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-orange);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #444;
}

.contact-item p, .contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #e74c3c;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: #e74c3c !important;
    font-weight: 500;
}

/* ========================
   MAP INTEGRATION
======================== */
.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* ========================
   CONTACT FORM STYLES
======================== */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e74c3c;
    outline: none;
}

.submit-btn {
    background: #e74c3c;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #c0392b;
}

/* ========================
   SOCIAL MEDIA SECTION
======================== */
.social-media-section {
    padding: 80px 0;
    background: #fff;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.social-container h2 {
    color: #333;
    margin-bottom: 40px;
    font-size: 32px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.social-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s;
}

.social-box:hover {
    transform: translateY(-5px);
}

.social-box i {
    font-size: 40px;
    margin-bottom: 20px;
}

.social-box h3 {
    color: #333;
    margin-bottom: 10px;
}

.social-box p {
    color: #666;
}

.social-box.facebook i { color: #3b5998; }
.social-box.instagram i { color: #e1306c; }
.social-box.twitter i { color: #1da1f2; }
.social-box.youtube i { color: #ff0000; }

/* ========================
   FOOD DELIVERY SECTION
======================== */
.food-delivery-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.delivery-container h2 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}

.delivery-container p {
    color: var(--neutral-dark);
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.delivery-box {
    background: var(--neutral-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.delivery-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.delivery-box img {
    max-width: 200px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.delivery-box:hover img {
    transform: scale(1.05);
}

.delivery-box h3 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.order-btn {
    background: var(--primary-orange);
    color: var(--neutral-light);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.order-btn:hover {
    background: #c0392b;
}

/* ========================
   MEDIA QUERIES 5
======================== */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-options {
        grid-template-columns: 1fr;
    }
}





/* ========================
    MEDIA QUERIES 4
======================== */
@media (max-width: 1200px) {
    .about-us {
        width: 90%;
        padding: 60px 5%;
    }
    .about-col {
        flex: 1 1 45%;
    }
    .values-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 900px) {
    .about-us .row {
        gap: 30px;
    }
    .about-col {
        flex: 1 1 100%;
    }
    .values-col {
        flex: 1 1 47%;
        margin-bottom: 20px;
    }
    .team-col {
        flex: 1 1 47%;
        margin-bottom: 20px;
    }
    .text-box h1 {
        font-size: 48px;
    }
    
    .food-specials {
        padding: 60px 0;
    }
    
    .specials-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 15px;
        width: 95%;
    }
    
    .special-img {
        height: 180px;
    }
    
    .special-content {
        padding: 15px;
    }
    
    .special-content h3 {
        font-size: 1.2rem;
    }
    
    .nav-links ul li {
        padding: 6px 10px;
    }
    
    .nav-links ul li a {
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .text-box h1 {
        font-size: 40px;
    }
    .text-box p {
        font-size: 16px;
    }
    
    .food-specials {
        padding: 40px 0;
    }
    
    .specials-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 10px;
        width: 92%;
    }
    
    .special-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .special-img {
        height: 200px;
    }
    
    .special-content h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .special-content p {
        text-align: center;
    }
    
    .special-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    nav {
        padding: 5px 15px;   /* shrink padding */
        position: fixed;
    }
    .nav-links ul li {
        display: block;
        padding: 20px;
    }
    .nav-links {
        position: fixed;
        background: rgba(51, 51, 51, 0.95);
        height: 100vh;
        width: 250px;
        top: 0;
        right: -100%;
        text-align: left;
        z-index: 1000;
        transition: 0.3s ease-in-out;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    }
    nav .fa {
        display: block;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    .nav-links ul {
        padding: 30px;
        margin-top: 50px;
    }
    .sub-header h1 {
        font-size: 30px;
        margin-top: 80px;
    }
    
    /* About Us Page Responsive Styles */
    .about-us {
        width: 100%;
        padding: 40px 20px;
        margin: 0;
    }
    .about-us .row {
        flex-direction: column;
        gap: 30px;
    }
    .about-col {
        text-align: center;
        padding: 0 15px;
    }
    .about-col h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .about-col p {
        font-size: 1rem;
        line-height: 1.6;
    }
    .about-col img {
        max-width: 100%;
        margin: 20px auto;
    }
    .about-col .hero-btn {
        width: 80%;
        max-width: 300px;
        margin: 20px auto;
        display: block;
    }
    
    /* Values Section Mobile Styles */
    .values-section {
        margin: 20px 0;
        padding: 0 10px;
    }
    .values-section .row {
        flex-direction: column;
        gap: 15px;
    }
    .values-col {
        margin: 5px auto;
        width: 100%;
        max-width: 350px;
    }
    
    /* Team Section Mobile Styles */
    .team-section {
        margin: 40px 0;
        padding: 0 20px;
    }
    .team-section .row {
        flex-direction: column;
        gap: 30px;
    }
    .team-col {
        margin: 10px auto;
        width: 100%;
        max-width: 350px;
    }
    
    /* Section Headers */
    .values-section h2,
    .team-section h2,
    .testimonials-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    /* Footer Responsive Styles */
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-section {
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-info li {
        justify-content: center;
    }
    .testimonial-container {
        grid-template-columns: 1fr;
    }
    .testimonial-box {
        padding: 20px;
    }
    .title h2 {
        font-size: 1.8rem;
    }
    .intro-container {
        width: 90%;
        display: block;
        margin: auto;
        padding-top: 50px;
    }
    .intro-content {
        width: 100%;
        float: none;
        display: block;
        margin: auto;
    }
    .image-container {
        float: none;
        width: 100%;
        display: block;
        margin: auto;
        text-align: center;
    }
    .image-container img {
        width: 95%;
        max-width: 100%;
        display: inline-block;
    }
    .intro-content .title {
        font-size: 20px;
        text-align: center;
    }
    .intro-content p {
        text-align: center;
    }
    .intro-content .hero-btn {
        display: block;
        margin: 20px auto;
        padding: 16px 20px;
        text-align: center;
        font-size: 1.2rem;
        font-weight: bold;
        cursor: pointer;
    }
     .features {
        width: 100%;
        padding: 20px 10px;
    }

    .feature-box {
        padding: 15px 10px;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.85rem;
    }
    .features {
        width: 95%;
        margin: 20px auto;
    }

    .feature-container {
        flex-direction: column;
        gap: 30px;
    }

    .feature-box {
        flex-basis: 100%;
        max-width: 400px;
        margin: 0 auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .features {
        width: 90%;
        padding: 30px 0;
    }



}

