/**
 * Dream Apex Pictures - Consolidated Stylesheet
 * Clean version with organized sections and consolidated styles
 */

/*--------------------------------------------------------------
# 1. Variables and Base Styles
--------------------------------------------------------------*/
:root {
    --brand-red: #cc0000;              /* Logo red */
    --brand-white: #ffffff;            /* Logo white */
    --autumn-burnt-umber: #8D4925;     /* Autumn theme color */
    --autumn-harvest-gold: #E3A738;    /* Autumn theme color */
    --autumn-gray: #5E5E5E;            /* Autumn theme color */
    --autumn-light-gray: #F5F5F5;      /* Lighter gray for backgrounds */
    --autumn-cream: #F5F5F5;           /* Cream background color */
    --autumn-tan: #F5F5F5;             /* Tan accent color */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--autumn-gray);
}

/*--------------------------------------------------------------
# 2. Button Styles
--------------------------------------------------------------*/
/* General Buttons */
.vc_btn3.vc_btn3-color-primary {
    background-color: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
}

.vc_btn3.vc_btn3-color-primary:hover {
    background-color: var(--autumn-burnt-umber) !important;
    border-color: var(--autumn-burnt-umber) !important;
}

.vc_btn3.vc_btn3-style-outline.vc_btn3-color-primary {
    color: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
}

.vc_btn3.vc_btn3-style-outline.vc_btn3-color-primary:hover {
    background-color: var(--brand-red) !important;
    color: var(--brand-white) !important;
}

/* Hero Button */
.da-hero-btn {
    display: inline-block;
    background-color: var(--brand-red);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-red);
}

.da-hero-btn:hover {
    background-color: transparent;
    color: #fff;
}

.da-hero-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.da-hero-btn:hover i {
    transform: translateX(5px);
}

/* Film Buttons */
.da-film-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: var(--brand-red);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
}

.da-film-button:hover {
    background-color: var(--autumn-burnt-umber);
    color: #fff;
}

.da-film-button.imdb {
    background-color: #f5c518;
    color: #000;
}

.da-film-button.imdb:hover {
    background-color: #e3b800;
}

.da-film-button i {
    margin-right: 8px;
}

