/* =======================
   GLOBAL
======================= */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: #7E1D4C;  /* your original background */
    color: #fff;
    padding-top: 95px; /* FIX: stops text from sitting under header */
}

/* Layout */
.main-content {
    padding-top: 30px;
    padding-bottom: 60px;
}

.section-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    backdrop-filter: blur(6px);
}

/* =======================
   HEADER
======================= */
.site-header {
    width: 100%;
    background: #5A1338; /* same tone, matches your theme */
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300; /* stays on top */ 
    box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    align-items: center;
}

.site-logo {
    height: 68px;
    width: auto;
    object-fit: contain;
    padding: 0.5rem 1rem; 
    cursor: pointer;
}

/* Search bar */
.search-wrapper {
    display: flex;
    justify-content: flex-end; 
    
}

.search-input {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: rgb(77, 75, 75);
    font-size: 1rem;
}
.search-input::placeholder {
    color: rgba(100, 100, 100, 0.8);
}

/* =======================
   TITLES
======================= */
.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.section-subtitle {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    text-align: center;
}

/* =======================
   MOVIE DISPLAY
======================= */
.poster-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.movie-info-box {
    padding: 1rem;
}

.movie-label {
    font-weight: bold;
}

.movie-description {
    margin: 1rem 0;
    line-height: 1.5;
}

/* Actor + Movie Cards */
.movie-actors .callout,
.home-container .callout {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform .15s ease;
}
.movie-actors .callout:hover,
.home-container .callout:hover {
    transform: scale(1.04);
}

.movie-poster img {
    width: 100%;
    border-radius: 8px;
}

/* Rating Circle */
.movie-circle {
    background: #E91E63;
    color: #fff;
    font-weight: bold;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -20px auto 10px;
    font-size: 1rem;
}

/* =======================
   FOOTER
======================= */
.site-footer {
    background: #5A1338;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer-left,
.footer-right {
    padding: 1rem;
    font-size: 1.1rem;
}  

/* ============================
   SLIDER WRAPPER
============================ */
.slider-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* ============================
   SLIDER POSTERS
============================ */
.slick-slide img {
    width: 180px; 
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect */
.slick-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 26px rgba(0,0,0,0.6);
}

/* ============================
   SLIDE SPACING
============================ */
.slick-slide {
    padding: 10px 15px; /* nice spacing between posters */
}

/* ============================
   ARROWS
============================ */
.slick-prev:before,
.slick-next:before {
    color: #FFD4EC; /* soft pinkish white to match theme */
    font-size: 28px;
    opacity: 0.9;
    transition: 0.2s ease;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: #ffffff;
    transform: scale(1.2);
}

/* Move arrows slightly inward so they don’t stretch the layout */
.slick-prev {
    left: -25px;
}
.slick-next {
    right: -25px;
}

/* ============================
   DOTS (if used)
============================ */
.slick-dots li button:before {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: #FFD4EC; /* your soft highlight color */
}

/* ============================
   DARK GLASS SLIDER BACKGROUND
============================ */
.slick-slider {
    padding: 20px 0;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    backdrop-filter: blur(6px);
}