/* ==========================================
   Floc Teatre - CSS
   Theatrical, artistic and professional design
   ========================================== */

/* Scalter font for headings – place font files in assets/fonts/ */
@font-face {
    font-family: 'Scalter';
    src: url('assets/fonts/Scalter-Bold-Semi-Condensed-Sans.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* BobbyJonesSoft font for body text – place font files in assets/fonts/ */
@font-face {
    font-family: 'BobbyJonesSoft';
    src: url('assets/fonts/bobbyjonessoft.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'BobbyJonesSoft', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #E9A3CF;
    background-color: #F4F4F4;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Scalter', 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #5A1F4D;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title.white-title {
    color: #F4F4F4;
}

.section-title.large-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: 2px solid #E9A3CF;
    color: #5A1F4D;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    background-color: #E9A3CF;
    color: #5A1F4D;
}

.lang-btn.active {
    background-color: #5A1F4D;
    color: #E9A3CF;
    border-color: #5A1F4D;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFF;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #E9A3CF;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: #5A1F4D;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-list a.active{
    color: #E9A3CF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.nav-list a:hover {
    color: #E9A3CF;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #E9A3CF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7B2D6B 0%, #5A1F4D 50%, #3D1433 100%);
}

.hero-slider .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(123, 45, 107, 0.85) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #F4F4F4;
    animation: fadeInScale 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Presentation Section */
.presentation {
    padding: 5rem 0;
    background-color: #F4F4F4;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.presentation-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #E9A3CF;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5A1F4D;
    line-height: 1.4;
}

.presentation-image {
    position: relative;
}

.image-organic {
    position: relative;
    overflow: hidden;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 10px 40px rgba(90, 31, 77, 0.3);
    animation: morphing 8s ease-in-out infinite;
    background-color: #5A1F4D;
}

.image-organic img,
.image-organic svg {
    width: 100%;
    height: auto;
    display: block;
}

.presentation-logo {
    padding: 3rem;
    /* Make logo white so it's visible on dark purple background */
    filter: brightness(0) invert(1);
}

@keyframes morphing {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Productions Section */
.productions {
    padding: 8.5rem 0 5rem;
    background-color: #5A1F4D;
    position: relative;
}

.productions::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #F4F4F4;
    clip-path: url(#torn-top);
    z-index: 1;
}

.productions::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #F4F4F4;
    clip-path: url(#torn-bottom);
    z-index: 1;
}

.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.production-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.production-card:hover {
    transform: translateY(-10px);
}

.production-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 25px 8px rgba(255, 255, 255, 0.25), 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.production-image img,
.production-image svg {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.production-card:hover .production-image img,
.production-card:hover .production-image svg {
    transform: scale(1.05);
}

.production-name {
    color: #E9A3CF;
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.production-description {
    color: #F4F4F4;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    opacity: 0.9;
    line-height: 1.4;
}

.production-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.production-duration,
.production-age {
    color: #E9A3CF;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background-color: rgba(233, 163, 207, 0.1);
    border-radius: 15px;
}

/* Calendar Section */
.calendar {
    padding: 5rem 0;
    background-color: #F4F4F4;
}

.calendar-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calendar-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calendar-events-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .calendar-events-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .calendar-events-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.calendar-month-header {
    background: #5A1F4D;
    color: #F4F4F4;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.calendar-event-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.calendar-event-card.pink {
    background-color: #E9A3CF;
    color: #5A1F4D;
}

.calendar-event-card.purple {
    background-color: #5A1F4D;
    color: #F4F4F4;
}

.calendar-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 45px;
}

.calendar-event-date .day-num {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.calendar-event-date .day-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.calendar-event-icon-wrap {
    flex-shrink: 0;
    position: relative;
}

.calendar-event-icon-wrap[data-title]:hover::after {
    content: attr(data-title);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #5A1F4D;
    color: #F4F4F4;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.calendar-event-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.calendar-event-emoji {
    font-size: 1.6rem;
    display: block;
    width: 44px;
    text-align: center;
}

.calendar-event-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.calendar-event-info .event-time {
    font-weight: 700;
    font-size: 0.9rem;
}

.calendar-event-info .event-place {
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0.9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-primary {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #E9A3CF;
    color: #5A1F4D;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(233, 163, 207, 0.3);
}

.btn-primary:hover {
    background-color: #5A1F4D;
    color: #E9A3CF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 163, 207, 0.4);
}

/* Contact Section */
.contact {
    padding: 8.5rem 0 5rem;
    background-color: #5A1F4D;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #F4F4F4;
    clip-path: url(#torn-top);
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-left .section-title {
    text-align: left;
}

.contact-subtitle {
    text-align: left;
    color: #E9A3CF;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: 'BobbyJonesSoft', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    border: none;
    border-radius: 10px;
    background-color: #F4F4F4;
    color: #5A1F4D;
    transition: box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 163, 207, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    padding: 1rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #E9A3CF;
    color: #5A1F4D;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(233, 163, 207, 0.3);
}

.btn-submit:hover {
    background-color: #F4F4F4;
    color: #5A1F4D;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 163, 207, 0.5);
}

/* Social Section (inside contact) */
.contact-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
}

.social-title {
    font-size: 2rem;
    color: #E9A3CF;
    margin-bottom: 2rem;
    text-align: center;
}

.social-icons-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(233, 163, 207, 0.15);
    color: #E9A3CF;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background-color: #E9A3CF;
    color: #5A1F4D;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(233, 163, 207, 0.4);
}

.social-icon svg {
    width: 30px;
    height: 30px;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background-color: #5A1F4D;
    text-align: center;
    color: #F4F4F4;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title.large-title {
        font-size: 2.2rem;
    }

    .presentation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .productions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-left .section-title {
        text-align: center;
    }

    .contact-subtitle {
        text-align: center;
    }

    .social-icons-vertical {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .hero {
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title.large-title {
        font-size: 1.8rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .calendar-grid {
        flex-direction: column;
    }

    .calendar-column {
        min-width: 0;
    }

    .social-icons-vertical {
        gap: 1.5rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .btn-primary,
    .btn-submit {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .productions-grid {
        grid-template-columns: 1fr;
    }
}

/* Show Modal Styles */
.show-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 43, 43, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.show-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #F4F4F4;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #5A1F4D;
    color: #E9A3CF;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background-color: #E9A3CF;
    color: #5A1F4D;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #7B2D6B 0%, #5A1F4D 100%);
    padding: 3rem 2rem 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.modal-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out;
}

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

.modal-title {
    color: #E9A3CF;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.modal-subtitle {
    color: #F4F4F4;
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.modal-body {
    padding: 2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    color: #5A1F4D;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.modal-section p {
    color: #E9A3CF;
    font-size: 1rem;
    line-height: 1.8;
}

.modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background-color: rgba(233, 163, 207, 0.1);
    border-radius: 15px;
    border-left: 4px solid #E9A3CF;
}

.detail-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.detail-content strong {
    display: block;
    color: #5A1F4D;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.detail-content p {
    color: #E9A3CF;
    font-size: 1rem;
    margin: 0;
}

.modal-link {
    color: #5A1F4D;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #E9A3CF;
    transition: color 0.3s ease;
}

.modal-link:hover {
    color: #E9A3CF;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-modal {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-modal.btn-primary {
    background-color: #5A1F4D;
    color: #E9A3CF;
}

.btn-modal.btn-primary:hover {
    background-color: #E9A3CF;
    color: #5A1F4D;
    transform: translateY(-3px);
}

.btn-modal.btn-secondary {
    background-color: #E9A3CF;
    color: #5A1F4D;
}

.btn-modal.btn-secondary:hover {
    background-color: #5A1F4D;
    color: #E9A3CF;
    transform: translateY(-3px);
}

.btn-modal.btn-youtube {
    background-color: #c0392b;
    color: white;
}

.btn-modal.btn-youtube:hover {
    background-color: #e74c3c;
    transform: translateY(-3px);
}

.modal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.card-hover-text {
    color: #E9A3CF;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.production-card:hover .card-hover-text {
    opacity: 1;
}

/* YouTube embed in modal */
.youtube-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.youtube-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Gallery in modal */
.modal-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.modal-gallery img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.modal-gallery img:hover {
    transform: scale(1.1);
}

/* Admin link */

/* Maintenance preview banner */
.preview-banner {
    background: #f39c12;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
}

.preview-banner a {
    color: #fff;
    margin-left: 10px;
    text-decoration: underline;
}

.preview-banner ~ .header {
    top: 40px;
}

.preview-banner ~ .header ~ .hero {
    margin-top: 130px;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px 0;
        max-height: none;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
    
    .modal-emoji {
        font-size: 3rem;
    }
    
    .modal-details {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-modal {
        width: 100%;
    }
}
