/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    color: #343a40;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #343a40;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-content h1 {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.9rem;
    color: #17a2b8;
    font-weight: 300;
    margin-top: 0.2rem;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a.active {
    color: #17a2b8;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #17a2b8;
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #343a40;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #495057;
}

.drawer-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-drawer {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #495057;
}

.mobile-nav a {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background-color: #495057;
    color: #17a2b8;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Container */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 1rem 3rem 1rem;
}

/* About Sections */
.about-section {
    margin-bottom: 3rem;
    padding: 3.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #007bff 0%, #17a2b8 100%);
}

.about-section:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.about-section h2 {
    color: #343a40;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff 0%, #17a2b8 100%);
    border-radius: 2px;
}

.about-section p {
    line-height: 1.9;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.about-section p:first-of-type {
    font-size: 1.2rem;
    color: #495057;
    font-weight: 500;
}

/* Specialties List */
.specialties-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.specialties-list li {
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
    background-color: #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #343a40;
    border-left: 4px solid #007bff;
}

.specialties-list li:hover {
    background-color: #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.specialties-list li:before {
    content: "▸";
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    color: #007bff;
    font-weight: bold;
}

/* Contact Section */
.contact-info {
    background-color: #343a40;
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-info h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-item {
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.contact-item strong {
    color: #17a2b8;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: #17a2b8;
}

/* Footer */
.site-footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    margin: 0;
    opacity: 0.9;
}

/* Animations removed for cleaner experience */

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 0;
    margin-bottom: 3rem;
    background-color: #343a40;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.hero-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.7;
    display: block;
    vertical-align: middle;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-section p {
    font-size: 1.3rem;
    color: white;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Food Truck Section */
.food-truck-section {
    margin: 3rem 0;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.food-truck-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.food-truck-info h2 {
    color: #007bff;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

/* Slideshow Section */
.slideshow-section {
    margin: 3rem 0;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.slideshow-section h2 {
    text-align: center;
    color: #007bff;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(52, 58, 64, 0.9);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 123, 255, 0.8);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s;
    border-radius: 5px;
}

.slide-nav:hover {
    background: rgba(0, 123, 255, 1);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.slide-dots {
    text-align: center;
    padding: 1rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bdc3c7;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.dot.active {
    background-color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-wrapper {
        padding: 1rem;
        justify-content: center;
        position: relative;
    }

    .header-content {
        align-items: center;
        text-align: center;
        flex: 1;
    }

    .header-content h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .about-section {
        padding: 2rem 1.5rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .specialties-list li {
        padding-left: 2.5rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

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

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

    .hero-banner {
        height: 250px;
    }

    .hero-content {
        width: 90%;
        padding: 1rem;
    }

    .food-truck-content {
        grid-template-columns: 1fr;
    }

    .food-truck-image {
        height: 300px;
    }

    .slide img {
        height: 350px;
    }
    
    .slideshow-section {
        padding: 3rem 1rem;
    }
    
    .food-truck-section {
        padding: 3rem 1rem;
    }
}
