/* ========================================
   WORKSHOP - PROFESSIONAL DESIGN
   ======================================== */

:root {
    /* Workshop Color Palette - Blue Theme (Same as Scientific Program) */
    --workshop-primary: #0066cc;
    --workshop-secondary: #00a86b;
    --workshop-accent: #ff6b35;
    --workshop-success: #10d876;
    --workshop-warning: #ffa726;
    --workshop-info: #29b6f6;
    
    /* Workshop Gradients */
    --gradient-workshop: linear-gradient(135deg, #0066cc 0%, #29b6f6 50%, #00a86b 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 168, 107, 0.9) 100%);
    --gradient-session: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 252, 0.9) 100%);
    
    /* Background Colors */
    --bg-workshop: #f8fafc;
    --bg-session: #ffffff;
    --bg-hero: linear-gradient(135deg, #0066cc 0%, #29b6f6 50%, #00a86b 100%);
    
    /* Text Colors */
    --text-workshop: #1a365d;
    --text-workshop-light: #4a5568;
    --text-workshop-muted: #718096;
    
    /* Modern Shadows */
    --shadow-workshop: 0 8px 25px rgba(0, 102, 204, 0.15);
    --shadow-session: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 102, 204, 0.2);
    
    /* Animation Timings */
    --transition-workshop: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease-out;
}

/* ========================================
   WORKSHOP HERO SECTION - PROFESSIONAL STYLE
   ======================================== */

.hero-workshop-section {
    margin-top: 130px;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-workshop-section.bg-gradient-modern {
    background: var(--gradient-primary);
}

.workshop-hero-content {
    position: relative;
    z-index: 2;
}

.workshop-icon-modern {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.workshop-icon-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.workshop-icon-modern i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.icon-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.workshop-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.workshop-subtitle-modern {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
}

.workshop-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.workshop-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.workshop-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.workshop-badge i {
    font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-workshop-section {
        margin-top: 80px;
        padding: 3rem 0;
    }
    
    .workshop-icon-modern {
        width: 100px;
        height: 100px;
    }
    
    .workshop-icon-modern i {
        font-size: 2.5rem;
    }
    
    .workshop-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .workshop-badge {
        justify-content: center;
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-workshop-section {
        margin-top: 70px;
        padding: 2.5rem 0;
    }
    
    .workshop-icon-modern {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .workshop-icon-modern i {
        font-size: 2rem;
    }
}

/* ========================================
   MAIN CONTENT STYLES
   ======================================== */

.workshop-main {
    background: var(--bg-workshop);
    min-height: 100vh;
    padding: 2rem 0 4rem;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-workshop);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-workshop);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.section-title i {
    color: var(--workshop-primary);
    font-size: 0.9em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-workshop-light);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   WORKSHOP OVERVIEW CARDS
   ======================================== */

.workshop-overview {
    margin-bottom: 5rem;
}

.overview-card {
    background: var(--bg-session);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-session);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all var(--transition-workshop);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-workshop);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-workshop);
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--workshop-primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-workshop);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-workshop);
}

.overview-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 168, 107, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.overview-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-workshop);
    margin-bottom: 0.5rem;
}

.overview-card p {
    color: var(--text-workshop-light);
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   DAY HEADER
   ======================================== */

.day-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.day-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text-workshop);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-session);
    border: 1px solid var(--workshop-primary);
}

.day-header i {
    color: var(--workshop-primary);
}

/* ========================================
   WORKSHOP SESSION BLOCKS
   ======================================== */

.session-block.workshop-session {
    background: var(--bg-session);
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-session);
    border: 1px solid rgba(0, 102, 204, 0.1);
    overflow: hidden;
    transition: all var(--transition-workshop);
    position: relative;
}

.session-block.workshop-session::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-workshop);
}

.session-block.workshop-session:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Special styling for hands-on session */
.hands-on-session {
    border: 2px solid var(--workshop-primary);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.hands-on-session::before {
    height: 6px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 50%, #0066cc 100%);
}

/* Session Header */
.session-header {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(41, 182, 246, 0.02) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.session-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-workshop);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    flex: 1;
}

.session-title i {
    color: var(--workshop-primary);
    font-size: 1.2rem;
}

/* Session Meta - Time and Faculty */
.session-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.session-time {
    background: var(--workshop-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.session-faculty {
    background: rgba(0, 102, 204, 0.1);
    color: var(--workshop-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 1px solid rgba(0, 102, 204, 0.2);
}


/* Session Content */
.session-content {
    padding: 1.5rem 2rem;
    border: none;
    background: transparent;
}


/* ========================================
   PRESENTATION ITEMS
   ======================================== */

.presentation-item {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    transition: all var(--transition-fast);
    position: relative;
}

.presentation-item:last-child {
    border-bottom: none;
}

.presentation-item:hover {
    background: rgba(0, 102, 204, 0.02);
    padding-left: 1rem;
    border-radius: 10px;
}

.presentation-item .time {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--workshop-primary);
    background: rgba(0, 102, 204, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
}

.presentation-item .topic {
    font-size: 1rem;
    color: var(--text-workshop);
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.presentation-item .topic i {
    color: var(--workshop-primary);
    font-size: 1rem;
    min-width: 20px;
}

.presentation-item .faculty {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--workshop-secondary);
    background: rgba(0, 168, 107, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid rgba(0, 168, 107, 0.2);
    min-width: 120px;
}

.presentation-item.discussion {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.05) 0%, rgba(16, 216, 118, 0.02) 100%);
    border-radius: 10px;
    padding: 1rem;
}

.presentation-item.discussion .time {
    background: var(--workshop-secondary);
    color: white;
}

.presentation-item.discussion .topic {
    font-weight: 600;
    color: var(--workshop-secondary);
}

.presentation-item.discussion .topic i {
    color: var(--workshop-secondary);
}

.presentation-item.discussion .faculty {
    background: rgba(0, 168, 107, 0.2);
    border-color: rgba(0, 168, 107, 0.3);
    color: var(--workshop-secondary);
}

.presentation-item.special {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 167, 38, 0.02) 100%);
    border-radius: 10px;
    padding: 1rem;
}

