/* Hero Section */
.hero {
    background: 
        linear-gradient(180deg, 
            #1a1a1a 0%, 
            #2d1810 20%, 
            #5d2d1a 40%, 
            #8b4513 60%, 
            #a0522d 80%, 
            #cd853f 100%
        ),
        radial-gradient(circle at 20% 20%, rgba(255,140,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(210,47,47,0.1) 0%, transparent 50%);
    background-size: cover, 800px 800px, 600px 600px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 0px;
}
.hero::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    z-index: 1;
    pointer-events: none;
    /* Base fire color */
    background: radial-gradient(ellipse at 50% 90%, rgba(255, 140, 0, 0.953) 0%, rgba(255, 81, 0, 0.493) 60%, transparent 100%);
    opacity: 0.7;
    filter: blur(2px);
    animation: fireFlicker 3s infinite alternate;
}
.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse at 55% 95%, rgba(255, 255, 0, 0.714) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(4px);
    animation: fireFlicker2 3s infinite alternate;
}
@keyframes fireFlicker {
    0% { opacity: 0.7; filter: blur(2px); }
    30% { opacity: 0.8; filter: blur(3px); }
    60% { opacity: 0.6; filter: blur(2.5px); }
    100% { opacity: 0.75; filter: blur(2px); }
}
@keyframes fireFlicker2 {
    0% { opacity: 0.5; filter: blur(4px); }
    40% { opacity: 0.7; filter: blur(5px); }
    80% { opacity: 0.4; filter: blur(3px); }
    100% { opacity: 0.6; filter: blur(4px); }
}

@keyframes subtleMove {
    0%, 100% { 
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(10px) translateY(-10px);
        opacity: 0.2;
    }
}

.hero-content {
    animation: fadeInUp 1s ease;
    max-width: 800px;
    z-index: 3;
    padding: 0 10px;
    margin-top: -5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 10;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.6);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    margin: 20px auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.about-chef-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    background: #fff;
    display: block;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .about-chef-img {
        width: 350px;
        height: 350px;
        max-width: 70vw;
        max-height: 70vw;
        margin: 0 auto;
    }
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d32f2f;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Workshops Section */
.workshops {
    background: white;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.workshop-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #ff6b35;
}

.workshop-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.workshop-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d32f2f;
}

.workshop-card p {
    color: #666;
    line-height: 1.6;
}