@charset "UTF-8";
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Noto Serif', serif;
    line-height: 1.6;
    color: #3a3a3a;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
}

h2 {
    font-size: 2rem;
    color: #252525;
}

h3 {
    font-size: 1.5rem;
    color: #252525;
}

h4 {
    font-size: 1.2rem;
    color: #252525;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Links */
a {
    color: #0170B9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff3850;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    color: white;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    margin: 0;
}

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

.logo {
    max-width: 140px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #ff3850;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    margin: 0;
}

/* Delivery Section */
.delivery-section {
    background-color: #f5f5f5;
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.truck-animation {
    text-align: center;
}

.truck-animation img {
    max-width: 300px;
    animation: moveTruck 10s infinite;
}

@keyframes moveTruck {
    0% {
        transform: translateX(-100px);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(-100px);
    }
}

/* Footer */
footer {
    background-color: #0170B9;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
}

.footer-section a:hover {
    color: #ff3850;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .delivery-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0170B9;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff3850;
    color: white;
} 

/* Additional styles for the new HTML structure */

/* Hero Section with Background Slideshow */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0;
    line-height: 1.2;
}

/* Old header styles removed - replaced with red wavy background header */

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #252525;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #0170B9;
}

/* Product Description Section */
.product-description {
    padding: 60px 0;
    background: #fff;
}

.product-description p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1em;
}

.product-description .motto {
    text-align: center;
    font-size: 1.2em;
    margin-top: 40px;
}

/* Popular Products Section */
.popular-products {
    padding: 80px 0;
    background: #f9f9f9;
}

.popular-products h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #252525;
}

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

