/* 
 * Main stylesheet for Martin Dejdar Fan website
 * Author: Martin Dejdar Fan Club
 * Version: 1.1
 */

/* ---------- GLOBAL STYLES ---------- */
:root {
    --primary-color: #1e73be;
    --secondary-color: #005294;
    --accent-color: #ff9900;
    --text-color: #333333;
    --light-text: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666666;
    --border-color: #dddddd;
    --success-color: #4CAF50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196F3;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.separator {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 auto 40px;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* ---------- ANIMATIONS ---------- */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s 0.3s forwards;
}

.animate-slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s 0.6s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- HEADER ---------- */
header {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin-left: 25px;
}

.main-menu li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.main-menu li a:hover,
.main-menu li a.active {
    color: var(--primary-color);
}

.main-menu li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-menu li a:hover:after,
.main-menu li a.active:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    padding-right: 20px;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
}

.cookie-buttons button {
    margin-left: 10px;
    padding: 8px 15px;
    font-size: 14px;
}

/* ---------- HERO SECTION ---------- */
.hero {
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/martin1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-text);
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* ---------- INTRO SECTION ---------- */
.intro {
    padding: 100px 0;
    background-color: #ffffff;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-image {
    flex: 0 0 40%;
}

.intro-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.intro-image img:hover {
    transform: scale(1.03);
}