/* Team Member Link Buttons */
.team-member-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--brand-red);
    color: var(--brand-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.team-member-link:hover {
    background-color: var(--autumn-burnt-umber);
}

.team-member-link i {
    margin-right: 8px;
}

.team-member-link.outline,
.featured-film-link.outline {
    background-color: transparent;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
}

.team-member-link.outline:hover,
.featured-film-link.outline:hover {
    background-color: var(--brand-red);
    color: var(--brand-white);
}

/* Filter/Action Buttons */
.filter-column .button {
    padding: 10px 15px;
    background-color: var(--brand-red);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-column .button:hover {
    background-color: var(--autumn-burnt-umber);
}

.reset-filters {
    white-space: nowrap;
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--autumn-gray);
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reset-filters:hover {
    background-color: #444;
    color: #fff;
}

/* Floating Back Button */
.floating-back-button {
    position: fixed;
    top: 20px;
    right: 70px; 
    z-index: 99998; 
    width: 40px;
    height: 40px;
    background-color: rgba(204, 0, 0, 0.9); 
    border: none;
    border-radius: 3px; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.floating-back-button:hover {
    background-color: var(--autumn-burnt-umber);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.floating-back-button i {
    font-size: 18px;
}

/*--------------------------------------------------------------
# 3. Hero Carousel and Sliders
--------------------------------------------------------------*/
/* Hero Carousel Styling */
.da-hero-carousel {
    position: relative;
    overflow: hidden;
}

.da-hero-slide {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
}

.da-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.da-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.da-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.da-hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 60px;
    z-index: 3;
    color: #fff;
    text-align: left;
    transform: translateY(-50%);
}

.da-hero-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.da-hero-status {
    display: inline-block;
    margin-bottom: 15px;
}

.da-hero-status span {
    display: inline-block;
    background-color: var(--brand-red);
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.da-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: var(--brand-white) !important;
}

.da-hero-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Hero Carousel Navigation */
.da-hero-carousel .slick-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.da-hero-carousel .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.da-hero-carousel .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
}

.da-hero-carousel .slick-dots li.slick-active button {
    background-color: #fff;
    width: 12px;
    height: 12px;
}

.da-hero-carousel .slick-prev,
.da-hero-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.da-hero-carousel .slick-prev:hover,
.da-hero-carousel .slick-next:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

.da-hero-carousel .slick-prev {
    left: 30px;
}

.da-hero-carousel .slick-next {
    right: 30px;
}

/* Slick Slider General Styling */
.slick-prev, 
.slick-next {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease !important;
}

.slick-prev:hover, 
.slick-next:hover {
    background: rgba(255, 255, 255, 1) !important;
}

.slick-prev {
    left: 10px !important;
}

.slick-next {
    right: 10px !important;
}

.slick-dots li button:before {
    font-size: 12px !important;
}

/*--------------------------------------------------------------
# 4. Films Display Styles
--------------------------------------------------------------*/
/* Film Status Badge Common Styles */
.status-label,
.da-film-status-badge .status-label {
    display: inline-block;
    background-color: var(--brand-red);
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Common Film Meta Elements */
.da-film-meta-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.da-film-meta-icon {
    width: 40px;
    height: 40px;
    background-color: var(--autumn-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--autumn-burnt-umber);
    font-size: 1rem;
    flex-shrink: 0;
}

.da-film-meta-label {
    font-weight: 600;
    margin-right: 10px;
    color: var(--autumn-gray);
    flex-shrink: 0;
    width: 100px;
}

.da-film-meta-value {
    color: #333;
    flex-grow: 1;
}

/* Featured Film Item Styles */
.featured-film {
    display: flex;
    flex-direction: column;
    background-color: var(--brand-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-film:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.featured-film-image {
    position: relative;
    overflow: hidden;
}

.featured-film-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.featured-film:hover .featured-film-image img {
    transform: scale(1.05);
}

.featured-film-content {
    padding: 25px;
}

.featured-film-title {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--autumn-burnt-umber);
}

.featured-film-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.featured-film-director,
.featured-film-producer {
    margin-right: 20px;
    margin-bottom: 5px;
    color: var(--autumn-gray);
}

.featured-film-director i,
.featured-film-producer i {
    color: var(--brand-red);
    margin-right: 5px;
}

.featured-film-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-film-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.featured-film-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--brand-red);
    color: var(--brand-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.featured-film-link:hover {
    background-color: var(--autumn-burnt-umber);
}

.featured-film-link i {
    margin-right: 5px;
}

/* Films Grid Display */
.da-films-grid.homepage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.da-films-grid.homepage-grid .da-film-item {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--brand-white);
}

.da-films-grid.homepage-grid .da-film-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.da-films-grid.homepage-grid .da-film-thumbnail {
    position: relative;
    overflow: hidden;
}

.da-films-grid.homepage-grid .da-film-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.da-films-grid.homepage-grid .da-film-item:hover .da-film-thumbnail img {
    transform: scale(1.1);
}

.da-films-grid.homepage-grid .da-film-status {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.da-films-grid.homepage-grid .da-film-content {
    padding: 20px;
}

.da-films-grid.homepage-grid .da-film-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.da-films-grid.homepage-grid .da-film-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--autumn-gray);
}

.da-films-grid.homepage-grid .da-film-date,
.da-films-grid.homepage-grid .da-film-director {
    margin-right: 20px;
}

.da-films-grid.homepage-grid .da-film-date i,
.da-films-grid.homepage-grid .da-film-director i {
    margin-right: 5px;
    color: var(--brand-red);
}

.da-films-grid.homepage-grid .da-film-excerpt {
    margin-bottom: 15px;
}

.da-films-grid.homepage-grid .da-film-link {
    display: inline-block;
    font-weight: 600;
    color: var(--brand-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.da-films-grid.homepage-grid .da-film-link:hover {
    color: var(--autumn-burnt-umber);
}

.da-films-grid.homepage-grid .da-film-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.da-films-grid.homepage-grid .da-film-link:hover i {
    transform: translateX(5px);
}

/* Films Poster Grid */
.da-films-poster-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.da-film-poster-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 2/3; /* Standard poster ratio */
}

.da-film-poster-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.da-film-poster-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.da-film-poster-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.da-film-poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.da-film-poster-item:hover .da-film-poster-image img {
    transform: scale(1.05);
}

.da-film-poster-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    color: #999;
    padding: 20px;
    text-align: center;
}

.da-film-poster-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.da-film-poster-status {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.da-film-poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.da-film-poster-item:hover .da-film-poster-overlay {
    opacity: 1;
}

.da-film-poster-overlay.always-show {
    opacity: 1;
}

.da-film-poster-title {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Film Cards for Archive */
.da-film-horizontal-card {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.da-film-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.da-film-card-poster {
    width: 35%;
    min-width: 250px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border: 10px solid #fff;
    margin: 20px;
    align-self: center;
}

.da-film-card-poster:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.da-film-card-poster img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.da-film-horizontal-card:hover .da-film-card-poster img {
    transform: scale(1.05);
}

.da-film-card-content {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

.da-film-card-header {
    margin-bottom: 15px;
}

.da-film-card-title {
    font-size: 1.75rem;
    margin: 0 0 15px 0;
    line-height: 1.3;
    color: var(--autumn-burnt-umber);
}

.da-film-card-title a {
    color: inherit;
    text-decoration: none;
}

.da-film-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

/* Badge Styles */
.da-film-status-badge {
    display: inline-block;
    margin-right: 15px;
}
.da-film-release-badge {
    display: inline-block;
    background-color: var(--autumn-burnt-umber);
    color: #fff;
    padding: 5px 15px;
    margin-right: 15px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
}

.da-film-duration-badge {
    display: inline-block;
    background-color: var(--autumn-tan);
    color: var(--autumn-burnt-umber);
    padding: 5px 15px;
    margin-right: 15px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
}

.da-film-card-excerpt {
    color: var(--autumn-gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.da-film-card-details {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.da-film-detail-item {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
}

.da-detail-label {
    font-weight: 600;
    margin-right: 8px;
    color: var(--autumn-gray);
    min-width: 90px;
}

.da-detail-label i {
    margin-right: 5px;
    color: var(--brand-red);
}

.da-detail-value {
    color: #333;
}

.da-film-card-footer {
    margin-top: auto;
}

.da-film-card-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand-red);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.da-film-card-link:hover {
    background-color: var(--autumn-burnt-umber);
}

.da-film-card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.da-film-card-link:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# 5. Single Film Page
--------------------------------------------------------------*/
/* Film Header with Poster */
.da-film-header {
    position: relative;
    background-color: var(--autumn-cream);
    padding: 40px 0;
    margin-bottom: 30px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.da-film-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(188, 187, 193, 0.1), transparent);
    z-index: 1;
}

.da-film-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.da-film-header-left {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.da-film-header-content-text {
    margin-top: 20px;
    color: var(--autumn-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.da-film-header-content-text p:first-child {
    margin-top: 0;
}

.da-film-categories {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(141, 73, 37, 0.2);
    font-size: 0.95rem;
}

.da-category-label {
    font-weight: 600;
    margin-right: 10px;
    color: var(--autumn-burnt-umber);
}

.da-category-label i {
    margin-right: 6px;
}

.da-category-values {
    color: var(--autumn-gray);
}

.da-film-poster {
    width: 40%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    border: 10px solid #fff;
    position: relative;
}

.da-film-poster:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.da-film-poster img {
    width: 100%;
    height: auto;
    display: block;
}

.da-film-header .entry-header {
    width: 100%;
}

.da-film-header .entry-title {
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--autumn-burnt-umber);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.da-film-header-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Film Meta Grid */
.da-film-info-grid {
    margin-bottom: 40px;
    padding: 25px 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.da-film-meta-grid {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.da-film-links {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    text-align: right;
}

/* Film Content Sections */
.da-film-content {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.da-film-trailer,
.da-film-credits, 
.da-film-gallery-section,
.da-film-materials-section,
.da-film-reviews-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.da-film-trailer h3,
.da-film-credits h3,
.da-film-gallery-section h3,
.da-film-materials-section h3,
.da-film-reviews-section h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--autumn-burnt-umber);
    border-bottom: 2px solid var(--autumn-tan);
    padding-bottom: 10px;
}

.da-trailer-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.da-trailer-embed iframe,
.da-trailer-embed object,
.da-trailer-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/* Header Laurels Section */
.da-header-laurels {
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
    padding: 15px 0;
}

.da-header-laurels .da-laurels-scroller {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--autumn-burnt-umber) #f1f1f1;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.da-header-laurels .da-laurels-scroller::-webkit-scrollbar {
    height: 6px;
}

.da-header-laurels .da-laurels-scroller::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.da-header-laurels .da-laurels-scroller::-webkit-scrollbar-thumb {
    background: var(--autumn-burnt-umber);
    border-radius: 10px;
}

.da-header-laurels .da-laurel-item {
    flex: 0 0 auto;
    width: 250px;
    padding: 5px;
    background: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.da-header-laurels .da-laurel-item:hover {
    transform: translateY(-3px);
}

.da-header-laurels .da-laurel-image {
    margin-bottom: 0;
    max-width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.da-header-laurels .da-laurel-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Film Credits Display */
.da-film-credits {
    margin: 30px 0;
}

.da-credits-section {
    margin-bottom: 30px;
}

.da-credits-title {
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.da-cast-list, .da-crew-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.da-cast-item, .da-crew-item {
    margin-bottom: 10px;
}

.da-cast-actor, .da-crew-position {
    font-weight: 600;
    color: var(--autumn-burnt-umber);
}

.da-cast-character, .da-crew-name {
    color: var(--autumn-gray);
    font-style: italic;
}

/* Film Videos Section */
.da-film-videos-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.da-film-videos-section h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--autumn-burnt-umber);
    border-bottom: 2px solid var(--autumn-tan);
    padding-bottom: 10px;
}

.da-videos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.da-video-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.da-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.da-video-title {
    padding: 15px 20px 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--autumn-burnt-umber);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.da-video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.da-video-embed iframe,
.da-video-embed object,
.da-video-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.da-video-description {
    padding: 15px 20px;
    color: var(--autumn-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.da-video-description p {
    margin: 0;
}

/* Film Reviews Section */
.da-reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
}

.da-review-quote {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    grid-column: 1 / -1; /* Make quotes span full width */
}

.da-review-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.da-review-quote-text {
    position: relative;
    padding: 0 0 0 30px;
    margin-bottom: 20px;
    color: var(--autumn-gray);
    line-height: 1.6;
}

.da-review-quote-text i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-red);
    font-size: 1.2rem;
}

.da-review-quote-attribution {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.da-review-attribution-name {
    color: var(--autumn-burnt-umber);
    margin-right: 5px;
}

.da-review-source {
    color: var(--autumn-gray);
    font-style: italic;
}

.da-review-source-link {
    color: var(--autumn-burnt-umber);
    text-decoration: none;
    transition: color 0.3s ease;
}

.da-review-source-link:hover {
    color: var(--brand-red);
}

.da-reviews-container .da-review-video {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 48%; /* Set to slightly less than 50% to account for gap */
    display: inline-block;
    vertical-align: top;
    margin: 0 1% 25px;
}

.da-review-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.da-review-video-info {
    padding: 15px 20px;
}

.da-review-video-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--autumn-burnt-umber);
}

.da-review-video-attribution {
    color: var(--autumn-gray);
    font-style: italic;
}

/*--------------------------------------------------------------
# 6. Film Archive Page
--------------------------------------------------------------*/
/* Archive Header */
.da-archive-header {
    position: relative;
    background-color: var(--autumn-cream);
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--autumn-tan);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.da-archive-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.da-archive-title {
    font-size: 2.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--autumn-burnt-umber);
    line-height: 1.3;
}

.da-archive-description {
    font-size: 1.1rem;
    color: var(--autumn-gray);
    max-width: 800px;
    margin: 0 auto;
}

.da-archive-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(188, 187, 193, 0.05), transparent);
    z-index: 1;
}

/* Films Filter */
.da-films-filter {
    background-color: var(--autumn-cream);
    padding: 20px 25px;
    border-radius: 5px;
    margin-bottom: 40px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-column {
    flex: 1;
    min-width: 170px;
}

.filter-column.filter-actions {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-width: auto;
}

.filter-column label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--autumn-burnt-umber);
}

.filter-column select,
.film-filter {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%238D4925"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-column select:focus,
.film-filter:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 2px rgba(204, 0, 0, 0.1);
}

.film-filter:hover {
    border-color: var(--autumn-burnt-umber);
}

/* Film Grid Layout */
.da-films-horizontal-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
}

.da-films-horizontal-grid.loading {
    opacity: 0.5;
}

/* AJAX Loading Indicator */
.da-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.da-loading.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.da-loading-spinner {
    width: 80px;
    height: 80px;
    background-color: var(--brand-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
    animation: pulse 1.5s infinite ease-in-out;
}

.da-loading-spinner i {
    color: white;
    font-size: 36px;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(204, 0, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
    }
}

/* No Results Message */
.da-no-posts {
    padding: 30px;
    background-color: var(--autumn-cream);
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--autumn-gray);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

/*--------------------------------------------------------------
# 7. Team Member Styles
--------------------------------------------------------------*/
/* Team Grid Layout */
.da-team-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.da-team-member {
    padding: 12px;
    margin-bottom: 24px;
}

.columns-2 .da-team-member {
    width: 50%;
}

.columns-3 .da-team-member {
    width: 33.33%;
}

.columns-4 .da-team-member {
    width: 25%;
}

/* Card styling for team members */
.da-team-member-inner {
    background-color: var(--brand-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.da-team-member-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Team member link styling */
.da-team-member-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Team photo */
.da-team-photo {
    margin-bottom: 0;
    overflow: hidden;
    line-height: 0;
}

.da-team-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.da-team-member:hover .da-team-photo img {
    transform: scale(1.05);
}

/* Content area with padding */
.da-team-content {
    padding: 15px;
}

/* Team member content styling */
.da-team-name {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--autumn-burnt-umber);
}

.da-team-position {
    color: var(--autumn-gray);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

.da-team-bio {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 4.5em;
    overflow: hidden;
    color: var(--autumn-gray);
}

/* Social links */
.da-team-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 12px;
}

.da-social-link {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: var(--autumn-gray);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.da-social-link i {
    margin-right: 5px;
    font-size: 0.9rem;
    color: var(--brand-red);
}

.da-social-link:hover {
    background-color: var(--brand-red);
    color: white;
}

.da-social-link:hover i {
    color: white;
}

/* Social media link labels */
.da-social-link.linkedin:after {
    content: 'LinkedIn';
}

.da-social-link.twitter:after {
    content: 'Twitter';
}

.da-social-link.imdb:after {
    content: 'IMDB';
}

.da-social-link.instagram:after {
    content: 'Instagram';
}

/* Team Member Bio Page */
.team-member-bio {
    display: flex;
    margin: 40px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-bio:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.team-member-bio:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-content {
    padding: 25px;
}

.team-member-name {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--autumn-burnt-umber);
}

.team-member-position {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--autumn-gray);
}

.team-member-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-member-description p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.team-member-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.team-member-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.team-member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--autumn-light-gray);
    color: var(--autumn-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-member-social a:hover {
    background-color: var(--brand-red);
    color: var(--brand-white);
}

/*--------------------------------------------------------------
# 8. News and Blog Styles
--------------------------------------------------------------*/
/* News Grid Layout */
.da-news-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.da-news-item {
    padding: 15px;
    margin-bottom: 30px;
}

.columns-2 .da-news-item {
    width: 50%;
}

.columns-3 .da-news-item {
    width: 33.33%;
}

/* News Thumbnail Standardization */
.da-news-thumbnail {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 5px;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: var(--autumn-light-gray);
}

.da-news-thumbnail img.uniform-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.da-news-item:hover .da-news-thumbnail img.uniform-image {
    transform: scale(1.05);
}

/* News Content Styling */
.da-news-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.da-news-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.da-news-excerpt {
    margin-bottom: 15px;
    overflow: hidden;
    max-height: 4.8em; /* Approximately 3 lines of text */
    line-height: 1.6;
}

.da-news-link {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}

/* Blog-style News Display */
.da-news-blog-roll {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.da-news-blog-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.da-news-blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.da-news-blog-inner {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.da-news-blog-image {
    position: relative;
    overflow: hidden;
    margin: 20px;
    border-radius: 5px;
    border: 10px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.da-news-blog-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.da-news-blog-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.da-news-blog-image img.uniform-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.da-news-blog-item:hover .da-news-blog-image img {
    transform: scale(1.05);
}

.da-news-blog-content {
    padding: 15px 30px 15px 30px;
}

.da-news-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--autumn-gray);
}

.da-news-blog-meta i {
    color: var(--brand-red);
    margin-right: 5px;
}

.da-news-blog-title {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.da-news-blog-title a {
    color: var(--autumn-burnt-umber);
    text-decoration: none;
    transition: color 0.3s ease;
}

.da-news-blog-title a:hover {
    color: var(--brand-red);
}

.da-news-blog-excerpt {
    color: var(--autumn-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.da-news-blog-link {
    display: inline-block;
    font-weight: 600;
    color: var(--brand-red);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border: 2px solid var(--brand-red);
    border-radius: 4px;
}

.da-news-blog-link:hover {
    background-color: var(--brand-red);
    color: white;
}

.da-news-blog-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.da-news-blog-link:hover i {
    transform: translateX(5px);
}

/* Single News Page */
.da-news-single {
    position: relative;
    padding-top: 60px;
    margin-bottom: 60px;
}

.da-news-single .entry-title {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--autumn-burnt-umber);
    line-height: 1.3;
}

.da-news-single .entry-meta {
    font-size: 1rem;
    color: var(--autumn-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.da-news-single .entry-meta i {
    color: var(--brand-red);
    margin-right: 6px;
}

.da-news-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding-top: 15px;
}

.da-news-featured-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    max-width: 100%;
}

.da-news-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--autumn-gray);
    padding-right: 20px;
}

.entry-content p:first-child {
    margin-top: 0;
}

.entry-content p {
    margin-bottom: 1.2em;
}

.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
    color: var(--autumn-burnt-umber);
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.entry-content blockquote {
    border-left: 3px solid var(--brand-red);
    padding-left: 1.5rem;
    margin-left: 0;
    font-style: italic;
    color: var(--autumn-gray);
    background-color: var(--autumn-cream);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 5px;
}

.da-news-footer {
    margin-top: 30px;
    padding: 25px 30px;
    background-color: var(--autumn-cream);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.da-news-tags {
    color: var(--autumn-gray);
}

.da-news-tags .tags-label {
    font-weight: 600;
    margin-right: 8px;
    color: var(--autumn-burnt-umber);
}

.da-news-tags .tags-label i {
    margin-right: 5px;
}

.da-news-tags a {
    color: var(--autumn-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.da-news-tags a:hover {
    color: var(--brand-red);
}

.da-news-share {
    text-align: right;
}

.da-news-share h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--autumn-burnt-umber);
}

.da-share-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.da-share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.da-share-button:hover {
    transform: translateY(-3px);
}

.da-share-button.facebook {
    background-color: #3b5998;
}

.da-share-button.twitter {
    background-color: #1da1f2;
}

.da-share-button.linkedin {
    background-color: #0077b5;
}

.da-share-button.email {
    background-color: var(--autumn-burnt-umber);
}

/* Related News Section */
.da-news-related {
    margin-top: 50px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.da-news-related h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--autumn-burnt-umber);
    border-bottom: 2px solid var(--autumn-tan);
    padding-bottom: 10px;
}

.da-news-related h3 i {
    margin-right: 10px;
}

.da-news-view-all {
    text-align: center;
}

/* Post Navigation */
.da-post-navigation {
    margin-top: 50px;
    border-top: 1px solid var(--autumn-tan);
    padding-top: 30px;
}

.da-post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.da-post-navigation .nav-previous,
.da-post-navigation .nav-next {
    max-width: 48%;
}

.da-post-navigation a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--autumn-gray);
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.da-post-navigation a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.da-post-navigation .post-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.da-post-navigation .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.da-post-navigation .nav-title {
    padding: 0 15px;
}

.da-post-navigation .meta-nav {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--brand-red);
    font-weight: 600;
}

.da-post-navigation .post-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--autumn-gray);
}

.da-post-navigation .nav-previous a .post-thumbnail {
    margin-right: 0;
}

.da-post-navigation .nav-next a {
    flex-direction: row-reverse;
    text-align: right;
}

.da-post-navigation .nav-next a .post-thumbnail {
    margin-left: 0;
}

/*--------------------------------------------------------------
# 9. Gallery & Media Styles
--------------------------------------------------------------*/
/* Gallery Grid Layouts */
.da-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.da-gallery-item {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.da-gallery-item:hover {
    transform: translateY(-5px);
}

.da-gallery-link {
    display: block;
}

.da-gallery-thumb {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.da-gallery-item:hover .da-gallery-thumb {
    transform: scale(1.1);
}

/* Materials Gallery */
.da-materials-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.da-material-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.da-material-item:hover {
    transform: translateY(-5px);
}

.da-material-link {
    display: block;
    width: 100%;
    height: 100%;
}

.da-material-thumb {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.da-material-item:hover .da-material-thumb {
    transform: scale(1.1);
}

/* Fancybox Integration */
.fancybox-container {
    z-index: 100000;
}

/*--------------------------------------------------------------
# 10. Other Components
--------------------------------------------------------------*/
/* Pagination Styles */
.da-pagination,
.navigation.pagination {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.da-pagination ul,
.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.da-pagination li {
    margin: 0 5px;
}

.da-pagination a,
.da-pagination span.current,
.nav-links .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.da-pagination a,
.nav-links .page-numbers {
    background-color: var(--autumn-light-gray);
    color: var(--autumn-gray);
}

.da-pagination a:hover,
.nav-links .page-numbers:hover {
    background-color: var(--autumn-tan);
}

.da-pagination span.current,
.nav-links .page-numbers.current {
    background-color: var(--brand-red);
    color: white;
}

.da-pagination .prev i,
.da-pagination .next i,
.nav-links .prev_text,
.nav-links .next_text {
    vertical-align: middle;
}

/* Testimonials */
.da-testimonials-grid {
    display: grid;
    grid-gap: 20px;
}

.da-testimonials-grid .testimonial-item {
    background-color: var(--brand-white);
    border-radius: 5px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.da-testimonials-grid .testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.da-testimonials-grid .testimonial-text:before,
.da-testimonials-grid .testimonial-text:after {
    content: '"';
    font-size: 2rem;
    line-height: 0;
    position: absolute;
    color: var(--brand-red);
}

.da-testimonials-grid .testimonial-text:before {
    left: 0;
    top: 15px;
}

.da-testimonials-grid .testimonial-text:after {
    right: 0;
    bottom: 0;
}

.da-testimonials-grid .testimonial-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.da-testimonials-grid .testimonial-position {
    font-size: 0.9rem;
    color: var(--autumn-gray);
}

/* Autumn Accent Box */
.da-autumn-accent {
    background-color: var(--autumn-cream);
    border-left: 4px solid var(--autumn-harvest-gold);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.da-autumn-accent h3 {
    margin-top: 15px;
    color: var(--autumn-burnt-umber);
}

.da-autumn-accent .da-link-arrow {
    display: inline-block;
    font-weight: 600;
    color: var(--brand-red);
    text-decoration: none;
    margin-top: 10px;
    position: relative;
}

.da-autumn-accent .da-link-arrow:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.da-autumn-accent .da-link-arrow:hover:after {
    transform: translateX(5px);
}

/* Awards Section */
.da-awards-list {
    margin-top: 20px;
}

.da-award-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--autumn-light-gray);
}

.da-award-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.da-award-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--autumn-burnt-umber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--brand-white);
    font-size: 1.5rem;
}

.da-award-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.da-award-content p {
    margin: 0;
    color: var(--autumn-gray);
}

/* Contact Section */
.da-contact-info {
    background-color: var(--autumn-cream);
    padding: 25px;
    border-radius: 5px;
    font-size: 1rem;
}

.da-contact-item {
    display: flex;
    margin-bottom: 20px;
}

.da-contact-item i {
    font-size: 1.5rem;
    color: var(--brand-red);
    margin-right: 15px;
    min-width: 25px;
    text-align: center;
}

.da-contact-text h4 {
    margin-top: 0!important;
    margin-bottom: 5px!important;
    font-size: 1.1rem;
}

.da-contact-text p {
    margin: 0;
}

.da-contact-social {
    margin-top: 30px;
}

.da-social-icons {
    display: flex;
}

.da-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--autumn-light-gray);
    color: var(--autumn-gray);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.da-social-icon:hover {
    background-color: var(--brand-red);
    color: var(--brand-white);
}

/*--------------------------------------------------------------
# 11. Responsive Styles
--------------------------------------------------------------*/
@media (min-width: 992px) {
    .da-news-content-wrap {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
    
    .da-news-featured-image {
        position: sticky;
        top: 30px;
        margin-bottom: 0;
        max-width: 400px;
        transform: rotate(2deg);
        border: 10px solid #fff;
    }
    
    .da-news-featured-image:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }
    
    .featured-film {
        flex-direction: row;
        align-items: stretch;
    }
    
    .featured-film-image {
        flex: 0 0 40%;
    }
    
    .featured-film-content {
        flex: 1;
    }
    
    .team-member-bio {
        flex-direction: row;
        align-items: stretch;
    }
    
    .team-member-image {
        flex: 0 0 30%;
        position: relative;
    }
    
    .team-member-content {
        flex: 1;
    }
    
    .da-news-blog-inner {
        flex-direction: row;
        align-items: center;
    }
    
    .da-news-blog-image {
        flex: 0 0 38%;
        max-width: 38%;
        margin-left: 25px;
    }
    
    .da-news-blog-content {
        flex: 1;
        padding-left: 40px;
    }
    
    .da-news-blog-image img.uniform-image {
        height: 320px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .da-news-related .da-news-grid.columns-3 .da-news-item {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .columns-4 .da-team-member,
    .columns-4 .da-news-item {
        width: 33.33%;
    }
    
    .da-hero-slide {
        height: 100vh;
    }
    
    .da-hero-content {
        padding: 40px;
    }
    
    .da-hero-title {
        font-size: 2.5rem;
    }
    
    .da-hero-excerpt {
        font-size: 1.1rem;
    }
    
    .da-film-meta-grid {
        gap: 10px;
    }
    
    .da-gallery,
    .da-materials-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .da-film-header-content {
        flex-direction: column-reverse;
    }
    
    .da-film-header-left {
        width: 100%;
        text-align: center;
    }
    
    .da-film-poster {
        width: 70%;
        max-width: 300px;
        margin-bottom: 30px;
    }
    
    .da-film-header .entry-header {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .da-film-header .entry-title {
        font-size: 2.5rem;
    }
    
    .da-film-horizontal-card {
        flex-direction: column;
    }
    
    .da-film-card-poster {
        width: 80%;
        max-width: 320px;
        margin: 20px auto 0;
    }
    
    .da-film-card-content {
        padding: 20px;
    }
    
    .da-news-featured-image {
        margin: 0 auto 30px;
        max-width: 500px;
    }
    
    .entry-content {
        padding-right: 0;
    }
    
    .da-team-social {
        flex-direction: column;
        gap: 6px;
    }
    
    .da-social-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .columns-3 .da-team-member,
    .columns-3 .da-news-item,
    .columns-4 .da-team-member,
    .columns-4 .da-news-item {
        width: 50%;
    }
    
    .da-cast-list, 
    .da-crew-list {
        grid-template-columns: 1fr;
    }
    
    .da-hero-slide {
        height: 100vh;
    }
    
    .da-hero-content {
        padding: 30px 20px;
    }
    
    .da-hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .da-hero-excerpt {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .da-hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .team-member-bio {
        flex-direction: column;
    }
    
    .team-member-image {
        width: 100%;
        height: 350px; /* Fixed height for mobile view */
    }
    
    .team-member-name {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .team-member-position {
        text-align: center;
    }
    
    .team-member-links {
        justify-content: center;
    }
    
    .da-gallery,
    .da-materials-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .da-film-info-grid {
        flex-direction: column;
    }
    
    .da-film-meta-grid {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .da-film-links {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .filter-column {
        flex: 0 0 100%;
    }
    
    .filter-column.filter-actions {
        margin-top: 10px;
        justify-content: flex-start;
    }
    
    .da-film-detail-item {
        flex-direction: column;
    }
    
    .da-detail-label {
        margin-bottom: 3px;
    }
    
    .da-news-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .da-news-share {
        text-align: left;
        width: 100%;
    }
    
    .da-share-buttons {
        justify-content: flex-start;
    }
    
    .da-post-navigation .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .da-post-navigation .nav-previous,
    .da-post-navigation .nav-next {
        max-width: 100%;
    }
    
    .da-news-related .da-news-grid.columns-3 .da-news-item {
        width: 100%;
    }
    
    .da-archive-title {
        font-size: 2.2rem;
    }
    
    .da-header-laurels .da-laurel-item {
        width: 100px;
    }
    
    .da-header-laurels .da-laurel-image {
        height: 70px;
    }
    
    .da-reviews-container .da-review-video {
        width: 100%;
        margin: 0 0 25px;
    }

    .da-videos-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floating-back-button {
        top: 15px;
        right: 61px; /* Position next to the menu button with some spacing */
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .columns-2 .da-team-member,
    .columns-3 .da-team-member,
    .columns-4 .da-team-member {
        width: 100%;
    }
    
    .da-news-single .entry-title {
        font-size: 2rem;
    }
    
    .da-gallery,
    .da-materials-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}