/* Schedazza Page Specific Styles */
.schedazza-body {
    background: url('../images/sfondobeige.png') center/cover no-repeat fixed;
    min-height: 100vh;
}

.schedazza-container {
    max-width: 1400px;
    margin: 80px auto 50px;
    padding: 0 20px;
}

.schedazza-header {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-bottom: 3rem;
}

.schedazza-header h1 {
    font-family: 'Amatic SC', cursive;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

/* Main Content - Two Columns Layout */
.schedazza-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Podcast Section */
.podcast-section {
    position: sticky;
    top: 80px;
}

.podcast-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.podcast-embed {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.15),
        0 20px 60px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.podcast-embed:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.2),
        0 25px 70px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.podcast-embed iframe {
    width: 100%;
    border-radius: 12px;
}

/* Right Column - Wine Info Section */
.wine-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.wine-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.intro-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.wine-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
}

.wine-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

.wine-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.wine-section:last-child::after {
    display: none;
}

.wine-section h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.wine-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.wine-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wine-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.wine-section li:before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.etc {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .schedazza-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .podcast-section {
        position: relative;
        top: 0;
    }
    
    .podcast-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .schedazza-container {
        margin-top: 70px;
    }
    
    .schedazza-header h1 {
        font-size: 1.8rem;
    }
    
    .wine-info {
        padding: 2rem 1.5rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .wine-section h3 {
        font-size: 1.5rem;
    }
    
    .wine-section h4 {
        font-size: 1.2rem;
    }
    
    .wine-section li {
        font-size: 1rem;
    }
}