.product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Delivery Section */
.delivery-section {
    padding: 80px 0;
    background: #0170B9;
    color: white;
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.delivery-text h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.delivery-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

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



/* Footer Styles */
.site-footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-column h4 a {
    color: #fff;
    text-decoration: none;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-carousel {
    margin-top: 20px;
}

.footer-carousel .carousel-container {
    height: 200px;
    overflow: hidden;
}

.footer-carousel .carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    position: relative;
    overflow: hidden;
}

/* Footer Truck Animation */
.footer-truck {
    position: absolute;
    top: -100px;
    left: 100%;
    left: calc(100% - 180x);
    right: auto;
    width: 150px;
    height: auto;
    z-index: 20;
    animation: footer-truck-drive 10s linear infinite;
    transform: rotate(34deg);
    pointer-events: none;
}

@keyframes footer-truck-drive {
    0% {
        
        left: calc(100% - 180px);
    }
    100% {
        left: -100px;
    }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright, .tagline {
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .delivery-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .main-navigation {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* General spacing adjustments */
body {
    padding-top: 80px; /* Account for fixed header */
}

/* Ensure proper spacing for sections */
section {
    margin: 0;
}

/* Link styles */
a {
    color: #0170B9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff3850;
} 

/* Header Styles - Red Wavy Background */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-background {
    background: #e53935;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    flex: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 8px 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.main-navigation a:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* --- Dropdown Arrow Icon (Chevron) --- */
.has-submenu > a::after {
    content: '\25BE'; /* Downward chevron/caret */
    display: inline-block;
    margin-left: 6px;
    font-size: 0.8em;
    vertical-align: middle;
    border: none;
    background: none;
}

/* Remove any extra icon/box after menu items */
.nav-menu li:not(.has-submenu) > a::after {
    content: '';
    display: none;
}

/* --- Dropdown Menu Styling --- */
.has-submenu .submenu {
    background: #e53935;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 220px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid #fff;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    color: #fff;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 0;
    background: none;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

.submenu a:hover {
    background: #b71c1c;
    color: #fff;
}

/* Social Icon */
.social-icon a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icon a:hover {
    color: #ff3850;
}

/* Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 8px 38px 8px 16px;
    border: 2px solid #fff;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 16px;
    width: 200px;
    outline: none;
    transition: border 0.2s, background 0.2s;
}

.search-input::placeholder {
    color: #fff;
    opacity: 0.8;
}

.clear-button, .search-submit {
    position: absolute;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    font-size: 12px;
}

.clear-button {
    display: none;
}

.search-submit {
    right: 8px;
}

.clear-button:hover, .search-submit:hover {
    color: #0170B9;
}

/* Language Switcher */
.language-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.language-item a {
    display: block;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.language-item a:hover {
    background: rgba(255,255,255,0.2);
}

.language-item.current a {
    background: rgba(255,255,255,0.3);
}

/* Hero Section with Logo */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0; /* Remove gap below header */
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 0;
    z-index: 3;
}

.main-logo {
    max-width: 260px;
    height: auto;
    background: none;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- Center Logo Over Hero Slider --- */
.hero-logo {
    position: absolute;
    left: 50%;
    top: -60px; /* Overlap header and hero */
    transform: translate(-50%, 0);
    z-index: 10;
    background: none;
    margin-bottom: 0;
}

/* --- Header Layout --- */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    height: 70px;
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* --- Menu --- */
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}

.main-navigation a {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 3px;
    text-decoration: none;
    background: none;
    transition: background 0.2s, color 0.2s;
}

.main-navigation a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* --- Dropdown Menu Styling --- */
.has-submenu .submenu {
    background: #e53935;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 220px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid #fff;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    color: #fff;
    font-size: 15px;
    padding: 2px 20px;
    border-radius: 0;
    background: none;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

.submenu a:hover {
    background: #b71c1c;
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .main-logo {
        max-width: 180px;
    }
    .search-input {
        width: 120px;
    }
    .header-container {
        padding: 0 10px;
    }
}
@media (max-width: 600px) {
    .main-logo {
        max-width: 120px;
    }
    .header-container {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    .hero-logo {
        top: -40px;
    }
} 

/* --- Header and Solid Red Background --- */
.header-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #e53935;
    padding: 10px 0;
    margin: 0;
    height: 90px;
    pointer-events: auto;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* --- Center Logo in Viewport --- */
.hero-logo {
    position: absolute;
    left: 50vw;
    top: 70px;
    transform: translate(-50%, 0);
    z-index: 2000;
    background: none;
    margin-bottom: 0;
    pointer-events: auto;
}

/* --- Remove Black Behind Waves, Move Hero Up --- */
body {
    padding-top: 90px;
    background: #fff;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    background: none;
}



/* --- Responsive --- */
@media (max-width: 900px) {
    .main-logo {
        max-width: 180px;
    }
    .header-container {
        padding: 0 10px;
    }
}
@media (max-width: 600px) {
    .main-logo {
        max-width: 120px;
    }
    .header-container {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    .hero-logo {
        top: 60px;
    }
} 

/* --- Delivery Section with Food Background, Road, and SVG Wave --- */
.delivery-section {
    position: relative;
    background: none;
    padding: 0;
    min-height: 500px;
    overflow: hidden;
    z-index: 1;
}

.delivery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/food-bg.png') center center/cover no-repeat;
    z-index: 1;
    opacity: 0.7;
}



.delivery-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 400px;
    padding: 80px 0 0 8vw;
}

.delivery-bg {
    z-index: 1;
}

.wave-bottom {
    z-index: 10;
}

/* Remove blue backgrounds from all sections */
section, .container {
    background: none !important;
}

@media (max-width: 900px) {
    .delivery-content {
        padding: 60px 0 0 4vw;
    }
}
@media (max-width: 600px) {
    .delivery-content {
        padding: 40px 0 0 2vw;
    }
    .delivery-text h2 {
        font-size: 2rem;
    }
} 

.site-header, .header-background, .header-container {
    pointer-events: auto !important;
}

.site-header {
    position: relative;
    z-index: 1200;
}

.header-background {
    z-index: 1150;
    pointer-events: auto !important;
    background: #e53935 !important;
}

.header-container {
    z-index: 1300;
    pointer-events: auto !important;
} 

.main-logo-link {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2000;
    height: 100px;
    display: flex;
    align-items: flex-start;
}
.main-logo {
    height: 100px;
    width: auto;
    display: block;
}
.header-container {
    padding-left: 120px;
} 