/* Feeldiz DI Studio - Styles */
/* Professional Portfolio Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    min-height: 100vh;
    color: #e0e0e0;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

header {
    text-align: center;
    padding: 140px 0 60px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

h1 {
    font-size: 4rem;
    font-weight: 100;
    margin-bottom: 20px;
    letter-spacing: 20px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
    font-family: 'Arial', sans-serif;
    font-stretch: ultra-expanded;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #b0b0b0;
}

.filter-section {
    background: rgba(0,0,0,0.2);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.filter-tabs {
    display: inline-flex;
    gap: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 50px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 16px 32px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.filter-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.filter-btn.active {
    background: linear-gradient(45deg, #666, #999);
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.gallery {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery-row.wide-layout {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.gallery-row.wide-layout .gallery-item {
    height: 40vh;
    aspect-ratio: 18/9;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 70vh;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    background: #333;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    border-color: rgba(255,255,255,0.3);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 1;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 60px 40px 40px;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.overlay-category {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ccc;
    font-weight: 300;
}

.overlay-description {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-top: 15px;
    line-height: 1.6;
    color: #fff;
    font-weight: 300;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalZoom 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

@keyframes modalZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-image {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 100px rgba(0,0,0,0.8);
}

.modal-video {
    max-width: 95vw;
    max-height: 95vh;
    width: 800px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 0 100px rgba(0,0,0,0.8);
}

.modal-close {
    position: fixed;
    top: 40px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    background: rgba(0,0,0,0.7);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.modal-close:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    font-size: 24px;
    font-weight: 300;
}

.modal-nav:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
    left: 30px;
}

.modal-nav.next {
    right: 30px;
}

.modal-info {
    position: fixed;
    bottom: 60px;
    left: 60px;
    color: white;
    text-align: left;
    z-index: 1001;
}

.modal-category {
    display: none;
}

.modal-description {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
    z-index: 2000;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 40px;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #666, #999);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-text {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInText 0.8s ease 0.3s forwards;
}

.loading-bar-container {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #666, #999, #ccc);
    border-radius: 1px;
    animation: loadingProgress 2.5s ease-in-out forwards;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

.loading-studio {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 30px;
    opacity: 0;
    animation: fadeInText 0.8s ease 1.5s forwards;
}

/* About Section */
.about-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    z-index: 1500;
    overflow-y: auto;
    padding-top: 80px;
}

.about-section.active {
    display: block;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px 10px 80px;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h2 {
    font-size: 3.5rem;
    font-weight: 100;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.about-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text h3,
.about-services h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: 300;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.service-item h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}

.service-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item h4 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 100;
}

.stat-item p {
    font-size: 1rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Works Section */
.works-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    z-index: 1500;
    overflow-y: auto;
    padding-top: 80px;
}

.works-section.active {
    display: block;
}

.works-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px 10px 80px;
}

.works-header {
    text-align: center;
    margin-bottom: 60px;
}

.works-header h2 {
    font-size: 3.5rem;
    font-weight: 100;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.works-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.works-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.works-tab {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #888;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.works-tab:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.works-tab.active {
    background: linear-gradient(45deg, #666, #999);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.film-subcategory-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.film-subcategory-tab {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.15);
    color: #777;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.film-subcategory-tab:hover {
    background: rgba(255,255,255,0.08);
    color: #ccc;
    border-color: rgba(255,255,255,0.3);
}

.film-subcategory-tab.active {
    background: linear-gradient(45deg, #555, #777);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(255,255,255,0.15);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.work-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #666, #999);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.work-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.work-card:hover::before {
    transform: scaleX(1);
}

.work-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 1px;
}

.work-artist {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 12px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
}

.work-category {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-platform {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,0,0,0.15), rgba(0,100,255,0.15));
    border: 1px solid rgba(255,100,100,0.3);
    color: #ff6b6b;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.work-card:hover .work-platform {
    background: linear-gradient(135deg, rgba(255,0,0,0.25), rgba(0,100,255,0.25));
    border-color: rgba(255,100,100,0.5);
    transform: translateY(-2px);
}

.work-year {
    font-size: 1.1rem;
    color: #999;
    font-weight: 300;
    margin-bottom: 15px;
}

.work-awards-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.work-card:hover .work-awards-badge {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Awards Modal */
.awards-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.awards-content {
    background: rgba(40, 40, 40, 0.98);
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.awards-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.awards-close-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.awards-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.awards-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.awards-subtitle {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 300;
    letter-spacing: 1px;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.award-entry {
    background: rgba(255,255,255,0.03);
    border-left: 3px solid #ffd700;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.award-entry:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.award-festival {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-weight: 400;
}

.award-name {
    font-size: 1rem;
    color: #ffd700;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    z-index: 1500;
    overflow-y: auto;
    padding-top: 80px;
}

.contact-section.active {
    display: block;
}

/* Facility Section */
.facility-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    z-index: 1500;
    overflow-y: auto;
    padding-top: 80px;
}

.facility-section.active {
    display: block;
}

.facility-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px 10px 80px;
}

.facility-header {
    text-align: center;
    margin-bottom: 80px;
}

.facility-header h2 {
    font-size: 3.5rem;
    font-weight: 100;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.facility-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.facility-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.facility-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 300;
    margin-bottom: 15px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.facility-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.facility-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #666, #999);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-info {
    padding: 30px;
}

.facility-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.facility-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.facility-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.facility-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #b0b0b0;
}

.facility-spec-item::before {
    content: '•';
    color: #999;
    font-size: 1.5rem;
}

.facility-highlight {
    background: rgba(255,255,255,0.05);
    border-left: 3px solid #999;
    padding: 30px;
    border-radius: 10px;
    margin: 60px 0;
}

.facility-highlight h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.facility-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 300;
}

