/* Custom Variables */
:root {
    --primary-color: #c55357;
    --secondary-color: #f9b018;
    --warm-brown: #8B4513;
    --bg-cream: #f9b018;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-dark: #2a2a2a;
    --text-dark: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playpen Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f9b018;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 600;
   
    color: #333333 !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
}
.nav-link.active {
    color: var(--primary-color) !important;
   
    
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('./public/assets/hero-food-truck-sunset.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 24, 25, 0.66), rgba(55, 49, 36, 0.558));
  }

.hero-content {
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f9b018;
    border-color: #c55357;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

/* Cards */
.card {
    border: none;
    transition: all 0.3s ease;
}

.menu-card {
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.menu-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover img {
    transform: scale(1.1);
}

/* Sections */
section {
    position: relative;
}

.bg-light {
    background-color: var(--bg-cream) !important;
}

.bg-dark {
    background-color: var(--bg-dark) !important;
    color: #fff !important;
}

.h1_dark {
    color: var(--bg-cream) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}
/* Schedule Items */
.schedule-item .border-bottom:last-child {
    border-bottom: none !important;
}

/* Social Links */
.social-links .btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Form Styles */
.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(34, 139, 34, 0.25);
}

/* Footer */
footer {
    background-color: var(--warm-brown) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .display-1 {
        font-size: 3rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .menu-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .display-1 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.carousel-inner img {
     height: 650px;
    object-fit: cover;
}

.bg-opacity-50 {
  opacity: 0.5;
}

/*
.carousel {
    
}
*/