.intro-text {
    flex: 0 0 60%;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

/* ---------- CAREER HIGHLIGHTS ---------- */
.career-highlights {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    margin-bottom: 20px;
}

.highlight-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.highlight-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* ---------- LATEST NEWS ---------- */
.latest-news {
    padding: 100px 0;
    background-color: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    display: block;
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ---------- GALLERY PREVIEW ---------- */
.gallery-preview {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: var(--light-text);
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light-text);
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-item span {
    font-size: 16px;
    color: var(--dark-gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-5px);
}

.social-links.large .social-link {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(30, 115, 190, 0.3);
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}

.checkbox-container label {
    display: inline;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-response {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 500;
}

.form-response.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
}

.form-response.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
}

.form-response.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
    padding: 50px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-text {
    flex: 0 0 50%;
}

.newsletter-text h3 {
    color: var(--light-text);
    margin-bottom: 10px;
}

.newsletter-text p {
    margin-bottom: 0;
    opacity: 0.9;
}

.newsletter-form {
    flex: 0 0 45%;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
    padding: 0 25px;
    background-color: var(--accent-color);
    color: var(--light-text);
}

.newsletter-form button:hover {
    background-color: #e08800;
}

/* ---------- FOOTER ---------- */
footer {
    background-color: #0a1f35;
    color: var(--light-text);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--light-text);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-nav h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-nav ul li a:hover {
    color: var(--light-text);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-social .social-links {
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-text);
}

/* ---------- PAGE TITLE ---------- */
.page-title {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.page-title h1 {
    margin-bottom: 10px;
}

.breadcrumbs {
    color: var(--dark-gray);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ---------- BIOGRAPHY PAGE ---------- */
.biography-section {
    padding: 80px 0;
}

.biography-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.biography-image {
    position: sticky;
    top: 100px;
}

.bio-info {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.bio-info h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.bio-info ul {
    list-style: none;
    padding: 0;
}

.bio-info ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.biography-text .bio-section {
    margin-bottom: 40px;
}

.biography-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.biography-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.biography-quotes {
    background-color: var(--light-gray);
    padding: 60px 0;
    margin-bottom: 80px;
}

.biography-quotes h3 {
    text-align: center;
    margin-bottom: 40px;
}

.quotes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.quote {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote i {
    color: var(--primary-color);
    font-size: 30px;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote p {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.biography-timeline {
    margin-bottom: 80px;
}

.biography-timeline h3 {
    text-align: center;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--medium-gray);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 50px;
}

.timeline-item.left {
    left: 0;
    padding-right: 50px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 50px;
}

.timeline-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item.left .timeline-content::after {
    right: -16px;
}

.timeline-item.right .timeline-content::after {
    left: -16px;
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 0;
}

.related-content {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.related-content h3 {
    text-align: center;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition);
}

.related-overlay span {
    color: var(--light-text);
    background-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.related-card:hover .related-overlay {
    opacity: 1;
}

.related-title {
    padding: 20px;
}

.related-title h4 {
    margin-bottom: 10px;
}

.related-title p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ---------- FILMOGRAPHY PAGE ---------- */
.filmography-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.filmography-navigation {
    margin-top: 50px;
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 100px;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 20px;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-5px);
}

.nav-button i {
    font-size: 24px;
    margin-bottom: 10px;
}

.nav-button span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.filmography-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.filmography-section:nth-child(even) {
    background-color: #ffffff;
}

.featured-projects {
    margin-bottom: 60px;
}

.featured-project {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.featured-project:last-child {
    margin-bottom: 0;
}

.project-image {
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.project-details {
    padding: 30px;
}

.project-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.project-meta span {
    font-size: 14px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.project-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.project-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.project-quote {
    background-color: var(--light-gray);
    padding: 20px;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 5px 5px 0;
    margin-top: 20px;
}

.project-quote p {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 0;
}

.filmography-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.filmography-item {
    display: flex;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.filmography-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.item-year {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 60px;
}

.item-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.item-details p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.theater-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.theater-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.theater-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.theater-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.theater-year {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.theater-details h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.theater-details p {
    margin-bottom: 10px;
}

.theater-details p:last-child {
    margin-bottom: 0;
}

.theater-details p strong {
    font-weight: 700;
}

.awards-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.awards-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.award-item {
    display: flex;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: flex-start;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
}

.award-item:hover .award-icon {
    background-color: #ffffff;
}

.award-item:hover .award-icon i {
    color: var(--primary-color);
}

.award-item:hover .award-details h4,
.award-item:hover .award-details p {
    color: var(--light-text);
}

.award-icon {
    background-color: var(--light-gray);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: var(--transition);
}

.award-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.award-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.award-details p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 0;
    transition: var(--transition);
}

/* ---------- GALLERY PAGE ---------- */
.gallery-intro {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.gallery-intro .intro-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.gallery-intro .intro-content p {
    font-size: 18px;
    line-height: 1.8;
}

.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.category-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--light-gray);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.category-button:hover,
.category-button.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.gallery-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.gallery-section:nth-child(even) {
    background-color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow);
    cursor: pointer;
}

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

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

.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: var(--light-text);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--light-text);
}

.share-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.share-content {
    max-width: 800px;
    margin: 0 auto;
}

.share-content h2 {
    margin-bottom: 20px;
}

.share-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 30px;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-caption {
    color: var(--light-text);
    text-align: center;
    padding: 15px 0;
    max-width: 800px;
    font-size: 16px;
}

.lightbox-nav {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.lightbox-prev,
.lightbox-next {
    background-color: transparent;
    border: none;
    color: var(--light-text);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-color);
}

/* ---------- NEWS PAGE ---------- */
.news-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.news-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-news {
    padding-right: 20px;
}

.news-article {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 40px;
}

.featured-article {
    margin-bottom: 60px;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.article-date,
.article-category {
    font-size: 14px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.article-date i,
.article-category i {
    margin-right: 5px;
    color: var(--primary-color);
}

.article-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.article-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-share {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.article-share span {
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.share-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination a.page-active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.pagination a.next-page {
    width: auto;
    padding: 0 15px;
}

.pagination a.next-page i {
    margin-left: 5px;
}

.news-sidebar {
    padding-left: 20px;
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--medium-gray);
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 45px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.search-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.search-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
    background-color: transparent;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    color: var(--primary-color);
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    transition: var(--transition);
}

.categories-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.categories-widget ul li a span {
    color: var(--dark-gray);
    font-size: 14px;
}

.recent-posts {
    display: grid;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
}

.post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.post-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.post-content h4 a {
    color: var(--text-color);
    transition: var(--transition);
}

.post-content h4 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 12px;
    color: var(--dark-gray);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border-radius: 3px;
    font-size: 12px;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.archive-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-widget ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 10px;
}

.archive-widget ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.archive-widget ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    transition: var(--transition);
}

.archive-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.archive-widget ul li a span {
    color: var(--dark-gray);
    font-size: 14px;
}

.subscribe-widget p {
    margin-bottom: 20px;
    font-size: 14px;
}

.subscribe-widget .form-group {
    position: relative;
}

.subscribe-widget input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 10px;
}

.subscribe-widget button {
    width: 100%;
}

/* ---------- CONTACT PAGE ---------- */
.contact-page {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info-card p {
    margin-bottom: 10px;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

.contact-info-card a {
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background-color: var(--light-gray);
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 80px;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.contact-faq {
    margin-top: 80px;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--light-gray);
}

.accordion-header h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.accordion-icon {
    color: var(--primary-color);
    font-size: 14px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 20px;
}

.accordion-item.active .accordion-icon i {
    transform: rotate(45deg);
}

.map-section {
    height: 450px;
    margin-bottom: 0;
}

.map-container {
    height: 100%;
    width: 100%;
}

.map-container iframe {
    border: none;
    display: block;
}

/* ---------- THANK YOU PAGE ---------- */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--light-gray);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thank-you-icon i {
    font-size: 50px;
    color: var(--light-text);
}

.thank-you-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--success-color);
}

.thank-you-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thank-you-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* ---------- POLICY PAGES ---------- */
.policy-content {
    padding: 80px 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-date {
    text-align: right;
    color: var(--dark-gray);
    font-size: 14px;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section ul li,
.policy-section ol li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
}

/* ---------- RESPONSIVE STYLES ---------- */
@media screen and (max-width: 1200px) {
    .hero h1 {
        font-size: 50px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 70px;
        left: 0;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after {
        left: -16px;
    }
    
    .timeline-item.left {
        padding-right: 0;
    }
    
    .featured-project {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 300px;
    }
    
    .news-grid-container {
        grid-template-columns: 1fr;
    }
    
    .main-news {
        padding-right: 0;
        order: 2;
    }
    
    .news-sidebar {
        padding-left: 0;
        order: 1;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .intro-content {
        flex-direction: column;
    }
    
    .intro-image,
    .intro-text {
        flex: 0 0 100%;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text,
    .newsletter-form {
        flex: 0 0 100%;
    }
    
    .newsletter-text {
        margin-bottom: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .biography-content {
        grid-template-columns: 1fr;
    }
    
    .biography-image {
        position: static;
    }
    
    .theater-item {
        grid-template-columns: 1fr;
    }
    
    .theater-year {
        margin-bottom: 15px;
        font-size: 20px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .main-menu {
        flex-direction: column;
        width: 100%;
        display: none;
        background-color: #ffffff;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-menu.active {
        display: flex;
    }
    
    .main-menu li {
        margin: 0 0 15px 0;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        margin-bottom: 20px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .policy-container {
        padding: 30px;
    }
    
    .lightbox-close {
        top: -30px;
        right: 0;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .quotes-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .thank-you-content {
        padding: 30px;
    }
    
    .thank-you-buttons {
        flex-direction: column;
    }
    
    .pagination a, 
    .pagination span {
        width: 35px;
        height: 35px;
    }
    
    .filmography-list {
        grid-template-columns: 1fr;
    }
    
    .awards-list {
        grid-template-columns: 1fr;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 8px;
    }
}