﻿/* Loading Screen */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s ease-out;
}

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

.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/loading.png');
    background-size: 150%;
    background-position: center;
    background-repeat: repeat;
    animation: slideToBottomRight 6s linear infinite;
    z-index: 1;
}

.loading-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.loading-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.title {
    font-family: 'Arial', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    -webkit-text-stroke: clamp(1px, 0.5vw, 3px) white;
    color: transparent;
    position: relative;
}

.title::after {
    content: 'CAST FILM FORUM';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    animation: fillText 4s linear forwards;
    font-family: 'Arial', sans-serif;
    font-weight: 900;
}

.loading-spinner {
    margin-top: 20px;
}

.spinner {
    width: clamp(60px, 12vw, 120px);
    height: clamp(60px, 12vw, 120px);
    border: clamp(6px, 1.2vw, 12px) solid rgba(255, 255, 255, 0.3);
    border-top: clamp(6px, 1.2vw, 12px) solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes slideToBottomRight {
    0% {
        background-position: center center;
    }

    100% {
        background-position: 100% 0%;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fillText {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .title {
        font-size: clamp(2rem, 6vw, 4rem);
        margin-bottom: 20px;
        letter-spacing: clamp(0.5px, 0.3vw, 2px);
    }

    .loading-spinner {
        margin-top: 15px;
    }

    .spinner {
        width: clamp(40px, 10vw, 80px);
        height: clamp(40px, 10vw, 80px);
        border-width: clamp(4px, 1vw, 8px);
    }

    .loading-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: clamp(1.5rem, 5vw, 3rem);
        margin-bottom: 15px;
        letter-spacing: clamp(0.3px, 0.2vw, 1px);
    }

    .loading-spinner {
        margin-top: 10px;
    }

    .spinner {
        width: clamp(30px, 8vw, 60px);
        height: clamp(30px, 8vw, 60px);
        border-width: clamp(3px, 0.8vw, 6px);
    }

    .loading-content {
        padding: 10px;
    }
}

/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    /* Kirli beyaz arka plan */
    color: #2c2c2c;
    /* Antrasit yazı rengi */
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    position: relative;
}

/* Dark Mode Styles */
body[data-theme="dark"] {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body[data-theme="dark"] .sidebar {
    background-color: #2d2d2d;
    border-right-color: #404040;
}

body[data-theme="dark"] .header {
    background-color: #2d2d2d;
    border-bottom-color: #404040;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .main-content {
    background-color: #1a1a1a;
}

body[data-theme="dark"] .section-content {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

body[data-theme="dark"] .featured-item,
body[data-theme="dark"] .latest-item {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

body[data-theme="dark"] .nav-menu a {
    color: #e0e0e0;
}

body[data-theme="dark"] .nav-menu a:hover {
    background-color: #404040;
    color: #ffffff;
}

body[data-theme="dark"] .nav-menu a.active {
    background-color: #404040;
    color: #ffffff;
}

body[data-theme="dark"] .logo {
    background-color: #2d2d2d;
    border-bottom-color: #404040;
}

body[data-theme="dark"] .logo h1 {
    color: #e0e0e0;
}

body[data-theme="dark"] .logo i {
    color: #e0e0e0;
}

body[data-theme="dark"] .sidebar-header {
    background-color: #2d2d2d;
    border-bottom-color: #404040;
}

body[data-theme="dark"] .sidebar-toggle {
    background: #404040;
    color: #e0e0e0;
    border-color: #555;
}

body[data-theme="dark"] .sidebar-toggle:hover {
    background-color: #555;
    color: #ffffff;
}

body[data-theme="dark"] .header h2 {
    color: #e0e0e0;
}

body[data-theme="dark"] .featured-section h3,
body[data-theme="dark"] .latest-section h3 {
    color: #e0e0e0;
}

body[data-theme="dark"] .featured-item h4,
body[data-theme="dark"] .latest-item h4 {
    color: #e0e0e0;
}

body[data-theme="dark"] .featured-item p,
body[data-theme="dark"] .latest-item p {
    color: #b0b0b0;
}

body[data-theme="dark"] .item-info h4 {
    color: #e0e0e0;
}

body[data-theme="dark"] .item-info p {
    color: #b0b0b0;
}

body[data-theme="dark"] .rating {
    color: #ffa500;
}

body[data-theme="dark"] .section-content h2 {
    color: #e0e0e0;
}

body[data-theme="dark"] .section-title {
    color: #e0e0e0;
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
}

body[data-theme="dark"] .section-content p {
    color: #b0b0b0;
}

body[data-theme="dark"] .about-content {
    background-color: #404040;
}

body[data-theme="dark"] .about-content h3 {
    color: #e0e0e0;
}

body[data-theme="dark"] .about-content p {
    color: #b0b0b0;
}

body[data-theme="dark"] .producer-card,
body[data-theme="dark"] .director-card,
body[data-theme="dark"] .actor-card,
body[data-theme="dark"] .platform-card {
    background-color: #404040;
}

body[data-theme="dark"] .producer-card h3,
body[data-theme="dark"] .director-card h3,
body[data-theme="dark"] .actor-card h3,
body[data-theme="dark"] .platform-card h3 {
    color: #e0e0e0;
}

body[data-theme="dark"] .producer-card p,
body[data-theme="dark"] .director-card p,
body[data-theme="dark"] .actor-card p,
body[data-theme="dark"] .platform-card p {
    color: #b0b0b0;
}

body[data-theme="dark"] .contact-item {
    background-color: #404040;
}

body[data-theme="dark"] .contact-item i {
    color: #e0e0e0;
}

body[data-theme="dark"] .contact-item span {
    color: #e0e0e0;
}

body[data-theme="dark"] .poster-placeholder,
body[data-theme="dark"] .item-poster,
body[data-theme="dark"] .producer-avatar,
body[data-theme="dark"] .director-avatar,
body[data-theme="dark"] .actor-avatar,
body[data-theme="dark"] .platform-logo {
    background-color: #404040;
    color: #666;
}

.container {
    display: flex;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    top: 0;
    left: 0;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: fixed;
    top: 20px;
    left: 20px;
}

/* Dark Mode Hamburger Menu Button */
body[data-theme="dark"] .hamburger-menu {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 6px;
    padding: 0;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #2c2c2c;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Hamburger Menu */
body[data-theme="dark"] .hamburger-menu span {
    background-color: #e0e0e0 !important;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.1) !important;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Dark Mode Active Hamburger Menu */
body[data-theme="dark"] .hamburger-menu.active span:nth-child(1),
body[data-theme="dark"] .hamburger-menu.active span:nth-child(3) {
    background-color: #e0e0e0 !important;
}

/* Sol Sidebar */
.sidebar {
    width: 280px;
    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fafafa;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.logo i {
    color: #666;
    font-size: 1.8rem;
    min-width: 24px;
}

.logo-text {
    transition: opacity 0.3s ease;
}

.sidebar.collapsed .logo-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar-toggle {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.sidebar-toggle:hover {
    background-color: #2c2c2c;
    color: white;
    border-color: #2c2c2c;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

/* Navigasyon Menüsü */
.nav-menu {
    flex: 1;
    padding: 20px 0;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 5px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.nav-menu a:hover {
    background-color: #e8e8e8;
    border-left-color: #2c2c2c;
    color: #000;
    transform: translateX(5px);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.nav-menu a.active {
    background-color: #e0e0e0;
    border-left-color: #2c2c2c;
    font-weight: 600;
    color: #000;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.nav-menu i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: #666;
    min-width: 20px;
}

.nav-text {
    transition: opacity 0.3s ease;
}

.sidebar.collapsed .nav-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar.collapsed .nav-menu a {
    padding: 15px 20px;
    justify-content: center;
}

.sidebar.collapsed .nav-menu a:hover {
    transform: scale(1.1);
    background-color: #e8e8e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar.collapsed .nav-menu i {
    margin-right: 0;
}

/* Tooltip for collapsed sidebar */
.sidebar.collapsed .nav-link:hover::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2c2c2c;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 1001;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sidebar.collapsed .nav-link:hover::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: #2c2c2c;
    z-index: 1001;
    margin-left: 5px;
}


/* Ana İçerik Alanı */
.main-content {
    flex: 1;
    margin-left: 280px;
    background-color: #f5f5f5;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
    top: 0;
}

.sidebar.collapsed+.main-content {
    margin-left: 70px;
}

.sidebar.collapsed~.main-content .header {
    margin-left: 0;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
    margin: 0;
    transition: all 0.3s ease;
}

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

.header h2 {
    color: #2c2c2c;
    font-size: 1.8rem;
    font-weight: 600;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #2c2c2c, #444);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.login-btn:hover {
    background: linear-gradient(45deg, #444, #666);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-btn i {
    font-size: 1.2rem;
}

.dark-mode-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    color: #666;
    border: none;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.dark-mode-btn:hover {
    background-color: #2c2c2c;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.dark-mode-btn i {
    font-size: 1rem;
}

/* İçerik Alanı */
.content-area {
    padding: 30px;
    margin-top: 0;
    padding-top: 0;
}

/* Video Banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin: 0 0 40px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}


/* İçerik Bölümleri */
.content-section {
    display: block;
    margin-bottom: 40px;
}

/* Section Title Styling */
.section-title {
    position: sticky;
    top: 80px;
    z-index: 100;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 25px 20px;
    margin: -20px -20px 30px -20px;
    border-radius: 8px 8px 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.section-content h2 {
    color: #2c2c2c;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Öne Çıkan Bölüm */
.featured-section {
    margin-bottom: 40px;
}

.featured-section h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.featured-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.poster-placeholder {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #999;
    font-size: 3rem;
}

.featured-item h4 {
    color: #2c2c2c;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.featured-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Son Eklenenler Bölümü */
.latest-section h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.latest-list {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.latest-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.latest-item:last-child {
    border-bottom: none;
}

.latest-item:hover {
    background-color: #f8f8f8;
}

.item-poster {
    width: 80px;
    height: 120px;
    background-color: #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.item-info {
    flex: 1;
}

.item-info h4 {
    color: #2c2c2c;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.item-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffa500;
    font-weight: 600;
}

.rating i {
    font-size: 0.9rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Image Container - Resim ve overlay için wrapper */
.image-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
    display: block;
}

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

/* Gallery Overlay kaldırıldı - sadece resim zoom efekti kalacak */

/* Name Card - Kartın altında görünen isim kartı */
.name-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 15px 12px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    /* Normal z-index, resim container'ından ayrı */
}

.gallery-item:hover .name-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.name-card h4 {
    color: #2c2c2c;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #000;
}

.modal-body {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.modal-image {
    flex: 1;
    min-height: 300px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.modal-info h2 {
    color: #2c2c2c;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item strong {
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item span {
    color: #666;
    font-size: 1rem;
}

/* Dark Mode Modal */
body[data-theme="dark"] .modal-content {
    background-color: #2d2d2d;
}

body[data-theme="dark"] .modal-close {
    color: #e0e0e0;
}

body[data-theme="dark"] .modal-close:hover {
    color: #ffffff;
}

body[data-theme="dark"] .modal-info h2 {
    color: #e0e0e0;
}

body[data-theme="dark"] .modal-info p {
    color: #b0b0b0;
}

/* Dark Mode Gallery Styles */
body[data-theme="dark"] .name-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .gallery-item:hover .name-card {
    background: linear-gradient(135deg, #404040 0%, #555555 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .name-card h4 {
    color: #e0e0e0;
}

/* Dark Mode Image Container */
body[data-theme="dark"] .gallery-item {
    background: #2d2d2d;
}

body[data-theme="dark"] .detail-item strong {
    color: #e0e0e0;
}

body[data-theme="dark"] .detail-item span {
    color: #b0b0b0;
}

/* Contact Footer */
.contact-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 40px 0 20px 0;
    margin-top: 60px;
    border-top: 3px solid #404040;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.8rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-tagline {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #404040;
    color: #e0e0e0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ffa500;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #ffa500;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-value {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-button-section {
    background-color: #404040;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-button-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-btn {
    background: linear-gradient(45deg, #2c2c2c, #444);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-us-btn:hover {
    background: linear-gradient(45deg, #444, #666);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-us-btn i {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 20px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* About Modal */
.about-modal-content {
    max-width: 1000px;
    max-height: 90vh;
}

.about-modal-body {
    padding: 40px;
    overflow-y: auto;
}

.about-modal-body h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: 700;
}

/* Team Member Sections */
.team-member-section {
    display: flex;
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-photo {
    flex: 0 0 200px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image {
    width: 200px;
    height: 280px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.member-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-title {
    font-size: 0.6rem;
    font-weight: 400;
    color: #666;
    font-style: italic;
    text-transform: none;
    letter-spacing: normal;
    display: block;
    margin-top: 5px;
}

.member-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.member-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for About Modal */
@media (max-width: 768px) {
    .about-modal-content {
        max-width: 95%;
        margin: 20px;
    }

    .about-modal-body {
        padding: 20px;
    }

    .team-member-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        margin-bottom: 30px;
    }

    .member-photo {
        flex: none;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .profile-image {
        width: 160px;
        height: 220px;
        border-radius: 15px;
    }

    .member-name {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .member-title {
        font-size: 0.55rem;
        margin-top: 3px;
    }

    .member-text p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-modal-body h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .profile-image {
        width: 140px;
        height: 190px;
        border-radius: 15px;
    }

    .member-name {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .member-title {
        font-size: 0.5rem;
        margin-top: 2px;
    }

    .member-text p {
        font-size: 0.95rem;
    }
}

.highlight-label {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

.about-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.about-contact h3 {
    color: #2c2c2c;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-simple p {
    color: #666;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-simple strong {
    color: #2c2c2c;
    font-weight: 600;
}

/* Dark Mode Footer */
body[data-theme="dark"] .contact-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-top-color: #2d2d2d;
}

body[data-theme="dark"] .footer-bottom {
    border-top-color: #2d2d2d;
}

body[data-theme="dark"] .about-modal-body h2 {
    color: #e0e0e0;
}

body[data-theme="dark"] .about-text p {
    color: #b0b0b0;
}

body[data-theme="dark"] .highlight-number {
    color: #e0e0e0;
}

body[data-theme="dark"] .highlight-label {
    color: #b0b0b0;
}

body[data-theme="dark"] .about-contact h3 {
    color: #e0e0e0;
}

body[data-theme="dark"] .contact-simple p {
    color: #b0b0b0;
}

body[data-theme="dark"] .contact-simple strong {
    color: #e0e0e0;
}

body[data-theme="dark"] .about-contact {
    border-top-color: #404040;
}

/* Dark Mode for Team Member Sections */
body[data-theme="dark"] .team-member-section {
    background: #2d2d2d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .team-member-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .member-name {
    color: #e0e0e0;
}

body[data-theme="dark"] .member-title {
    color: #b0b0b0;
}

body[data-theme="dark"] .member-text p {
    color: #b0b0b0;
}

body[data-theme="dark"] .profile-image {
    border-color: #404040;
}

/* Dark Mode Contact Button */
body[data-theme="dark"] .contact-button-section {
    background-color: #2d2d2d;
}

body[data-theme="dark"] .contact-us-btn {
    background: linear-gradient(45deg, #e0e0e0, #b0b0b0);
    color: #2c2c2c;
}

body[data-theme="dark"] .contact-us-btn:hover {
    background: linear-gradient(45deg, #b0b0b0, #999);
    color: #1a1a1a;
}

/* Section Title with Filter */
.section-title-with-filter {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 25px 20px;
    margin: -20px -20px 30px -20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title-with-filter .section-title {
    margin: 0;
    flex: 1;
    text-align: center;
}

.section-title-with-filter .section-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-btn {
    background: linear-gradient(45deg, #2c2c2c, #444);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    background: linear-gradient(45deg, #444, #666);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Show More Button */
#show-more-actors-btn {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

#show-more-actors-btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Favorite Actor Styles */
.favorite-actor {
    position: relative;
    /* Border removed - all actors should look the same */
}

.favorite-text {
    color: #ffd700 !important;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Filter Modal */
.filter-modal-content {
    max-width: 900px;
    max-height: 90vh;
}

.filter-modal-body {
    padding: 40px;
    overflow-y: auto;
}

.filter-modal-body h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 700;
}

.filter-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.filter-section {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.filter-section h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 8px;
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #2c2c2c;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.filter-checkbox:hover {
    background-color: #e8e8e8;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.9rem;
}

.range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-inputs input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.range-inputs input:focus {
    outline: none;
    border-color: #2c2c2c;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.range-inputs span {
    color: #666;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.filter-group select,
.filter-group input[type="text"] {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.filter-group select:focus,
.filter-group input[type="text"]:focus {
    outline: none;
    border-color: #2c2c2c;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.filter-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.clear-filters-btn {
    background: #f8f8f8;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-filters-btn:hover {
    background: #e8e8e8;
    border-color: #ccc;
    color: #2c2c2c;
}

.apply-filters-btn {
    background: linear-gradient(45deg, #2c2c2c, #444);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-filters-btn:hover {
    background: linear-gradient(45deg, #444, #666);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Dark Mode Filter Styles */
body[data-theme="dark"] .filter-btn {
    background: linear-gradient(45deg, #e0e0e0, #b0b0b0);
    color: #2c2c2c;
}

body[data-theme="dark"] .filter-btn:hover {
    background: linear-gradient(45deg, #b0b0b0, #999);
    color: #1a1a1a;
}

body[data-theme="dark"] .filter-modal-body h2 {
    color: #e0e0e0;
}

body[data-theme="dark"] .filter-subtitle {
    color: #b0b0b0;
}

body[data-theme="dark"] .filter-section {
    background-color: #2d2d2d;
    border-color: #404040;
}

body[data-theme="dark"] .filter-section h3 {
    color: #e0e0e0;
    border-bottom-color: #e0e0e0;
}

body[data-theme="dark"] .filter-checkbox {
    color: #e0e0e0;
}

body[data-theme="dark"] .filter-checkbox:hover {
    background-color: #404040;
}

body[data-theme="dark"] .filter-group label {
    color: #e0e0e0;
}

body[data-theme="dark"] .range-inputs input,
body[data-theme="dark"] .filter-group select,
body[data-theme="dark"] .filter-group input[type="text"] {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #e0e0e0;
}

body[data-theme="dark"] .range-inputs input:focus,
body[data-theme="dark"] .filter-group select:focus,
body[data-theme="dark"] .filter-group input[type="text"]:focus {
    border-color: #e0e0e0;
    box-shadow: 0 0 0 3px rgba(224, 224, 224, 0.1);
}

body[data-theme="dark"] .range-inputs span {
    color: #b0b0b0;
}

body[data-theme="dark"] .filter-actions {
    border-top-color: #404040;
}

body[data-theme="dark"] .clear-filters-btn {
    background: #404040;
    color: #e0e0e0;
    border-color: #555;
}

body[data-theme="dark"] .clear-filters-btn:hover {
    background: #555;
    border-color: #666;
    color: #ffffff;
}

body[data-theme="dark"] .apply-filters-btn {
    background: linear-gradient(45deg, #e0e0e0, #b0b0b0);
    color: #2c2c2c;
}

body[data-theme="dark"] .apply-filters-btn:hover {
    background: linear-gradient(45deg, #b0b0b0, #999);
    color: #1a1a1a;
}

/* Dark Mode Section Title with Filter */
body[data-theme="dark"] .section-title-with-filter {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
}

body[data-theme="dark"] .section-title-with-filter .section-title {
    color: #e0e0e0;
}

/* Contact Modal Styling */
.contact-modal-content {
    max-width: 800px;
    max-height: 90vh;
}

.contact-modal-body {
    padding: 40px;
    overflow-y: auto;
}

.contact-modal-body h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 700;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-form-container {
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

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


.contact-submit-btn {
    background: linear-gradient(45deg, #2c2c2c, #444);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: linear-gradient(45deg, #444, #666);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Dark Mode Contact Modal */
body[data-theme="dark"] .contact-modal-body h2 {
    color: #e0e0e0;
}

body[data-theme="dark"] .contact-subtitle {
    color: #b0b0b0;
}

body[data-theme="dark"] .form-group label {
    color: #e0e0e0;
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #e0e0e0;
}

body[data-theme="dark"] .form-group input:focus,
body[data-theme="dark"] .form-group select:focus,
body[data-theme="dark"] .form-group textarea:focus {
    border-color: #e0e0e0;
    box-shadow: 0 0 0 3px rgba(224, 224, 224, 0.1);
}



/* Kart Tasarımları */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.producer-card,
.director-card,
.actor-card,
.platform-card {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producer-card:hover,
.director-card:hover,
.actor-card:hover,
.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.producer-avatar,
.director-avatar,
.actor-avatar,
.platform-logo {
    width: 80px;
    height: 80px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: #666;
    font-size: 2rem;
}

.producer-card h3,
.director-card h3,
.actor-card h3,
.platform-card h3 {
    color: #2c2c2c;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.producer-card p,
.director-card p,
.actor-card p,
.platform-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Hakkında Bölümü */
.about-content {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.about-content h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* İletişim Bölümü */
.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: #f0f0f0;
}

.contact-item i {
    color: #666;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #2c2c2c;
    font-weight: 500;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .sidebar-toggle {
        display: none;
    }

    .sidebar {
        width: 280px;
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar.collapsed {
        width: 280px;
    }

    .main-content {
        margin-left: 0 !important;
        width: 100%;
    }

    .header {
        left: 0;
        width: 100%;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 0;
        padding-top: 0;
        position: relative;
    }

    .header-buttons {
        gap: 8px;
    }

    .login-btn {
        align-self: auto;
        margin-top: 0;
        padding: 8px 12px;
        font-size: 12px;
    }

    .dark-mode-btn {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        padding: 6px;
    }

    .header h2 {
        margin-bottom: 0;
        margin-left: 50px;
    }

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

    .latest-item {
        flex-direction: column;
        text-align: center;
    }

    .item-poster {
        margin: 0 auto 15px auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .name-card {
        padding: 12px 8px;
    }

    .name-card h4 {
        font-size: 1.1rem;
    }

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

    /* Video Banner Responsive */
    .video-banner {
        height: 50vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 20px 15px;
    }

    .header {
        padding: 10px 15px;
    }

    .header-content {
        margin-top: 0;
        padding-top: 0;
    }

    .header h2 {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-left: 50px;
    }

    .header-buttons {
        gap: 6px;
    }

    .login-btn {
        padding: 6px 10px;
        font-size: 11px;
        margin-top: 0;
    }

    .dark-mode-btn {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
        padding: 4px;
    }

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

    .nav-menu a {
        padding: 12px 20px;
    }

    /* Video Banner Mobile */
    .video-banner {
        height: 40vh;
        min-height: 300px;
        margin-bottom: 20px;
    }

    .hamburger-menu {
        width: 25px;
        height: 25px;
        top: 15px;
        left: 15px;
    }

    .sidebar {
        width: 100%;
    }

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

    .name-card {
        padding: 10px 6px;
    }

    .name-card h4 {
        font-size: 1rem;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image {
        min-height: 200px;
    }

    .modal-info {
        padding: 20px;
    }

    .modal-info h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 20px 15px;
        top: 70px;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-button-content {
        justify-content: center;
    }

    .contact-us-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Contact Modal Responsive */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .contact-modal-body {
        padding: 20px;
    }

    .contact-modal-body h2 {
        font-size: 2rem;
    }

    /* Filter Modal Responsive */
    .filter-modal-body {
        padding: 20px;
    }

    .filter-modal-body h2 {
        font-size: 2rem;
    }

    .filter-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .filter-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .filter-actions {
        flex-direction: column;
        gap: 15px;
    }

    .clear-filters-btn,
    .apply-filters-btn {
        width: 100%;
        justify-content: center;
    }

    /* Section Title with Filter Responsive */
    .section-title-with-filter {
        top: 70px;
        padding: 20px 15px;
        margin: -15px -15px 20px -15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .section-title-with-filter .section-title {
        text-align: center;
        margin-bottom: 0;
    }
}