/* Custom Animations and Utilities */

html {
    scroll-behavior: smooth;
}

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F8FAF9;
}
::-webkit-scrollbar-thumb {
    background: #B57F66;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7F5539;
}

/* Utilities for section padding */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

/* ============================
   Marquee Animation
   ============================ */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #7F5539, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #7F5539, transparent);
}

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

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

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

/* ============================
   Reviews Slider
   ============================ */
.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   Star Rating
   ============================ */
.star-rating {
    display: inline-flex;
    gap: 2px;
}

.star-rating .star {
    color: #FBBF24;
    font-size: 1.1rem;
}

.star-rating .star.empty {
    color: #D1D5DB;
}

/* ============================
   Video Card Hover
   ============================ */
.video-card .play-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

/* ============================
   Album Card
   ============================ */
.album-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.album-card .album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(127, 85, 57, 0.85) 0%, rgba(127, 85, 57, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.album-card:hover img {
    transform: scale(1.08);
}

.album-card img {
    transition: transform 0.7s ease;
}

/* ============================
   Announcement Badge
   ============================ */
.badge-duyuru {
    background: linear-gradient(135deg, #B57F66, #C48B71);
    color: white;
}

.badge-etkinlik {
    background: linear-gradient(135deg, #7F5539, #9C6644);
    color: white;
}
