* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5rem; /* Increased padding for more space */
    background: #000000;
    color: white;
    flex-wrap: wrap;
}

/* Bigger Logo */
.logo {
    height: 80px; /* Increased size */
}

/* Navigation */
nav {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
}

/* Bigger Navigation Links */
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.6rem; /* Bigger text */
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Hover Effect */
nav a:hover {
    color: #ff5722; /* Highlight on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .logo {
        height: 50px; /* Adjust logo size for smaller screens */
    }

    nav {
        margin-top: 5px;
    }

    nav a {
        font-size: 1.0rem;
        margin: 7px 20;
    }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    header {
        padding: 0.8rem;
    }

    .logo {
        height: 30px; /* Adjust logo size for smaller screens */
    }

    nav {
        margin-top: 1px;
    }

    nav a {
        font-size: 0.8rem;
        margin: 3px 10;
    }
}



/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 60vh; /* Full screen height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Overlay for text */
.hero-overlay {
    background: rgba(255, 255, 255, 0.8); /* White with transparency */
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    max-width: 600px;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #000;
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #333;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #ff5722;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e64a19;
}

@media (max-width: 768px) {
    .hero {
        height: 40vh; /* Adjust height for mobile */
    }

    .hero-overlay {
        max-width: 100%;
        padding: 3px;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 15px;
    }
}


@media (max-width: 480px) {
    .hero {
        height: 30vh; /* Adjust height for mobile */
    }

    .hero-overlay {
        max-width: 90%;
        padding: 5px;
    }

    .hero-overlay h1 {
        font-size: 1.2rem;
    }

    .hero-overlay p {
        font-size: 0.8rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
}



/* Category Navigation */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Increase the gap between items */
    padding: 2rem;
    background: #eee;
    position: relative;
}

.category-slider {
    display: flex;
    overflow-x: scroll; /* Allow horizontal scrolling */
    position: relative;
    max-width: 100%;
    flex: 1;
    scroll-snap-type: x mandatory; /* Add snap functionality for a smoother scroll */
    -webkit-overflow-scrolling: touch; /* Enable smooth scrolling for mobile */
}

.category-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.category-slider a {
    flex: 0 0 14.285%; /* Show 7 items per row */
    padding: 15px 25px;
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
    text-align: center;
    background: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
    scroll-snap-align: start; /* Ensure that items snap into place when scrolling */
}

/* Increase hover effect */
.category-slider a:hover {
    background: rgb(255, 87, 34);
    color: white;
    transform: scale(1.15);
}

/* Styling for the slider navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
}

.slider-btn.left {
    left: 0;
}

.slider-btn.right {
    right: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .category-slider a {
        flex: 0 0 20%; /* Show 5 items per row on larger tablets */
        font-size: 1.4rem;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .category-slider a {
        flex: 0 0 20%; /* Show 3 items per row */
        font-size: 1.0rem;
        padding: 10px 2px;
    }

    .slider-btn {
        padding: 10px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .category-slider a {
        flex: 0 0 12%; /* Show 2 items per row */
        font-size: 0.8rem;
        padding: 8px 2px;
    }

    .slider-btn {
        padding: 7px;
        font-size: 1rem;
    }

    .btn {
        font-size: 1rem; /* Adjust button font size */
    }

    .logo {
        height: 40px;
    }
}

/* Style for the section-lunch title */
.section-lunch {
    text-align: center; /* Centers the title horizontally */
    margin: 0px 0px; /* Adds space above and below the title */
}

/* Style for the main heading (h3) */
.section-lunch h3 {
    text-transform: uppercase; /* Makes the text uppercase */
    font-size: 60px; /* Default font size */
    font-weight: 900;
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
    margin-bottom: 5px; /* Adds space below the heading */
}

/* Style for the smaller text inside h3 */
.section-lunch .smaller-phone {
    text-transform: uppercase; /* Makes the text uppercase */
    font-size: 60px; /* Default font size for smaller text */
    font-weight: 900;
    color: rgb(255, 87, 34);
    letter-spacing: 5px;
}

/* Responsive Adjustments */

