/* Hero Section */
/* Navigation styling */
            nav {
                height: 80px;
                width: 100%;
                background: rgba(245, 230, 214, 0.95);
                backdrop-filter: blur(10px);
                box-shadow: var(--shadow-sm);
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 var(--space-m);
                position: sticky;
                top: 0;
                z-index: 100;
            }

            .fiesta {
                width: 60px;
                height: 50px;
                object-fit: contain;
            }

            label.logo {
                color: var(--dark-color);
                font-size: 1.375rem;
                font-weight: var(--font-weight-bold);
                font-family: 'Playfair Display', Georgia, serif;
                display: flex;
                align-items: center;
                gap: var(--space-s);
            }

            nav ul {
                display: flex;
                align-items: center;
                gap: var(--space-s);
            }

            nav ul li {
                position: relative;
            }

            nav ul li a {
                color: var(--dark-color);
                font-size: var(--font-size-n);
                padding: var(--space-xs) var(--space-s);
                border: 2px solid transparent;
                text-transform: uppercase;
                border-radius: var(--border-radius-m);
                font-weight: var(--font-weight-medium);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                letter-spacing: 0.5px;
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }

            .dropdown-icon {
                font-size: 0.7rem;
                transition: transform 0.3s ease;
            }

            a.active, a:hover {
                background: var(--secondary-color);
                color: white;
                border-color: var(--secondary-color);
                transform: translateY(-2px);
                box-shadow: var(--shadow-md);
            }

            .dropdown {
                position: relative;
            }

            .dropdown-content {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background: white;
                min-width: 280px;
                box-shadow: var(--shadow-lg);
                border-radius: var(--border-radius-s);
                z-index: 1000;
                overflow: hidden;
                border: 1px solid rgba(0, 0, 0, 0.1);
                animation: slideDown 0.3s ease;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .dropdown-content a {
                color: var(--dark-color);
                padding: var(--space-s) var(--space-m);
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: var(--space-s);
                text-transform: none;
                font-weight: var(--font-weight-normal);
                border: none;
                border-radius: 0;
                transition: all 0.3s ease;
                background: transparent;
            }

            .dropdown-content a:hover {
                background: var(--light-pink-color);
                color: var(--primary-color);
                transform: translateX(5px);
                border-color: transparent;
            }

            .dropdown-content a i {
                color: var(--secondary-color);
                width: 16px;
            }

            .dropdown:hover .dropdown-content {
                display: block;
            }

            .dropdown:hover .dropdown-icon {
                transform: rotate(180deg);
            }

            .sidebar {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 360px;
                z-index: 999;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                box-shadow: var(--shadow-lg);
                display: none;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: var(--space-xl) var(--space-l);
            }

            .sidebar li {
                width: 100%;
                margin-bottom: var(--space-s);
            }

            .sidebar a {
                width: 100%;
                padding: var(--space-s);
                border-radius: var(--border-radius-s);
            }

            .materials-symbols-outlined {
                display: none;
                font-size: 1.5rem;
                cursor: pointer;
            }

            @media (max-width: 1100px) {
                .hideonMobile {
                    display: none;
                }
                .materials-symbols-outlined {
                    display: block;
                }
            }
.culinary-hero {
    position: relative;
    background: url('https://raw.githubusercontent.com/ethn-boyi/fiesta-site/main/images/baking/baker.jpg') center/cover no-repeat;
    color: #f37e09; /* Fiesta Orange */
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
    height: 60vh;
    min-height: 400px;
}

.culinary-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text readability */
    z-index: 0;
}

.culinary-hero h1,
.culinary-hero p {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.culinary-hero h1 {
    animation-delay: 0.3s;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.culinary-hero p {
    animation-delay: 0.6s;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

/* Fade-in-up animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Courses Section */
.courses-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    max-width: 1200px;
    margin: 0 auto;
}

.courses-section h2 {
    text-align: center;
    color: #e67e22;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Course Outline Styling */
.course-outline {
    background: #fff;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-outline:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.course-header {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.course-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22, #d35400);
}

.course-header h3 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.course-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0 0 0;
    font-size: 0.95rem;
}

.course-details div {
    background: rgba(255,255,255,0.15);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s ease;
}

.course-details div:hover {
    background: rgba(255,255,255,0.25);
}

.month-container {
    padding: 30px;
}

.month-item {
    margin: 25px 0;
    border-left: 4px solid #e67e22;
    padding-left: 25px;
    position: relative;
    background: #fafafa;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.month-item:hover {
    border-left-color: #d35400;
    background: #f5f5f5;
    transform: translateX(5px);
}

.month-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: #e67e22;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e67e22;
}

.month-title {
    color: #d35400;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 15px 0 10px 0;
}

.month-title::before {
    content: '📅';
    margin-right: 10px;
    font-size: 1.2em;
}

.month-content {
    padding: 0 0 15px 0;
}

.month-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.month-content li {
    margin: 10px 0;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    color: #555;
    border-left: 3px solid #e67e22;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.month-content li:hover {
    background: #fff8f0;
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Removed bullet points */

/* Responsive Design */
@media (max-width: 768px) {
    .culinary-hero {
        height: 50vh;
        padding: 60px 15px;
    }
    
    .culinary-hero h1 {
        font-size: 2.2rem;
    }
    
    .culinary-hero p {
        font-size: 1rem;
    }
    
    .courses-section {
        padding: 40px 15px;
    }
    
    .courses-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .course-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .course-header {
        padding: 25px 20px;
    }
    
    .course-header h3 {
        font-size: 1.5rem;
    }
    
    .month-container {
        padding: 20px 15px;
    }
    
    .month-item {
        padding-left: 20px;
        margin: 20px 0;
    }
    
    .month-title {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .month-content li {
        padding: 10px 12px;
        margin: 8px 0;
        font-size: 0.9rem;
    }
    
    /* Mobile styles - no bullet points needed */
}

@media (max-width: 480px) {
    .culinary-hero h1 {
        font-size: 1.8rem;
    }
    
    .courses-section h2 {
        font-size: 1.6rem;
    }
    
    .course-header h3 {
        font-size: 1.3rem;
    }
    
    .month-title {
        font-size: 1rem;
    }
    
    .course-outline {
        margin: 30px 0;
        border-radius: 10px;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
    font-size: 0.9rem;
    margin-top: 50px;
}

/* Additional Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.course-outline {
    animation: slideInLeft 0.6s ease forwards;
}

.course-outline:nth-child(2) {
    animation-delay: 0.1s;
}

.course-outline:nth-child(3) {
    animation-delay: 0.2s;
}

.course-outline:nth-child(4) {
    animation-delay: 0.3s;
}