/* Custom CSS for Inonu University Short Film Festival - Poster Theme (White, Red, Black/Charcoal) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #fafafa; /* Açık arka plan */
    --bg-card: #ffffff; /* Kartlar için temiz beyaz */
    --border-color: rgba(0, 0, 0, 0.08); /* Hafif koyu sınır çizgileri */
    --primary-gold: #d92525; /* Afişteki karakteristik canlı kırmızı */
    --primary-gold-rgb: 217, 37, 37;
    --primary-gold-hover: #b91c1c; /* Koyu kırmızı hover */
    --text-muted: #52525b; /* Gri ikincil metin */
    --text-light: #18181b; /* Koyu birincil metin (Charcoal) */
    --gradient-gold: linear-gradient(135deg, #d92525 0%, #991b1b 100%); /* Kırmızı gradyan */
    --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
    --gradient-glow: radial-gradient(circle at top, rgba(217, 37, 37, 0.06) 0%, transparent 60%);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1000px;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #09090b;
}

/* Glassmorphism Navbar (Açık Tema) */
.navbar-custom {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar-custom .navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    color: #09090b !important;
}

.navbar-custom .navbar-brand span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-custom .nav-link {
    color: #52525b !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary-gold) !important;
}

/* Custom Buttons (Kırmızı Temalı) */
.btn-gold {
    background: var(--gradient-gold);
    color: #ffffff !important;
    font-weight: 600;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(217, 37, 37, 0.15);
}

.btn-gold:hover {
    background: var(--primary-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 37, 37, 0.3);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold) !important;
    border: 1px solid var(--primary-gold);
    font-weight: 600;
    padding: 0.74rem 2rem;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(217, 37, 37, 0.05);
    color: var(--primary-gold-hover) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, #fafafa 95%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #09090b;
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Premium Light Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 37, 37, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(217, 37, 37, 0.03);
}

/* Custom Badges */
.badge-gold {
    background: rgba(217, 37, 37, 0.08);
    color: var(--primary-gold);
    border: 1px solid rgba(217, 37, 37, 0.15);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styling */
.section-title-wrapper {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: #09090b;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

/* Jury Member Card (Light Theme) */
.jury-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.jury-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.jury-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.jury-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 11, 0.95) 80%);
    z-index: 2;
    transition: all 0.4s ease;
}

.jury-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 37, 37, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.jury-card:hover .jury-img-wrapper img {
    transform: scale(1.05);
}

.jury-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff; /* Bind to white inside dark gradient */
    margin-bottom: 0.25rem;
}

.jury-duty {
    font-size: 0.85rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.jury-bio {
    font-size: 0.85rem;
    color: #e4e4e7;
    margin-top: 0.75rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.jury-card:hover .jury-bio {
    opacity: 1;
    max-height: 150px;
}

/* Form Styling */
.form-custom .form-control,
.form-custom .form-select {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #09090b;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-custom .form-control:focus,
.form-custom .form-select:focus {
    background: #ffffff;
    border-color: var(--primary-gold);
    box-shadow: 0 0 12px rgba(217, 37, 37, 0.1);
    color: #09090b;
}

.form-custom label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #27272a;
    font-size: 0.9rem;
}

.form-custom .form-control::placeholder {
    color: rgba(9, 9, 11, 0.35);
}

/* Footer styling */
.footer-custom {
    background-color: #09090b; /* Alt alan koyu ve şık */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
    color: #a1a1aa;
    font-size: 0.9rem;
}

.footer-custom a {
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-custom a:hover {
    color: var(--primary-gold);
}

/* Timeline/Schedule for Festival */
.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-gold);
    box-shadow: 0 0 10px rgba(217, 37, 37, 0.4);
    border: 3px solid #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f4f4f5;
}
::-webkit-scrollbar-thumb {
    background: #d4d4d8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a1a1aa;
}

/* Carousel / Slider Custom Styling */
.carousel-item {
    position: relative;
    overflow: hidden;
}
.carousel-overlay-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(250, 250, 250, 0.98) 25%, rgba(250, 250, 250, 0.8) 60%, rgba(250, 250, 250, 0.2) 100%);
    z-index: 1;
}
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    right: 10%;
    z-index: 2;
}
.carousel-indicators-custom button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    background-color: var(--text-muted) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}
.carousel-indicators-custom .active {
    background-color: var(--primary-gold) !important;
    transform: scale(1.3);
}
.carousel-control-prev, .carousel-control-next {
    z-index: 3;
}