/* For tablets and smaller screens */
@media (max-width: 1024px) {
    .section-lunch h3 {
        font-size: 60px; /* Adjusts the font size for tablets */
    }

    .section-lunch .smaller-phone {
        font-size: 55px; /* Makes the smaller text smaller on tablets */
    }
}

/* For mobile devices (small screens) */
@media (max-width: 768px) {
    .section-lunch h3 {
        font-size: 40px; /* Adjusts the font size for mobile screens */
    }

    .section-lunch .smaller-phone {
        font-size: 32px; /* Makes the smaller text smaller on mobile */
    }
}

/* For very small screens (extra small mobile) */
@media (max-width: 480px) {
    .section-lunch h3 {
        font-size: 28px; /* Adjusts the font size for very small screens */
    }

    .section-lunch .smaller-phone {
        font-size: 30px; /* Further reduces the smaller text size */
    }
}

/* Menu Section */
.menu-section {
    padding: 1.9rem; /* Reduced padding */
    flex: 1 1 calc(33.333% - 20px);
    margin-bottom: 20px;
    position: relative;
}

.menu-banner {
    position: relative;
    width: 100%;
    height: 140px; /* Reduced height */
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.menu-banner img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.menu-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    font-size: 2.8rem; /* Reduced font size */
    font-weight: 900;
    color: rgb(255, 255, 255);
    letter-spacing: 5px;
    font-family: 'Playfair Display', serif;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0px;
    width: 100%;
}

.menu-title:hover {
    color: rgb(255, 87, 34);
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

.food-items {
    padding: 18px; /* Reduced padding */
    background: #f4f4f4;
    margin-top: 20px;
    border-radius: 5px;
}

.food-items ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Reduced gap */
    padding: 0;
}

.food-items ul li {
    flex: 1 1 calc(33.33% - 15px); /* Reduced width */
    padding: 12px; /* Reduced padding */
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 23px; /* Reduced font size */
}

.food-items ul li .smaller-text {
    font-size: 15px; /* Reduced font size */
    display: block;
    margin-top: 5px;
    font-weight: 200;
    letter-spacing: 1px;
}

.food-items ul li:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .food-items ul li {
        flex: 1 1 100%;
    }
}

/* Contact Section */
#contact {
    padding: 3rem;
    background-color: #000000;
    color: white;
    text-align: center;
}

#contact h2 {
    font-size: 30px;
}

#contact p {
    font-size: 25px;
}

.map-container {
    margin-top: 20px;
    width: 100%;
}

iframe {
    border-radius: 8px;
    width: 100%;
    height: 300px;
    max-width: 100%;
}

@media (max-width: 768px) {
    #contact {
        padding: 1.5rem;
    }

    iframe {
        height: 250px;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

/* 50% reduction in size for screen widths 480px or below */
@media (max-width: 480px) {
    /* General text size */
    body {
        font-size: 0.5rem; /* 50% smaller font size */
    }

    .menu-title {
        font-size: 1.5rem; /* 50% smaller */
    }

    .food-items ul li {
        font-size: 20px; /* 50% smaller text */
    }

    .food-items ul li .smaller-text {
        font-size: 12px; /* 50% smaller */
    }

    /* Reduce padding and margins */
    .category-nav,
    .hero,
    .category-slider a,
    .menu-section,
    .food-items,
    #contact {
        padding: 1rem; /* 50% smaller padding */
    }

    .category-slider a {
        padding: 7.5px 12.5px; /* 50% smaller padding */
    }

    nav a {
        margin-left: 10px; /* 50% smaller margin */
    }

    .btn {
        padding: 5px 10px; /* 50% smaller button */
    }

    .logo {
        height: 25px; /* 50% smaller logo */
    }

    iframe {
        height: 150px; /* 50% smaller iframe */
    }

    .slider-btn {
        padding: 6px 10px; /* 50% smaller slider buttons */
    }


    .menu-banner {
        height: 75px; /* 50% smaller menu banner */
    }

    .menu-title {
        font-size: 1.5rem; /* 50% smaller menu title font */
    }
}


