/* Variables */
:root {
    /* Colombian flag colors */
    --yellow: #FCD116;
    --blue: #003893;
    --red: #CE1126;

    /* Dark theme colors */
    --bg-primary: #121212;
    --bg-secondary: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    
    /* Additional colors */
    --accent-dark: #2A2A2A;
    --accent-light: #3A3A3A;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-container { height: 100%; display: flex; transition: transform 0.5s ease-in-out; } 
.carousel-container img { width: 100%; height: 100%; object-fit: cover; } 
.carousel-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem; 
    
}

/* Header and Navigation */
.main-header {
    background-color: #1E1E1E;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    color: var(--yellow);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
    font-size: 18px;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-links a.active {
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow);
}

/* Mobile menu button */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.carousel {
    height: 100%;
    position: relative;
    align-items: center;
}

.carousel-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--yellow);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 209, 22, 0.4);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--yellow);
}

.about p {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-secondary);
}

/* Popular Dishes */
.popular-dishes {
    margin-top: 4rem;
}

.popular-dishes h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--yellow);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.dish-card {
    background-color: var(--accent-dark);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dish-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dish-card h4 {
    padding: 1rem;
    text-align: center;
    color: var(--text-primary);
}

/* Hours & Location */
.hours-location {
    padding: 4rem 0;
    text-align: center;
    background-color: #192836;
}

.hours {
    margin-bottom: 2rem;
}

.hours h3 {
    color: var(--yellow);
    margin-bottom: 1rem;
}

.location-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--blue);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.location-button:hover {
    background-color: var(--red);
}

/* Footer */
footer {
    background-color: #632929;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact h4, .social h4 {
    color: var(--yellow);
    margin-bottom: 1rem;
}

.contact a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--yellow);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-light);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .carousel-overlay h1 {
        font-size: 2.5rem;
    }

    .dishes-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid var(--accent-light);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: loading 1s infinite linear;
}

@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}

/* NEW */
.video-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
} 