/* Atatürk Sanat Merkezi - Özel Stiller */

/* Header scroll efekti */
.header-sticky.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Animated underline */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF0000, #FBC21E);
    border-radius: 2px;
}

/* Gradient title */
.gradient-title {
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-title span {
    background: linear-gradient(135deg, #FF0000 0%, #FBC21E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Marquee animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Popular cards */
.popular-card {
    position: relative;
}

.popular-thumb {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
}

.popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popular-card:hover .popular-thumb img {
    transform: scale(1.1);
}

.popular-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popular-card:hover .popular-overlay {
    opacity: 1;
}

.popular-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF0000;
    transition: all 0.3s ease;
}

.popular-card:hover .popular-link {
    transform: translate(-50%, -50%) scale(1);
}

.popular-title {
    text-align: center;
    margin-top: 1rem;
}

.popular-title a {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #111827;
    transition: color 0.3s ease;
}

.popular-title a:hover {
    color: #FF0000;
}

/* News cards */
.news-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.news-card img {
    transition: transform 0.5s ease;
}

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

/* Hero slide */
.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Form select custom */
.form-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    padding-left: 1rem;
    height: 100%;
    background-color: transparent;
    cursor: pointer;
    font-size: 0.875rem;
    color: #4B5563;
}

.form-select-custom:focus {
    outline: none;
}

/* Mobile menu */
.mobile-menu-overlay {
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    transition: transform 0.3s ease;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

/* Play button */
.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(187, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0;
    transition: all 0.3s ease;
}

.play-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.play-btn:hover {
    transform: scale(1.1);
    background: rgba(187, 0, 0, 1);
}

/* Event slider dots */
.event-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}

.event-dots .swiper-pagination-bullet-active {
    background: #FF0000;
}

/* Hero pagination */
.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Footer overlay */
.footer-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 6, 12, 0.9);
    z-index: 0;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #FF0000;
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF0000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #CC0000;
}
