/*
Theme Name: Novoria
Theme URI: https://topsakalproduction.com
Author: Oğulcan Topsakal
Author URI: https://topsakalproduction.com
Description: Topsakal Production için özel tasarlanmış bir WordPress teması.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: novoria
*/

/* ---- Temel Stiller ---- */
:root {
    --main-bg-color: #000000;
    --main-brand-color: #5e17eb;
    --text-color: #ffffff;
    --card-bg-color: #141414;
    --card-hover-color: #282828;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--main-bg-color);
    color: var(--text-color);
}

/* ---- HEADER ---- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 4% 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0,0,0,0.9);
}

.logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--main-brand-color);
            text-shadow: 0 0 10px rgba(94, 23, 235, 0.6);
        }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--main-brand-color);
}

/* ---- MOBİL MENÜ ---- */
.mobile-menu {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.4s;
}

/* ---- HERO BÖLÜMÜ ---- */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 4%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%);
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/api/placeholder/1200/800');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.5);
}

.hero-content {
    width: 100%;
    max-width: 650px;
    margin-bottom: 50px;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ccc;
}

/* ---- BUTONLAR ---- */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--main-brand-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #4a12c0;
    transform: scale(1.05);
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.2);
    margin-left: 10px;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* ---- FİLM KARTLARI ---- */
.movie-row {
    display: flex;
    overflow-x: auto;
    padding: 10px 4%;
    scroll-padding: 4%;
    scrollbar-width: none;
}

.movie-row::-webkit-scrollbar {
    display: none;
}

.movie-card {
    flex: 0 0 auto;
    width: 210px;
    height: 300px;
    margin-right: 10px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--card-bg-color);
}

.movie-card:hover {
    transform: scale(1.08);
    z-index: 10;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.movie-card:hover .movie-info {
    opacity: 1;
}

.movie-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.movie-meta {
    font-size: 0.8rem;
    color: #aaa;
}

/* ---- FOOTER ---- */
.footer {
    margin-top: 50px;
    padding: 30px 4%;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-logo {
    color: var(--main-brand-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-color);
}

.copyright {
    color: #666;
    font-size: 0.8rem;
}

/* ---- RESPONSIVE TASARIM ---- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0,0,0,0.95);
        padding: 20px 0;
        transition: left 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
    
    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .movie-card {
        width: 210px;
        height: 300px;
    }
}
