/* ================================================
   VAHAP ÜNALAN - Professional Website v5
   Clean navy design, readable fonts
   ================================================ */

:root {
    --bg-primary: #1a2332;
    --bg-secondary: #212d40;
    --bg-card: #2a3a50;
    --bg-card-hover: #344560;
    --text-primary: #e8ecf1;
    --text-secondary: #b8c4d4;
    --text-muted: #8a9bb0;
    --accent-color: #5b9bd5;
    --accent-hover: #7db3e8;
    --border-color: rgba(91, 155, 213, 0.25);
    --header-bg: rgba(26, 35, 50, 0.97);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --container-width: 1100px;
    --header-height: 60px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}
[dir="rtl"] .header-container,
[dir="rtl"] .nav-list,
[dir="rtl"] .header-right { flex-direction: row-reverse; }
[dir="rtl"] .about-layout,
[dir="rtl"] .book-item { flex-direction: row-reverse; }
[dir="rtl"] .contact-item i { margin-right: 0; margin-left: 12px; }

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 1.6rem; }
h2 { font-size: 1.15rem; }
h3 { font-size: 1rem; }
h4 { font-size: 0.9rem; }

p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover { color: var(--accent-hover); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { text-decoration: none; }
.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 22px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 0;
    position: relative;
    transition: var(--transition-fast);
}
.nav-link:hover,
.nav-link.active { color: var(--accent-color); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-selector {
    display: flex;
    gap: 4px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 4px 8px;
    font-size: 0.68rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.lang-btn:hover {
    border-color: var(--accent-color);
    color: var(--text-primary);
}
.lang-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* ================================================
   HOME PAGE
   ================================================ */
.hero-home {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-content { text-align: center; }
.hero-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.menu-cards-section {
    padding: 25px 0 50px;
}

.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition-normal);
}
.menu-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-soft);
}

.menu-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.menu-card-content {
    padding: 14px;
    text-align: center;
}

