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

:root {
    --primary-color: #e65100;
    --dark-bg: #111111;
    --text-light: #ffffff;
    --text-dark: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: #000;
    position: relative;
}

/* Add background image overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/catering-bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3; /* Adjust this value to make background lighter or darker */
    z-index: -1;
}

/* Update section backgrounds to be semi-transparent */
.services, 
.menu, 
.about, 
.contact {
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(5px);
}

.service-card,
.menu-category {
    background: rgba(34, 34, 34, 0.9);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-toggle {
    display: none; /* Hide by default */
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff6f00;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .nav-brand {
        font-size: 1.4rem;
    }

    .nav-toggle {
        display: block; /* Only show on mobile */
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        display: none; /* Hide menu by default on mobile */
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(17, 17, 17, 0.95);
        z-index: 9998;
    }

    .nav-menu.active {
        display: flex; /* Show menu when active class is added */
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        text-align: center;
        color: var(--text-light);
        text-decoration: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .big-logo {
        width: 75%;
        max-width: 500px; /* Smaller max-width for mobile */
        margin-bottom: 1.5rem;
    }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.2rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 5%;
}

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

.service-card {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    color: #fff;
}

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

/* Menu Section */
.menu {
    padding: 5rem 5%;
}

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

.menu-category {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    color: #fff;
}

.menu-category ul {
    list-style: none;
    margin-top: 1rem;
}

.menu-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #333;
    border-radius: 5px;
    font-family: inherit;
    background-color: #222;
    color: #fff;
}

.contact-form textarea {
    height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.submit-button {
    background-color: #e65100;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #ff6f00;
}

/* Footer */
footer {
    background-color: rgba(17, 17, 17, 0.95);
    color: white;
    padding: 3rem 5% 1rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* About Section Update */
.about {
    background-color: #111;
    padding: 5rem 5%;
}

/* Update menu toggle positioning */
.menu-toggle {
    display: none; /* Hide on desktop by default */
    position: absolute;
    left: 1rem;
    top: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Show menu toggle only on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show only on mobile */
        top: 1.5rem;
        left: 1rem;
    }

    nav {
        flex-direction: column;
        padding: 1rem;
    }

    .logo-container {
        align-self: flex-start;
        margin-left: 1rem;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    /* Hero Section Mobile Adjustments */
    .hero {
        height: 80vh;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Services Section Mobile Adjustments */
    .service-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    /* Menu Section Mobile Adjustments */
    .menu-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .menu-category {
        margin-bottom: 1rem;
    }

    /* Contact Form Mobile Adjustments */
    .contact-form {
        padding: 0 1rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
    }

    /* Footer Mobile Adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

/* Update the logo styles */
.big-logo {
    width: 75%;
    max-width: 800px; /* Increased from 500px to 800px for larger screens */
    height: auto;
    margin-bottom: 2rem;
}

/* Update Gallery Styles */
.gallery {
    padding: 5rem 5%;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(5px);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.gallery-section {
    margin-bottom: 4rem;
}

.gallery-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    height: 250px;
    flex: 0 0 auto;
    width: auto;
}

.gallery-item img,
.gallery-item video {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.video-item {
    flex: 0 0 auto;
    background-color: #000;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-item video {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .gallery {
        padding: 3rem 1rem;
    }

    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gallery-section {
        margin-bottom: 2.5rem;
    }

    .gallery-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .gallery-grid {
        gap: 1rem;
        padding: 0.5rem;
    }

    .gallery-item,
    .video-item {
        height: 200px;
    }
} 