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

:root {
    --gold: #C9A96E;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --light: #f8f6f3;
    --text: #333;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--light);
    padding-top: 80px;
}

/* Header */
header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

        .logo-img {
            height: 50px;
            width: auto;
            filter: invert(1) brightness(2);
        }

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text span {
    color: #fff;
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}

/* Hero Banner */
.hero {
    padding: 0;
    margin: 0;
    line-height: 0;
}

.hero-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Content Section */
.hero-content-section {
    background: var(--dark);
    color: #fff;
    padding: 4rem 5%;
    text-align: center;
    margin: 0;
    margin-top: -1px;
}

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

.hero-content-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content-section h1 span {
    color: var(--gold);
}

.hero-content-section p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #aaa;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.btn:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: #fff;
    color: var(--dark);
}

/* Sections */
section {
    padding: 6rem 5%;
}

/* Hero Section - без отступов */
.hero {
    padding: 0;
    margin: 0;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* 5 Reasons - Slider */
.reasons {
    background: var(--dark);
    color: #fff;
    overflow: hidden;
}

.reasons .section-title {
    color: var(--gold);
}

.reasons .section-subtitle {
    color: #aaa;
}

.reasons-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.reasons-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.reasons-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reason-card {
    min-width: 350px;
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
}

.reason-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reason-card p {
    color: #aaa;
    font-weight: 300;
    line-height: 1.6;
}

/* Disciplines */
.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.discipline-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.discipline-item:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
}

.discipline-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.discipline-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.4);
    transition: background 0.3s;
}

.discipline-item:hover .discipline-image::after {
    background: rgba(26, 26, 26, 0.2);
}

.discipline-item h3 {
    padding: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    text-align: center;
}

/* News & Projects */
.news {
    background: #f0ede8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.news-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.video-wrapper {
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.plyr {
    --plyr-color-main: var(--gold);
}

.news-video-card .news-image {
    display: none;
}

.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    background: #000;
    overflow: hidden;
}

.video-container video,
.video-container .plyr {
    width: 100%;
    height: 100%;
}

/* Photo Gallery Preview */
.photo-preview {
    background: var(--darker);
    color: #fff;
}

.photo-preview .section-title {
    color: var(--gold);
}

