/* rotating-dishes.css */
.rotating-dishes-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.rotating-dishes-container {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

/* L'Option Logo Style Integration */
.rotating-dishes-header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 20;
}

.rotating-dishes-header .logo-text {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, 
        #FF6B6B,
        #FFA726,
        #FFEE58,
        #66BB6A,
        #42A5F5,
        #AB47BC
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logo-color-wave 8s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes logo-color-wave {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 25% 50%;
    }
    50% {
        background-position: 50% 50%;
    }
    75% {
        background-position: 75% 50%;
    }
}

.rotating-dishes-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.orbital-ring {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    animation: rotate-ring 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dish {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid rgba(251, 191, 36, 0.2);
    cursor: pointer;
}

/* Dish size variations */
.dish-zoom {
    width: 320px;
    height: 320px;
    z-index: 10;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(251, 191, 36, 0.3),
        inset 0 0 60px rgba(251, 191, 36, 0.1);
    border: 4px solid rgba(251, 191, 36, 0.4);
    filter: brightness(1.1) saturate(1.1);
}

.dish-medium {
    width: 180px;
    height: 180px;
    z-index: 8;
    filter: brightness(0.95) saturate(0.95);
    border: 3px solid rgba(59, 130, 246, 0.2);
}

.dish-small {
    width: 120px;
    height: 120px;
    z-index: 5;
    filter: brightness(0.85) saturate(0.9);
    opacity: 0.9;
    border: 2px solid rgba(30, 64, 175, 0.1);
}

/* Dish positions in orbit */
.dish-1 {
    transform: rotate(0deg) translateX(250px) rotate(0deg);
}

.dish-2 {
    transform: rotate(90deg) translateX(250px) rotate(-90deg);
}

.dish-3 {
    transform: rotate(180deg) translateX(250px) rotate(-180deg);
}

.dish-4 {
    transform: rotate(270deg) translateX(250px) rotate(-270deg);
}

/* Dish content */
.dish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.dish:hover .dish-image {
    transform: scale(1.05);
}

/* Shine effect for zoomed dish */
.dish-zoom::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(251, 191, 36, 0.2) 0%,
        rgba(251, 191, 36, 0) 70%
    );
    pointer-events: none;
    z-index: 2;
    animation: dish-pulse 4s ease-in-out infinite;
}

/* Center glow effect */
.center-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(251, 191, 36, 0.3) 0%,
        rgba(251, 191, 36, 0.1) 40%,
        transparent 70%
    );
    filter: blur(10px);
    animation: glow-pulse 6s ease-in-out infinite;
}

/* Particles */
.dishes-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.dish-particle {
    position: absolute;
    border-radius: 50%;
    animation: float 15s infinite linear;
}

/* Animations */
@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dish-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Controls */
.dishes-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.dishes-controls-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .orbital-ring {
        width: 350px;
        height: 350px;
    }
    
    .dish-zoom {
        width: 220px;
        height: 220px;
    }
    
    .dish-medium {
        width: 140px;
        height: 140px;
    }
    
    .dish-small {
        width: 100px;
        height: 100px;
    }
    
    .dish-1, .dish-2, .dish-3, .dish-4 {
        transform-origin: center center;
        transform: none;
        position: static;
        margin: 15px;
    }
    
    .orbital-ring {
        flex-wrap: wrap;
        justify-content: center;
        animation: none;
        width: auto;
        height: auto;
    }
    
    .rotating-dishes-header .logo-text {
        font-size: 2rem;
    }
    
    .rotating-dishes-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .dish-zoom {
        width: 180px;
        height: 180px;
    }
    
    .dish-medium {
        width: 120px;
        height: 120px;
    }
    
    .dish-small {
        width: 80px;
        height: 80px;
    }
    
    .rotating-dishes-header .logo-text {
        font-size: 1.8rem;
    }
    
    .rotating-dishes-container {
        height: 80vh;
    }
}