/* ============================================
   Font Face
   ============================================ */

@font-face {
    font-family: 'Niconne';
    src: url('../fonts/Niconne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   Global Styles
   ============================================ */

:root {
    --primary-color: #8B6914;  /* Dark Goldenrod - Ana koyu ton */
    --secondary-color: #D4A017; /* Vegas Gold - Daha koyu altın */
    --accent-color: #B8860B;    /* Goldenrod - Vurgu rengi */
    --text-color: #333;
    --text-light: #666;
    --bg-light: #FFF8DC;        /* Cornsilk - Açık krem */
    --bg-lighter: #FFFACD;      /* Lemon Chiffon - Çok açık sarı */
    --border-color: #E6D5AA;    /* Açık kahve-sarı */
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --gold-gradient-1: #D4A017; /* Gradient başlangıç */
    --gold-gradient-2: #8B6914; /* Gradient bitiş */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #FFF8DC 0%, #F4E4BC 100%);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1rem;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}

.brand-text {
    font-family: 'Niconne', cursive;
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.brand-subtext {
    font-family: 'Niconne', cursive;
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.navbar-signature {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #F4E4BC 100%);
}

.hero-content {
    padding: 2rem 0;
}

.welcome-text {
    font-family: 'Niconne', cursive;
    color: var(--primary-color);  /* Koyu altın - açık arka planda daha iyi */
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-title .highlight {
    font-family: 'Niconne', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);  /* Koyu altın */
    display: block;
    margin-top: 0.5rem;
    font-weight: 400;
}

.btn-video {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: var(--accent-color);
    border: none;
    transition: var(--transition);
}

.btn-video:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: #c0392b;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border: 8px solid var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    animation: float 6s ease-in-out infinite;
    transform: scale(1.4);
}

@keyframes float {
    0%, 100% { transform: scale(1.4) translateY(0px); }
    50% { transform: scale(1.4) translateY(-20px); }
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
    background: var(--primary-color);
    color: white;
}

.stat-box {
    padding: 2rem;
    text-align: center;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFF8DC;  /* Açık krem - koyu arka planda okunabilir */
    display: inline;
}

.stat-box .plus {
    font-size: 2rem;
    color: #FFF8DC;  /* Açık krem */
    margin-left: 5px;
}

.stat-box p {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Niconne', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ============================================
   About Section
   ============================================ */

.about-section {
    background: white;
}

.avatar-wrapper {
    padding: 2rem;
}

.avatar-img {
    max-width: 300px;
    border: 5px solid var(--primary-color);  /* Koyu altın kenar */
    box-shadow: var(--shadow-hover);
}

.biography {
    padding: 2rem;
}

.biography-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

/* ============================================
   Quotes Section
   ============================================ */

.quotes-section {
    background: var(--bg-light);
}

.quote-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border-left: 4px solid var(--primary-color);  /* Koyu altın kenar */
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    color: var(--primary-color);  /* Koyu altın */
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.quote-text {
    font-family: 'Georgia', 'Cambria', 'Times New Roman', serif;
    font-size: 1.25rem;
    font-style: normal;
    color: var(--text-color);
    margin: 0.75rem 0;
    line-height: 1.6;
    font-weight: 400;
}

.quote-author {
    font-family: 'Niconne', cursive;
    text-align: right;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 1rem;
    font-size: 1.4rem;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery-section {
    background: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    user-select: none;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.gallery-item:active {
    transform: scale(0.98);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 3rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

.gallery-overlay::after {
    content: 'Büyütmek için tıklayın';
    color: white;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.gallery-placeholder {
    background: var(--bg-light);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.gallery-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ============================================
   Productions Section
   ============================================ */

.production-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.production-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Film Poster Stili */
.production-poster {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: var(--bg-light);
}

.production-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.film-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.production-card:hover .film-poster-img {
    transform: scale(1.05);
}

/* Film Poster Placeholder */
.production-poster-placeholder {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.poster-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.production-card:hover .poster-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.poster-gradient::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(-50%, -50%); }
    100% { transform: translate(0%, 0%); }
}

.poster-title {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.poster-title i {
    font-size: 4rem;
    color: white;
    opacity: 0.4;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

.poster-title h4 {
    font-family: 'Niconne', cursive;
    color: white;
    font-size: 2.5rem;
    line-height: 1.3;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-weight: 400;
}

.production-card:hover .poster-title i {
    opacity: 0.6;
    transform: scale(1.1);
}

.production-card:hover .poster-title h4 {
    transform: scale(1.05);
}

.production-year {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 10;
}

/* Eski stil (ikon için) */
.production-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.production-image i {
    font-size: 5rem;
    color: white;
    opacity: 0.8;
}

.production-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.production-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.production-role {
    color: var(--primary-color);  /* Koyu altın */
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.production-role i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.production-description {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.98rem;
    text-align: justify;
    flex: 1;
}

.production-awards {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.production-awards h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.production-awards ul {
    list-style: none;
    padding: 0;
}

.production-awards li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

.production-awards i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.book-section {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.book-icon {
    font-size: 5rem;
    color: white;
}

.book-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.book-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   Videos Section
   ============================================ */

.video-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    box-shadow: var(--shadow-hover);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive iframe wrapper - 16:9 aspect ratio */
.responsive-iframe {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px 8px 0 0;
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.video-placeholder i {
    font-size: 5rem;
    color: #8B6914;  /* Koyu altın - YouTube logosu için */
    margin-bottom: 1rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-light);
    margin: 0;
}

.video-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.video-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-date i {
    color: var(--primary-color);
}

.channel-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.channel-icon {
    font-size: 5rem;
    color: #8B6914;  /* Koyu altın */
    margin-bottom: 1rem;
}

.channel-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   Sidebar Actions
   ============================================ */

.sidebar-actions {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    box-shadow: var(--shadow);
    min-width: 80px;
}

.sidebar-btn:hover {
    background: var(--accent-color);
    transform: translateX(-5px);
    color: white;
}

.sidebar-btn i {
    font-size: 1.5rem;
}

.sidebar-btn span {
    font-size: 0.75rem;
    font-weight: 500;
}

.appbutton {
    margin: 5px;
    width: 100%;
}

/* ============================================
   Modal
   ============================================ */

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.form-control {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 12px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 105, 20, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-danger {
    background: #B22222;  /* Firebrick - tehlike butonu için kırmızı */
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-danger:hover {
    background: #8B0000;  /* Dark Red */
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary-color);
    color: white;
    margin-top: 0;
}

.footer p {
    margin: 0;
    opacity: 0.9;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Utilities
   ============================================ */

.text-muted {
    color: var(--text-light) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-hover {
    box-shadow: var(--shadow-hover) !important;
}

