/* Hero Section Styling */
.hero-section {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    z-index: 10;
    margin-bottom: 3rem;
}

.hero-text h1 {
    font-size: var(--fs-h1);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
    margin: 0 auto 2rem;
}

.hero-image-container {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.floating-dish {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    transform-origin: center center;
    /* Base state (will be revealed by animation) */
    opacity: 0;
    transform: rotate(-15deg); 
}

@keyframes floatingSpin {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(90deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Smoke/Cloud Effects */
.smoke-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    z-index: 1;
}

/* Desktop Hero Refinement */
@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
        padding: 0 80px;
    }

    .hero-text {
        flex: 1;
        margin-bottom: 0;
    }

    .hero-image-container {
        flex: 1;
        max-width: none;
        display: flex;
        justify-content: flex-end;
    }

    .floating-dish {
        width: 110%; /* Overflowing effect as requested */
        max-width: 700px;
    }

    .divider {
        margin-left: 0;
    }
}