.photo-preview .section-subtitle {
    color: #aaa;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all 0.3s;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* CTA Section */
.cta {
    background: var(--gold);
    color: var(--dark);
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta .btn {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.cta .btn:hover {
    background: transparent;
    color: var(--dark);
}

/* Footer */
footer {
    background: var(--darker);
    color: #666;
    text-align: center;
    padding: 2rem 5%;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner img {
        width: 100%;
        height: auto;
    }

    .hero-content-section h1 {
        font-size: 2.5rem;
    }

    .hero-content-section p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

        .hero-content-section h1 {
            font-size: 2.5rem;
        }

        .hero-content-section p {
            font-size: 1rem;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .hero-buttons .btn {
            width: 100%;
            max-width: 300px;
        }

    .reasons-track {
        animation: scroll-mobile 20s linear infinite;
    }

    @keyframes scroll-mobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .disciplines-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Video Preview Section */
.video-preview {
    padding: 4rem 5%;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s;
    aspect-ratio: 16/9;
}

.video-item:hover {
    transform: scale(1.03);
}

.video-item .video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}/* Общие стили для всех страниц */

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

:root {
    --gold: #C9A96E;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --light: #f8f6f3;
    --text: #333;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--light);
    padding-top: 68px;
}

/* Header */
header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: invert(1) brightness(2);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text span {
    color: #fff;
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        nav a:hover, nav a.active {
            color: var(--gold);
        }

/* Page Header styles moved to common.css to avoid conflicts */

/* Sections */
section {
    padding: 5rem 5%;
    margin: 0;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--gold);
}

/* Footer */
footer {
    background: var(--darker);
    color: #666;
    text-align: center;
    padding: 2rem 5%;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--gold);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.mobile-nav-close:hover {
    color: var(--gold);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Page header responsive styles are in common.css */
    /* .page-header { height: auto; min-height: 250px; padding: 80px 5% 30px; } */

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: flex;
    }
}/* Swiper Slider Styles */
.reasons-swiper {
    padding: 2rem 0;
}

.reasons-swiper .swiper-wrapper {
    padding-bottom: 3rem;
}

.reasons-swiper .swiper-slide {
    height: auto;
}

.reason-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
    height: 100%;
    margin-top: 5px;
}

.reason-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    margin-top: 0;
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reason-card p {
    color: #aaa;
    font-weight: 300;
    line-height: 1.6;
}

/* Swiper Navigation */
.reasons-swiper .swiper-button-next,
.reasons-swiper .swiper-button-prev {
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
}

.reasons-swiper .swiper-button-next:hover,
.reasons-swiper .swiper-button-prev:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Swiper Pagination */
.reasons-swiper .swiper-pagination-bullet {
    background: rgba(201, 169, 110, 0.3);
    opacity: 1;
}

.reasons-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* Adjust Swiper slides for better fit */
@media (min-width: 1024px) {
    .reasons-swiper .swiper-slide {
        width: calc(33.333% - 10px) !important;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .reasons-swiper .swiper-slide {
        width: calc(50% - 10px) !important;
    }
}/* About Page Styles */
.content-block {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card h3 i {
    color: var(--gold);
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    background: var(--dark);
    color: #fff;
}

.team-section .section-title {
    color: var(--gold);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255,255,255,0.05);
    padding: 0;
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.2);
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
}

.team-card h3 {
    color: var(--gold);
    margin: 1rem 0 0.5rem;
    padding: 0 1rem;
}

.team-card p {
    color: #aaa;
    font-size: 0.85rem;
    padding: 0 1rem 1rem 0;
    margin: 0;
}

.team-card p:first-of-type {
    color: var(--gold);
    font-size: 0.8rem;
}

.stats {
    background: var(--gold);
    color: var(--dark);
    padding: 4rem 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}/* Gallery Styles */
.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 350px;
    background: #000;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: #fff;
    font-size: 0.9rem;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--dark);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--dark);
}

/* Cineproject Section */
.cineproject-section {
    background: var(--darker);
    color: #fff;
    padding: 6rem 5%;
}

.cineproject-section .section-title {
    color: var(--gold);
}

.cineproject-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cineproject-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.cineproject-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cineproject-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.cineproject-overlay h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cineproject-overlay p {
    color: var(--dark);
    font-size: 1rem;
}

/* Modal Styles */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: default;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
}

.modal-close:hover {
    color: var(--gold);
}

.gallery-item,
.cineproject-card {
    cursor: pointer;
}/* Video Section Styles */
.video-section {
    background: #fff;
}

.video-section .section-title {
    color: var(--dark);
}

.video-section .section-subtitle {
    color: #666;
}

.main-video {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.main-video .video-wrapper {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

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

.plyr {
    --plyr-color-main: var(--gold);
}

.video-info {
    padding: 2rem;
    background: var(--dark);
    color: #fff;
    text-align: left;
}

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

.video-info p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.video-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.video-meta span {
    color: #888;
    font-size: 0.85rem;
}

.video-meta span strong {
    color: var(--gold);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: #fff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-description {
    background: var(--gold);
    color: var(--dark);
    padding: 4rem 5%;
    text-align: center;
}

.video-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.video-description p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}/* Contact Form Styles */
.contact-section {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--dark);
    color: #fff;
    padding: 3rem;
    border-radius: 10px;
}

.contact-info h2 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item h3 i {
    font-size: 1.3rem;
}

.contact-item p {
    color: #aaa;
    line-height: 1.6;
}

.contact-item a {
    color: var(--gold);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
}

.form-container h2 {
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-container p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background: transparent;
    color: var(--gold);
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.5;
}