﻿:root {
    --blue: #2f80ff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color:black;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.6)), url("38531a89-2e89-4427-9070-37f244a53bbd.png") center/cover no-repeat;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35) );
    z-index: 1;
}

/* İçerik overlay’in üstünde kalsın */
.hero-overlay > .container {
    position: relative;
    z-index: 2;
}

/* TOPBAR */
.topbar {
    transition: .4s ease;
    z-index: 1000;
}

    .topbar.scrolled {
        background: #000;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,.4);
    }

/* Brand */
.brand-name {
    /* font-family: 'Montserrat', sans-serif; */
    /*letter-spacing: 2px;*/
    font-weight: bolder;
    font-size: 34px;
    letter-spacing: 0.0em;
    color:ghostwhite;
}

.brand-sub {
    font-size: 18px;
    opacity: .8;
    color: ghostwhite;
    transition: all .35s ease;
    max-height: 40px;
    
    overflow: hidden;
}

.topbar.scrolled .brand-sub {
    max-height: 0;
    opacity: 0;
    margin-top: -6px;
}

/* Menu */
.nav-link {
    /* font-family: 'Montserrat', sans-serif; */
    letter-spacing: 1.2px;
    font-size: 13px;
    position: relative;
    padding-bottom: 2px;
    text-transform:uppercase;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0px;
        height: 2px;
        background: white;
        transition: width .35s ease;
    }

    /* hover’da 10px kadar açılır */
    .nav-link:hover::after {
        width: 30px;
    }

/* Buttons */
.hero-btn {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    letter-spacing: 2px;
    /* font-family: 'Montserrat', sans-serif; */
    transition: .3s;
    text-decoration:none;
    font-weight:bold
}

    .hero-btn:hover {
        background: #003663;
        border-color: white;
    }

    .top-menu a{
        font-size:18px;
    }

/* Hamburger */
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
}

/* Slide Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -360px;
    width: 360px;
    height: 100vh;
    background: #111;
    padding: 80px 40px;
    transition: .4s cubic-bezier(.77,0,.18,1);
    z-index: 2000;
}

    .side-menu.active {
        right: 0;
    }

    .side-menu a {
        display: block;
        /* font-family: 'Montserrat', sans-serif; */
        letter-spacing: 2px;
        color: #fff;
        text-decoration: none;
        margin-bottom: 28px;
    }

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 1500;
}

    .menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.profile-photo img {
    width: 100%;
    border-radius: 6px;
}

.profile-info {
    color: #fff;
}

.info-block {
    margin-bottom: 22px;
}

.label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 4px;
}

.value {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}


.bg-black {
    background: #000;
}

.poster-img {
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
    transition: .4s;
}

    .poster-img:hover {
        transform: scale(1.05);
        z-index: 10;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
    opacity: 1;
    padding:0 20px;
}

.carousel-control-prev{
    width:0;
}
.carousel-control-next {
    width: 0;
}

.footer-section {
    background: #000;
    border-top: 1px solid rgba(255,255,255,.05);
    color:white;
}

    .footer-section small {
        color: #ccc;
        color: white;
    }

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    margin-left: 10px;
    transition: .3s;
}

    .social-btn:hover {
        background: #2f80ff;
        border-color: #2f80ff;
    }

/* Scroll To Top */
.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 44px;
    height: 44px;
    background: #2f80ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
    z-index: 999;
}

    .scroll-top-btn.show {
        opacity: 1;
        pointer-events: auto;
    }


.breadcrumb {
    margin-top: 0px;
    padding: 40px 0;
    /*background-color: white;*/
    font-size:36px;

}

.main {
    padding: 0px 0 40px;
    background-color: #1a1a1a;
    color: #c5c5c5;
}

.imdb-logo{
    max-width:90px;
    border-radius:8px;
}

.gallery-item {
    width: 100%;
    height: 220px; /* burada tüm kartların yüksekliği sabit */
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* kırpar ama bozulmaz */
        display: block;
    }

.gallery-item img{
    max-width:100%;
    max-height:100%;
    border-radius:10px;
    cursor:pointer;
}

.contact-form .field-area{
    margin-bottom:15px;
}

.contact-form .title {
    color: silver;
    margin-bottom: 5px;
}