@media (max-width: 768px) {
    .facility-header h2 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .facility-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .facility-intro {
        padding: 30px 20px;
        margin-bottom: 50px;
    }

    .facility-intro p {
        font-size: 1rem;
    }
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px 10px 80px;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h2 {
    font-size: 3.5rem;
    font-weight: 100;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.contact-item h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}

.contact-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
    margin: 5px 0;
}

.contact-form-container {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
}

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

.submit-btn {
    background: linear-gradient(45deg, #666, #999);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #777, #aaa);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.business-hours {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.business-hours h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hours-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hours-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}

.hours-item p {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 300;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.scroll-to-top:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateX(-50%) translateY(-3px);
}

.scroll-to-top::before {
    content: "↑";
    color: white;
    font-size: 24px;
    font-weight: 300;
}

/* Channel Talk Position - Keep on Right */
/* Note: !important is required to override Channel Talk's inline styles */
#ch-plugin {
    left: auto !important;
    right: 30px !important;
}

#ch-plugin-launcher {
    left: auto !important;
    right: 30px !important;
}

iframe#ch-plugin-core {
    left: auto !important;
    right: 30px !important;
}

.gallery-item.loading {
    background: linear-gradient(90deg, #444 0%, #555 50%, #444 100%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
}

.gallery-item.loading::before {
    content: "Loading...";
    color: #aaa;
    font-size: 1.2rem;
    z-index: 3;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.gallery-item {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.3s ease;
}

.dice-overlay.show {
    display: flex;
}

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

.dice {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    animation: rollDice 1.5s ease-out;
}

@keyframes rollDice {
    0% { transform: rotate3d(1, 1, 1, 0deg); }
    25% { transform: rotate3d(1, 1, 1, 180deg); }
    50% { transform: rotate3d(1, 1, 1, 360deg); }
    75% { transform: rotate3d(1, 1, 1, 540deg); }
    100% { transform: rotate3d(1, 1, 1, 720deg); }
}

.dice-face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
        letter-spacing: 15px;
    }
    header {
        padding: 130px 0 60px;
    }
    .filter-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    .gallery-row.wide-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gallery-row.wide-layout .gallery-item {
        height: 20vh;
    }
    .gallery-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gallery-item {
        height: 20vh;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    h1 {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }

    header {
        padding: 100px 0 40px;
    }

    /* Mobile Navigation */
    .navbar {
        padding: 15px 0;
    }

    .navbar-container {
        padding: 0 5px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.85rem;
        letter-spacing: 1px;
        padding: 5px 0;
    }

    .filter-tabs {
        flex-direction: row;
        width: auto;
        max-width: 100%;
        gap: 5px;
        padding: 8px;
    }
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .gallery {
        padding: 60px 0;
        gap: 30px;
    }
    .gallery-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-item {
        height: 20vh;
    }
    .modal-close {
        top: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    .modal-info {
        bottom: 15px;
        left: 15px;
    }
    .modal-description {
        font-size: 1.2rem;
    }
    .scroll-to-top {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
    }
    .scroll-to-top:hover {
        transform: translateX(-50%) translateY(-3px);
    }
    .scroll-to-top::before {
        font-size: 20px;
    }
    /* Channel Talk Mobile Position */
    /* Note: !important is required to override Channel Talk's inline styles */
    #ch-plugin,
    #ch-plugin-launcher,
    iframe#ch-plugin-core {
        right: 20px !important;
    }
    .overlay-description {
        font-size: 1.2rem;
    }
    .loading-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .loading-bar-container {
        width: 250px;
    }
    .loading-studio {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    .about-header h2 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stat-item h4 {
        font-size: 2.5rem;
    }
    .works-header h2 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    .works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .work-card {
        padding: 25px;
    }
    .work-title {
        font-size: 1.5rem;
    }
    .work-artist {
        font-size: 1rem;
    }
    .works-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }
    .works-tab {
        padding: 12px 25px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    .film-subcategory-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }
    .film-subcategory-tab {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    .contact-header h2 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 10px;
    }

    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 5px;
    }

    header {
        padding: 90px 0 30px;
    }

    /* Film subcategory tabs for very small screens */
    .film-subcategory-tabs {
        gap: 5px;
    }

    .film-subcategory-tab {
        padding: 6px 15px;
        font-size: 0.75rem;
    }

    /* Work images modal for very small screens */
    .work-images-modal-content {
        margin: 40px auto;
        padding: 15px;
    }

    .work-images-header h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .work-images-header .modal-close {
        font-size: 30px;
    }

    .pagination-btn {
        padding: 12px;
        font-size: 0.9rem;
    }

    #workImagesPageInfo {
        font-size: 0.9rem;
    }

    /* Works tabs */
    .works-tab {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

/* Work Images Modal */
.work-images-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
}

.work-images-modal-content {
    position: relative;
    margin: 80px auto;
    padding: 40px;
    width: 90%;
    max-width: 1400px;
}

.work-images-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.work-images-header h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0;
}

.work-images-header .modal-close {
    color: #fff;
    font-size: 50px;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.work-images-header .modal-close:hover {
    color: #888;
    transform: rotate(90deg);
}

.work-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.work-images-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.work-images-grid img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.work-images-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#workImagesPageInfo {
    color: #aaa;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .work-images-modal-content {
        margin: 60px auto;
        padding: 20px;
        width: 95%;
    }

    .work-images-header h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .work-images-header .modal-close {
        font-size: 35px;
    }

    .work-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .work-images-grid img {
        height: 250px;
    }

    .work-images-pagination {
        flex-direction: column;
        gap: 15px;
    }

    .pagination-btn {
        width: 100%;
        padding: 15px;
    }
}