.presentation-item.special .time {
    background: var(--workshop-accent);
    color: white;
}

.presentation-item.special .topic {
    font-weight: 600;
    color: var(--workshop-accent);
    font-size: 1.1rem;
}

.presentation-item.special .topic i {
    color: var(--workshop-accent);
}

.presentation-item.special .faculty {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    color: var(--workshop-accent);
}

/* ========================================
   BREAK TIMES
   ======================================== */

.break-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 1.5rem 0;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    text-align: center;
}

.break-time.lunch-break {
    background: var(--gradient-workshop);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    border-bottom: 1px solid rgba(0, 102, 204, 0.2);
}

.break-time i {
    font-size: 1.2rem;
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */

.cta-section {
    background: var(--gradient-workshop);
    border-radius: 25px;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
    transition: all var(--transition-workshop);
    border: 2px solid transparent;
    text-decoration: none;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--workshop-primary);
    border-color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-primary:hover {
    background: var(--workshop-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: white;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet Styles */
@media (max-width: 992px) {
    .hero-workshop-section {
        margin-top: 100px;
        min-height: 60vh;
    }
    
    .section-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .session-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .session-title {
        justify-content: center;
        font-size: 1.1rem;
    }
    
    .session-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .overview-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-workshop-section {
        margin-top: 80px;
        padding: 3rem 0;
    }
    
    .workshop-main {
        padding: 1.5rem 0 3rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Overview Cards Mobile */
    .workshop-overview {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .overview-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        height: auto;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .session-header {
        padding: 1rem;
    }
    
    .session-content {
        padding: 1rem;
    }
    
    .presentation-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        padding: 0.75rem;
    }
    
    .presentation-item .time {
        margin: 0 auto 0.5rem;
        max-width: 200px;
    }
    
    .presentation-item .faculty {
        margin: 0.5rem auto 0;
        max-width: 250px;
        font-size: 0.8rem;
    }
    
    .break-time {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        margin: 1.5rem auto;
    }
    
    .cta-section {
        padding: 3rem 1rem;
        margin-top: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-workshop-section {
        margin-top: 70px;
        padding: 2.5rem 0;
    }
    
    .workshop-icon-modern {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .workshop-icon-modern i {
        font-size: 2rem;
    }
    
    .workshop-main {
        padding: 1rem 0 2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        gap: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    /* Small Mobile Overview Cards */
    .workshop-overview {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .overview-card {
        padding: 1.75rem 1rem;
        min-height: 160px;
        border-radius: 12px;
    }
    
    .overview-card .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .overview-card .card-icon i {
        font-size: 1.5rem;
    }
    
    .overview-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .overview-card p {
        font-size: 0.9rem;
    }
    
    /* Day Header Small Mobile */
    .day-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .day-header h2 {
        padding: 0.75rem 1rem;
        font-size: 1.25rem;
        gap: 0.5rem;
    }
    
    /* Session Blocks Small Mobile */
    .session-block {
        margin-bottom: 1.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        border-radius: 12px;
    }
    
    .session-header {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }
    
    .session-title {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-items: center;
    }
    
    .session-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        width: 100%;
    }
    
    .session-time,
    .session-faculty {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .session-content {
        padding: 1rem 0.75rem;
    }
    
    .presentation-item .topic {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.4;
        justify-content: center;
    }
    
    /* Break Time Small Mobile */
    .break-time {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        margin: 1rem 0;
        border-radius: 10px;
    }
    
    /* CTA Section Small Mobile */
    .cta-section {
        padding: 2.5rem 0.5rem;
        margin-top: 1.5rem;
        border-radius: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
    }
}

/* Print Styles */
@media print {
    .venue-info-bar,
    .modern-navbar-enhanced,
    .hero-workshop-section .hero-badge,
    .cta-section {
        display: none !important;
    }
    
    .hero-workshop-section {
        margin-top: 0;
        min-height: auto;
        background: white !important;
        color: black !important;
    }
    
    .hero-workshop-section .hero-title,
    .hero-workshop-section .hero-subtitle {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: black !important;
    }
    
    .session-block {
        page-break-inside: avoid;
        margin-bottom: 1rem;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .break-time {
        background: #f0f0f0 !important;
        color: black !important;
    }
}