.menu-card-title {
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-section {
    padding: calc(var(--header-height) + 20px) 0 50px;
}

.about-layout {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.about-photo {
    flex-shrink: 0;
    width: 220px;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.about-content { flex: 1; }
.about-content p {
    margin-bottom: 12px;
    font-size: 0.88rem;
}
.about-content p:last-child { margin-bottom: 0; }

/* ================================================
   BOOKS PAGE
   ================================================ */
.books-section {
    padding: calc(var(--header-height) + 20px) 0 35px;
}

.series-header {
    text-align: center;
    margin-bottom: 18px;
}

.series-title {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.series-subtitle {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.series-intro {
    max-width: 850px;
    margin: 0 auto 28px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.75;
}

.books-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.book-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.book-item.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(91, 155, 213, 0.08) 100%);
}

.book-cover-container {
    flex-shrink: 0;
    width: 280px;
}

.book-cover {
    width: 100%;
    height: auto;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card);
}
.book-cover:hover { transform: scale(1.02); }

.book-details { flex: 1; }

.book-number {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.book-copyright {
    display: block;
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.book-title {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.book-title-local {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.book-description {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.book-description p {
    margin-bottom: 8px;
    font-size: 0.78rem;
}
.book-description p:last-child { margin-bottom: 0; }

.book-postponed {
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--accent-color);
    font-style: italic;
}

.theory-book-section {
    padding: 30px 0 50px;
    background: var(--bg-secondary);
}

.book-item.theory {
    max-width: 850px;
    margin: 0 auto;
}

.book-category {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

/* ================================================
   FILM PAGE
   ================================================ */
.film-hero {
    position: relative;
    min-height: 32vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.film-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.film-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
}

.film-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.film-main-title {
    font-size: 1.7rem;
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.film-title-local {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.logline-section {
    padding: 28px 0;
    background: var(--bg-secondary);
}

.logline-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 0.72rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.logline-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.75;
}

.film-section {
    padding: 35px 0;
}
.film-section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-title {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 22px;
    color: var(--text-primary);
}

.special-list {
    display: grid;
    gap: 12px;
    max-width: 850px;
    margin: 0 auto;
}

.special-list-item {
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}
.special-list-item h4 {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--accent-color);
}
.special-list-item p {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.scenes-list-vertical,
.press-list-vertical {
    display: grid;
    gap: 10px;
    max-width: 850px;
    margin: 0 auto;
}

.scene-list-item,
.press-list-item {
    padding: 14px 18px;
    background: var(--bg-card);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 6px 6px 0;
}
.scene-list-item h4,
.press-list-item h4 {
    font-size: 0.82rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}
.scene-list-item p,
.press-list-item p {
    font-size: 0.76rem;
    color: var(--text-secondary);
}

.research-note {
    text-align: center;
    margin-top: 18px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
}

.scene-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.scene-gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.scene-gallery-item img:hover { transform: scale(1.04); }

.scene-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 850px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 6px;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    font-size: 0.76rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 6px;
}

.industry-section {
    padding: 35px 0;
    background: var(--bg-secondary);
}

.industry-header {
    text-align: center;
    margin-bottom: 22px;
}

.industry-subtitle {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.password-section {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}

.password-form {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.password-input {
    flex: 1;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 0.82rem;
}
.password-input:focus {
    outline: none;
    border-color: var(--accent-color);
}
.password-input::placeholder { color: var(--text-muted); }

.password-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.protected-content {
    margin-top: 22px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
}

.level-title {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.protected-grid {
    display: grid;
    gap: 15px;
}

.protected-item h4 {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.storyboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.storyboard-grid img {
    width: 100%;
    border-radius: 5px;
}

/* ================================================
   PRESS PAGE
   ================================================ */
.press-section {
    padding: calc(var(--header-height) + 20px) 0 35px;
}

.press-gallery-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 35px;
}

.gallery-item-large img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.gallery-item-large img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.press-videos-section {
    margin-bottom: 35px;
}

.videos-grid-2x4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.video-item {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 10px 12px;
}

.video-title {
    font-size: 0.78rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.video-time {
    font-size: 0.68rem;
    color: var(--accent-color);
}

.press-links-section {
    margin-bottom: 35px;
}

.news-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.news-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition-fast);
}
.news-link-item:hover {
    border-color: var(--accent-color);
    background: var(--bg-card-hover);
}
.news-link-item i {
    color: var(--accent-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.news-link-item span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.press-download-section {
    padding: 30px 0;
    background: var(--bg-secondary);
}

.press-download-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.download-info i {
    font-size: 1.6rem;
    color: var(--accent-color);
}
.download-info h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.download-info p {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section {
    padding: calc(var(--header-height) + 20px) 0 50px;
}

.contact-card {
    max-width: 520px;
    margin: 0 auto 30px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
}

.company-name {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.contact-details { text-align: left; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item i {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-top: 2px;
    width: 18px;
    text-align: center;
}
.contact-item span,
.contact-item a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-link { color: var(--text-primary) !important; }
.hidden { display: none !important; }

.links-section {
    padding: 30px 0 50px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition-fast);
}
.link-card:hover {
    border-color: var(--accent-color);
    background: var(--bg-card-hover);
}
.link-card i {
    font-size: 1.1rem;
    color: var(--accent-color);
}
.link-card span {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.contact-form-section {
    padding: 30px 0;
    background: var(--bg-secondary);
}

.contact-form {
    max-width: 450px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 0.82rem;
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.success-message {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(91, 155, 213, 0.15);
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    color: var(--accent-color);
    text-align: center;
    font-size: 0.82rem;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}
.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
}

.footer .container {
    width: 100%;
}

.footer-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.footer-links-inline {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-links-inline a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}
.footer-links-inline a:hover { color: var(--accent-color); }

/* IMDb text link style */
.footer-imdb-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition-fast);
}
.footer-imdb-link:hover {
    border-color: #f5c518;
    color: #f5c518;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-contact-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Footer Center - Subscribe Form */
.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-subscribe-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-subscribe-form .bell-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-subscribe-form input[type="email"] {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: rgba(91, 155, 213, 0.15);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    width: 180px;
    transition: var(--transition-fast);
}

.footer-subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(91, 155, 213, 0.25);
}

.footer-subscribe-form input[type="email"]::placeholder {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.footer-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    color: #fff;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.footer-subscribe-btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

/* ================================================
   REVEAL ANIMATION
   ================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 992px) {
    .menu-cards-grid { gap: 14px; }
    .books-list { gap: 28px; }
    .book-item { padding: 20px; gap: 22px; }
    .book-cover-container { width: 240px; }
    .scene-gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .press-gallery-large { grid-template-columns: repeat(3, 1fr); }
    .news-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-height: 55px; }
    
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.05rem; }
    
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--header-bg);
        backdrop-filter: blur(10px);
        padding: 12px 18px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
        max-height: 45vh;
        overflow-y: auto;
    }
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-btn { display: block; }
    
    .language-selector { gap: 3px; }
    .lang-btn { padding: 3px 6px; font-size: 0.62rem; }
    
    .menu-cards-grid { grid-template-columns: 1fr; gap: 12px; }
    .menu-card-image { height: 130px; }
    
    .about-layout { flex-direction: column; text-align: center; }
    .about-photo { width: 170px; margin: 0 auto; }
    
    .book-item { flex-direction: column; text-align: center; }
    .book-cover-container { width: 220px; margin: 0 auto; }
    
    .scene-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .scene-videos-grid { grid-template-columns: 1fr; }
    
    .press-gallery-large { grid-template-columns: repeat(2, 1fr); }
    .videos-grid-2x4 { grid-template-columns: 1fr; }
    .news-links-grid { grid-template-columns: 1fr; }
    
    .press-download-box {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer {
        padding: 15px 0;
    }
    
    .footer-simple {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-center {
        order: -1;
    }
    
    .footer-subscribe-form {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-subscribe-form input[type="email"] {
        width: 150px;
    }
    
    .footer-links-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    [dir="rtl"] .about-layout,
    [dir="rtl"] .book-item { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 1.5rem; }
    .film-main-title { font-size: 1.2rem; }
    .book-cover-container { width: 190px; }
    .about-photo { width: 150px; }
    .storyboard-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Visually hidden but accessible to screen readers and search engines */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
