/*
Theme Name: Jakarta Fashion Week 2026
Theme URI: https://jakartafashionweek.co.id
Author: JFW Development Team
Author URI: https://jakartafashionweek.co.id
Description: A modern, dynamic WordPress theme for Jakarta Fashion Week 2026 with full Elementor support, custom post types, and advanced fashion event management features.
Version: 1.0.0
License: GPL v2 or later
Text Domain: jfw-theme
Tags: fashion, events, elementor, custom-post-types, responsive, translation-ready
*/

/* Global Variables */
:root {
    --primary-color: #3a3f74;
    --secondary-color: #f8526b;
    --third-color: #96d0bd;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --gray-dark: #333333;
    --transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
    font-family: Futura-Bk;
    src: url(assets/fonts/Futura-Bk.eot);
    src: url(assets/fonts/Futura-Bk.woff2) format("woff2"), url(assets/fonts/Futura-Bk.woff) format("woff"), url(assets/fonts/Futura-Bk.ttf) format("truetype"), url(assets/fonts/Futura-Bk.svg#Futura-Bk) format("svg"), url(assets/fonts/Futura-Bk.eot?#iefix) format("embedded-opentype");
    font-weight: 400;
    font-style: normal
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Futura-Bk', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-default);
}

.main-header.transparent {
    background: transparent;
}

.main-header.scrolled, .jfw-designer .main-header, .single .main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .navbar {
    padding: 1rem 0;
    transition: var(--transition-default);
}

.main-header.scrolled .navbar, .jfw-designer .main-header .navbar, .single .main-header .navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    height: 50px;
    width: auto;
}

.logo-img {
    height: auto;
    width: 100px;
    transition: var(--transition-default);
}

.logo-white,
.logo-black {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.logo-white {
    opacity: 1;
}

.logo-black {
    opacity: 0;
}

.main-header.scrolled .logo-white {
    opacity: 0;
}

.main-header.scrolled .logo-black, .jfw-designer .main-header .logo-black, .single .main-header .logo-black {
    opacity: 1;
}

/* Logo fallback styles when only one logo is uploaded */
.logo-wrapper .custom-logo {
    height: 50px;
    width: auto;
}

/* Text logo fallback */
.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-default);
}

.main-header.scrolled .logo-text {
    color: var(--black);
}

/* Event Info */
.event-info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition-default);
    white-space: nowrap;
}

.main-header.scrolled .event-info, .jfw-designer .main-header .event-info, .single .main-header .event-info {
    color: var(--black);
}

/* Navigation Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-icon {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-default);
    padding: 0.5rem;
}

.main-header.scrolled .nav-icon, .jfw-designer .main-header .nav-icon, .single .main-header .nav-icon {
    color: var(--black)!important;
}

.nav-icon:hover {
    opacity: 0.7;
}

.nav-link-custom {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-default);
}

.main-header.scrolled .nav-link-custom,.jfw-designer .main-header .nav-link-custom, .single .main-header .nav-link-custom {
    color: var(--black);
}

.nav-link-custom:hover {
    opacity: 0.7;
}

/* Burger Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-default);
}

.main-header.scrolled .burger-line, .jfw-designer .main-header .burger-line, .single .main-header .burger-line {
    background: var(--black);
}

.menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Side Panel */
.side-panel {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--black);
    z-index: 1100;
    transition: var(--transition-slow);
    overflow-y: auto;
}

.side-panel.active {
    right: 0;
}

.side-panel-header {
    padding: 2rem;
    text-align: right;
}

.close-panel {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-default);
}

.close-panel:hover {
    opacity: 0.7;
}

.side-panel-content {
    padding: 2rem;
}

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

.side-nav li {
    margin-bottom: 1.5rem;
}

.side-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-default);
    position: relative;
    display: inline-block;
}

.side-nav a:hover {
    opacity: 0.8;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content video,
.slide-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-text {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.slide-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.slide-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.slide-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: var(--transition-default);
    z-index: -1;
}

.btn-cta:hover {
    color: var(--black);
}

.btn-cta:hover::before {
    left: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    margin-top: -25px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: 300;
}

.swiper-pagination {
    bottom: 0px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid var(--white);
    opacity: 1;
    transition: var(--transition-default);
}

.swiper-pagination-bullet-active {
    background: var(--white);
    transform: scale(1.2);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.close-search {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-default);
}

.close-search:hover {
    opacity: 0.7;
}

.search-content {
    width: 90%;
    max-width: 800px;
}

.search-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--white);
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    font-weight: 300;
    padding: 1rem 0;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    transition: var(--transition-default);
}

.search-submit:hover {
    opacity: 0.7;
}

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

/* Signature Programs Section */
.signature-programs {
    padding: 100px 0;
    background: var(--white);
}

.signature-programs .container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.1em;
    color: var(--black);
    margin: 0;
}


/* Programs Grid Layout */
.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
}

.program-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.program-featured {
    grid-row: span 3;
}

.program-medium {
    height: 300px;
}

.program-wide {
    grid-column: span 2;
    height: 400px;
}

.program-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(0.7);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
    filter: brightness(0.5);
}

/* Program Overlay Content */
.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    transition: var(--transition-default);
}

.program-card:hover .program-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
}

.program-content {
    color: var(--white);
    width: 100%;
}

.program-tag {
    display: inline-block;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid var(--white);
    border-radius: 20px;
    margin-bottom: 15px;
}

.program-date {
    display: block;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0.8;
}

.program-headline {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0 0 10px 0;
    transition: var(--transition-default);
}

.program-featured .program-headline {
    font-size: 2.5rem;
    font-weight: 300;
}

.program-medium .program-headline {
    font-size: 1.4rem;
}

.program-wide .program-headline {
    font-size: 2rem;
}

.program-author {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.6;
    margin: 0;
}

/* New Programs Grid for Combined Section */
.programs-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.program-card-new {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.program-card-new:hover {
    transform: translateY(-10px);
}

.program-card-new .program-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.program-card-new .program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.program-content-new {
    padding: 30px;
}

.program-name {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 20px;
    letter-spacing: 0.2em;
    color: var(--black);
    margin-bottom: 15px;
}

.program-description {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    margin-bottom: 25px;
    min-height: 80px;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    transition: gap 0.3s ease;
    position: relative;
}

.program-link:hover {
    gap: 15px;
    color: var(--black);
}

.program-link i {
    font-size: 10px;
}

/* Responsive Signature Programs */
@media (max-width: 1200px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-featured {
        grid-row: span 1;
        height: 500px;
    }

    .program-wide {
        grid-column: span 1;
    }

    .programs-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .signature-programs {
        padding: 60px 0;
    }

    .signature-programs .container-fluid {
        padding: 0 20px;
    }

    .section-title,
    .programs-title {
        font-size: 32px;
        letter-spacing: 0.2em;
    }

    .programs-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }

    .programs-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-content-new {
        padding: 20px;
    }

    .program-name {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .program-description {
        min-height: auto;
    }

    .program-featured .program-headline {
        font-size: 1.8rem;
    }

    .program-medium .program-headline {
        font-size: 1.2rem;
    }

    .program-wide .program-headline {
        font-size: 1.5rem;
    }

    .program-overlay {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .signature-programs {
        padding: 40px 0;
    }

    .section-title,
    .programs-title {
        font-size: 2rem;
    }

    .program-featured {
        height: 400px;
    }

    .program-medium {
        height: 250px;
    }

    .program-wide {
        height: 300px;
    }

    .program-featured .program-headline {
        font-size: 1.5rem;
    }

    .program-medium .program-headline {
        font-size: 1.1rem;
    }

    .program-wide .program-headline {
        font-size: 1.3rem;
    }

    .program-overlay {
        padding: 20px;
    }
}

/* Single Post Entry Header */
.entry-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.entry-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: var(--black);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.entry-meta {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.875rem;
    color: var(--gray-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.entry-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.entry-meta i {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.entry-meta a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition-default);
}

.entry-meta a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Entry Header */
@media (max-width: 768px) {
    .entry-header {
        padding: 30px 20px;
    }

    .entry-title {
        font-size: 2rem;
    }

    .entry-meta {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .entry-title {
        font-size: 1.5rem;
        letter-spacing: 0.03em;
    }
}

/* Design Talents Section */
.design-talents {
    padding: 80px 0;
    background: var(--white);
}

.design-talents .container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

/* Using .section-header and .section-title for consistency */

.see-all-link {
    display: inline-block;
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-default);
}

.see-all-link .underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
    transition: var(--transition-default);
}

.see-all-link:hover {
    color: var(--gray-medium);
}

.see-all-link:hover .underline {
    background: var(--gray-medium);
}

/* Talents Carousel */
.talents-carousel {
    position: relative;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.talentsSwiper {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.talentsSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.talentsSwiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.talent-card {
    text-align: center;
    cursor: pointer;
    transition: var(--transition-default);
    width: 100%;
    height: 100%;
}

.talent-image {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: var(--gray-light);
    margin-bottom: 20px;
}

.talent-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.talent-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
    transition: var(--transition-default);
}

.talent-card:hover .talent-name,
.talent-card.touch-hover .talent-name {
    color: var(--gray-medium);
}

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

/* Talents Navigation */
.talents-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.talents-prev,
.talents-next {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    pointer-events: all;
}

.talents-prev {
    left: 0;
}

.talents-next {
    right: 0;
}

.talents-prev:hover,
.talents-next:hover {
    background: var(--black);
    color: var(--white);
}

.talents-prev i,
.talents-next i {
    font-size: 0.9rem;
}

/* Responsive adjustments for Talents Section */
@media (max-width: 768px) {
    .design-talents {
        padding: 60px 0;
    }

    .section-title,
    .talents-title {
        font-size: 2rem;
    }

    .talent-name {
        font-size: 1rem;
    }

    .talents-prev,
    .talents-next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .section-title,
    .talents-title {
        font-size: 1.8rem;
    }

    .see-all-link {
        font-size: 0.85rem;
    }

    .talents-prev {
        left: 10px;
    }

    .talents-next {
        right: 10px;
    }
}

/* News Section Styles */
.news-section {
    padding: 100px 0;
    background: var(--white);
}

.news-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Using .section-header and .section-title for consistency */

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    cursor: pointer;
    transition: var(--transition-default);
}

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

.news-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    margin-bottom: 0;
}

.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.news-content {
    padding: 20px 0 0 0;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-category,
.meta-category {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    display: inline-block;
}

.news-date,
.meta-date {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-medium);
    display: inline-block;
    position: relative;
}

.news-date::before,
.meta-date::before {
    content: '•';
    position: absolute;
    left: -10px;
    color: var(--gray-medium);
}

.news-headline,
.news-title {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--black);
    margin: 0 0 15px 0;
    transition: var(--transition-default);
}

.news-title a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition-default);
}

.news-card:hover .news-headline,
.news-card:hover .news-title a {
    color: var(--gray-dark);
}

.news-excerpt {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--black);
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition-default);
}

.read-more:hover {
    color: var(--gray-medium);
    transform: translateX(5px);
}


/* News Section Responsive */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .news-section {
        padding: 60px 0;
    }

    .section-title,
    .news-title {
        font-size: 2.5rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .news-headline {
        font-size: 1.2rem;
        min-height: 60px;
    }
}

@media (max-width: 768px) {
    .news-section .container-fluid {
        padding: 0 20px;
    }

    .section-header,
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-title,
    .news-title {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-headline {
        font-size: 1.4rem;
        min-height: auto;
    }

    .news-excerpt {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 40px 0;
    }

    .section-title,
    .news-title {
        font-size: 1.8rem;
    }

    .news-headline {
        font-size: 1.2rem;
    }

    .news-excerpt {
        font-size: 0.85rem;
    }
}

/* News Page Styles */
.news-section {
    padding-top: 0;
}

.news-section .news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.news-section .news-card.featured {
    height: 100%;
}

.news-section .news-card.featured .news-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.news-section .news-card.horizontal .news-image {
    height: 100%;
    min-height: 250px;
}

.news-section .news-card.featured-wide {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.news-section .news-card.featured-wide .news-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.news-section .news-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.news-section .news-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-section .news-card.featured .news-image img {
    height: 400px;
}

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

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.news-badge.breaking {
    background: #ff0000;
    color: white;
}

.news-badge.trending {
    background: #ff6b6b;
    color: white;
}

.news-badge.exclusive {
    background: #6c63ff;
    color: white;
}

.news-badge.eco {
    background: #00c853;
    color: white;
}

.news-badge.tech {
    background: #2196f3;
    color: white;
}

.news-badge.trend {
    background: #ff4081;
    color: white;
}

.news-badge.culture {
    background: #ffa726;
    color: white;
}

.news-section .news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-section .news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.news-section .news-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-section .news-date {
    color: #999;
}

.news-section .news-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #000;
}

.news-section .news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.news-section .read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.news-section .read-more:hover {
    color: #000;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.news-tags .tag {
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-tags .tag:hover {
    background: var(--primary-color);
    color: white;
}

/* News Page Responsive */
@media (max-width: 992px) {
    .news-section .news-card.featured .news-title {
        font-size: 1.5rem;
    }

    .news-section .news-card.featured-wide .news-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .news-section .news-card.horizontal .row {
        flex-direction: column;
    }

    .news-section .news-card.horizontal .news-image {
        min-height: 200px;
    }

    .news-section .news-card.featured .news-image img {
        height: 250px;
    }

    .news-section .news-title {
        font-size: 1.1rem;
    }

    .news-section .news-card.featured .news-title {
        font-size: 1.3rem;
    }
}

/* Partners Carousel Section */
.partners-carousel-section {
    padding: 50px 0 40px;
    background: #fafafa;
    margin-top: 60px;
}

.partners-carousel-section .section-header {
    margin-bottom: 30px;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
}

.partners-carousel .swiper {
    padding: 15px 0;
}

.partners-carousel .swiper-wrapper {
    align-items: center;
}

.partners-carousel .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.partner-logo img {
    max-height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

/* Responsive adjustments for partner logos */
@media (max-width: 768px) {
    .partners-carousel-section {
        padding: 35px 0 25px;
        margin-top: 40px;
    }

    .partner-logo {
        height: 40px;
        padding: 5px 10px;
    }

    .partner-logo img {
        max-height: 35px;
        max-width: 100px;
    }

    .partners-carousel .swiper {
        padding: 10px 0;
    }
}

/* Footer Styles */
.main-footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 1rem 3rem;
    margin-top: 0;
    font-size: 0.9rem;
}

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

/* Footer Brand */
.footer-brand {
    margin-bottom: 2rem;
}

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

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 0;
}

.footer-title sup {
    font-size: 0.7rem;
    top: -0.5em;
    margin-left: 0.2rem;
}

/* Footer About */
.footer-about {
    margin-bottom: 2rem;
}

.footer-section-title {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-about-text {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-read-more {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 0.8125rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-default);
}

.footer-read-more:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact address {
    font-style: normal;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.footer-contact strong {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-email {
    color: var(--white);
    text-decoration: underline;
    transition: var(--transition-default);
}

.footer-email:hover {
    color: var(--gray-medium);
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: var(--transition-default);
}

.footer-nav a:hover {
    color: var(--gray-medium);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition-default);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    text-decoration: none;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Footer Legal */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.copyright {
    letter-spacing: 0.05em;
}

.legal-links {
    display: inline-flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-links .footer-menu-list {
    display: inline-flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-links .footer-menu-list li {
    display: inline;
    margin: 0;
}

.legal-links a,
.legal-links .footer-menu-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition-default);
}

.legal-links a:hover,
.legal-links .footer-menu-list a:hover {
    color: var(--gray-medium);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-info {
        display: none;
    }

    .side-panel {
        width: 100%;
        right: -100%;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .slide-description {
        font-size: 0.9rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* Footer Responsive */
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        justify-content: flex-start;
    }

    .social-icons {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    .legal-links .footer-menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .legal-links .footer-menu-list li {
        display: block;
    }

    .footer-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .slide-title {
        font-size: 2rem;
    }

    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* ===============================================
   SCHEDULE PAGE STYLES
   =============================================== */

.schedule-section {
    padding-top: 120px;
    min-height: 100vh;
    background: #f5f5f5;
}

.schedule-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    color: var(--black);
}

/* Date Navigation */
.date-navigation {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 40px;
    padding: 0;
    overflow-x: auto;
}

.date-nav-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition-default);
    white-space: nowrap;
}

.date-nav-btn:hover {
    color: var(--black);
}

.date-nav-btn.active {
    color: var(--black);
    border-bottom-color: var(--black);
}

/* Schedule Table */
.schedule-table {
    max-width: 1400px;
    margin: 0 auto;
}

.table-header {
    display: grid;
    grid-template-columns: 150px 1fr 200px 250px;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.schedule-day {
    display: none;
}

.schedule-day.active {
    display: block;
}

.table-row {
    display: grid;
    grid-template-columns: 150px 1fr 200px 250px;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
    align-items: center;
    font-size: 14px;
}

.col-time {
    font-size: 13px;
}

.col-event {
    font-size: 16px;
    letter-spacing: 0.02em;
}

.col-format {
    font-size: 13px;
    text-transform: capitalize;
}

.col-access {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.expand-btn {
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--gray-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
}

.expand-btn:hover {
    background: var(--black);
    color: var(--white);
}

.register-btn {
    padding: 4px 12px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-default);
}

.register-btn:hover {
    background: var(--gray-dark);
}

/* Responsive Design for Schedule */
@media (max-width: 1024px) {
    .schedule-title {
        font-size: 36px;
    }

    .table-header,
    .table-row {
        grid-template-columns: 120px 1fr 150px 200px;
    }
}

@media (max-width: 768px) {
    .schedule-section {
        padding-top: 100px;
    }

    .schedule-title {
        font-size: 28px;
        letter-spacing: 0.2em;
    }

    .schedule-filters {
        flex-direction: column;
        gap: 20px;
    }

    .filter-group {
        flex-wrap: wrap;
    }

    .date-navigation {
        justify-content: flex-start;
    }

    .table-header {
        display: none;
    }

    .table-row {
        display: block;
        padding: 20px;
        background: white;
        margin-bottom: 10px;
    }

    .table-row > div {
        margin-bottom: 10px;
    }

    .col-time {
        font-weight: 500;
        color: var(--gray-dark);
    }

    .col-event {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .col-format,
    .col-access {
        display: inline-block;
        margin-right: 15px;
    }

    .expand-btn {
        display: none;
    }
}

/* ===============================================
   DROPDOWN MENU STYLES
   =============================================== */

.side-nav .has-dropdown {
    position: relative;
}

.side-nav .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.side-nav .dropdown-toggle i {
    font-size: 10px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.side-nav .dropdown-toggle.active i {
    transform: rotate(180deg);
}

.side-nav .dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.side-nav .dropdown-menu.show {
    display: block;
    width: 100%;
}

.side-nav .dropdown-menu li {
    margin: 10px 0;
}

.side-nav .dropdown-menu a {
    font-size: 14px;
    color: #000;
}

/* ===============================================
   POST NAVIGATION STYLES
   =============================================== */

.post-navigation {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.post-navigation .screen-reader-text {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.post-navigation .nav-previous {
    flex: 1;
    text-align: left;
}

.post-navigation .nav-next {
    flex: 1;
    text-align: right;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    display: inline-block;
    text-decoration: none;
    color: var(--black);
    transition: var(--transition-default);
    position: relative;
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
    color: var(--primary-color);
}

.post-navigation .nav-subtitle {
    display: block;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
}

.post-navigation .nav-title {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.post-navigation .nav-previous a::before {
    content: '←';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0;
    transition: var(--transition-default);
}

.post-navigation .nav-next a::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0;
    transition: var(--transition-default);
}

.post-navigation .nav-previous a:hover::before {
    opacity: 1;
    left: -30px;
}

.post-navigation .nav-next a:hover::after {
    opacity: 1;
    right: -30px;
}

/* Post Navigation Responsive */
@media (max-width: 768px) {
    .post-navigation {
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 30px 0;
    }

    .post-navigation .nav-links {
        flex-direction: column;
        gap: 30px;
    }

    .post-navigation .nav-previous,
    .post-navigation .nav-next {
        width: 100%;
        text-align: left;
    }

    .post-navigation .nav-title {
        font-size: 18px;
    }

    .post-navigation .nav-previous a::before,
    .post-navigation .nav-next a::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .post-navigation {
        padding: 20px 0;
    }

    .post-navigation .nav-title {
        font-size: 16px;
    }

    .post-navigation .nav-subtitle {
        font-size: 11px;
    }
}

/* ===============================================
   COMMENT FORM STYLES
   =============================================== */

.comment-respond {
    margin-top: 60px;
    padding: 40px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
}

.comment-reply-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.05em;
    color: var(--black);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.comment-reply-title small {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    float: right;
    text-transform: none;
    letter-spacing: normal;
}

.comment-reply-title small a {
    color: #999;
    text-decoration: none;
    transition: var(--transition-default);
}

.comment-reply-title small a:hover {
    color: var(--primary-color);
}

.comment-form {
    font-family: 'Futura-Bk', sans-serif;
}

.comment-form p {
    margin-bottom: 25px;
}

.comment-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

.comment-form .required {
    color: #ff0000;
    font-weight: 600;
}

.logged-in-as {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.logged-in-as a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-default);
}

.logged-in-as a:hover {
    color: var(--black);
    text-decoration: underline;
}

.required-field-message {
    font-size: 13px;
    color: #999;
    margin-left: 15px;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 15px;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    border: 1px solid #ddd;
    resize: vertical;
    transition: var(--transition-default);
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(58, 63, 116, 0.1);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    border: 1px solid #ddd;
    transition: var(--transition-default);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(58, 63, 116, 0.1);
}

.form-submit {
    margin-bottom: 0;
}

.form-submit .submit {
    padding: 14px 35px;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    border: 2px solid var(--black);
    cursor: pointer;
    transition: var(--transition-default);
}

.form-submit .submit:hover {
    color: var(--black);
    background: transparent;
}

/* Comment Notes for Non-logged Users */
.comment-notes {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 20px;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 5px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.comment-form-cookies-consent label {
    font-size: 13px;
    text-transform: none;
    font-weight: normal;
    cursor: pointer;
}

/* Comments List Styles */
.comments-area {
    margin-top: 60px;
}

.comments-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.05em;
    color: var(--black);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.comment-list .comment:last-child {
    border-bottom: none;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-author .fn {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    margin-bottom: 15px;
}

.comment-metadata a {
    font-size: 13px;
    color: #999;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--primary-color);
}

.comment-content {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.comment-content p {
    margin-bottom: 15px;
}

.reply {
    margin-top: 10px;
}

.reply a {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-default);
}

.reply a:hover {
    color: var(--black);
}

/* Comment Children (Replies) */
.comment-list .children {
    list-style: none;
    padding-left: 50px;
    margin-top: 30px;
}

/* Comment Pagination */
.comment-navigation {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
}

.comment-navigation .nav-previous,
.comment-navigation .nav-next {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
}

.comment-navigation a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition-default);
}

.comment-navigation a:hover {
    color: var(--primary-color);
}

/* Comments Responsive */
@media (max-width: 768px) {
    .comment-respond {
        padding: 30px 20px;
    }

    .comment-reply-title {
        font-size: 24px;
    }

    .comment-reply-title small {
        display: block;
        float: none;
        margin-top: 10px;
    }

    .comment-list .children {
        padding-left: 20px;
    }

    .comments-title {
        font-size: 24px;
    }

    .form-submit .submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .comment-respond {
        padding: 20px 15px;
    }

    .comment-form-comment textarea {
        min-height: 120px;
    }

    .comment-author {
        flex-wrap: wrap;
    }

    .comment-list .children {
        padding-left: 10px;
    }
}

/* ===============================================
   POST THUMBNAIL STYLES
   =============================================== */

.post-thumbnail {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    background: #f0f0f0;
}

.post-thumbnail a {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

/* Featured Image with Aspect Ratio */
.post-thumbnail.featured-image {
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    position: relative;
    overflow: hidden;
}

.post-thumbnail.featured-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-thumbnail.featured-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Post Thumbnail with Overlay */
.post-thumbnail.with-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.post-thumbnail.with-overlay:hover::after {
    opacity: 1;
}

/* Post Thumbnail Caption */
.post-thumbnail-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.post-thumbnail.with-overlay:hover .post-thumbnail-caption {
    transform: translateY(0);
}

.post-thumbnail-caption h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.05em;
    margin: 0 0 5px 0;
    color: var(--white);
}

.post-thumbnail-caption p {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Archive/Grid Post Thumbnails */
.archive-post-thumbnail,
.grid-post-thumbnail {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 20px;
}

.archive-post-thumbnail img,
.grid-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.archive-post-thumbnail:hover img,
.grid-post-thumbnail:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

/* Single Post Featured Image */
.single-post-thumbnail {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 0 40px 0;
    overflow: hidden;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Thumbnail Loading State */
.post-thumbnail.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Post Thumbnail Badge */
.post-thumbnail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Futura-Bk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 2;
}

.post-thumbnail-badge.featured {
    background: #ff0000;
}

.post-thumbnail-badge.new {
    background: #00c853;
}

/* Responsive Post Thumbnails */
@media (max-width: 768px) {
    .post-thumbnail {
        margin-bottom: 20px;
    }

    .post-thumbnail.featured-image {
        padding-bottom: 75%; /* 4:3 aspect ratio on mobile */
    }

    .post-thumbnail-caption h3 {
        font-size: 20px;
    }

    .post-thumbnail-caption p {
        font-size: 13px;
    }

    .single-post-thumbnail {
        margin: 0 -20px 30px -20px; /* Full bleed on mobile */
    }

    .post-thumbnail-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .post-thumbnail.featured-image {
        padding-bottom: 100%; /* Square on small mobile */
    }

    .archive-post-thumbnail,
    .grid-post-thumbnail {
        aspect-ratio: 1/1;
    }

    .post-thumbnail-caption {
        padding: 15px;
    }

    .post-thumbnail-caption h3 {
        font-size: 18px;
    }
}

/* ===============================================
   PAGE HEADER BANNER STYLES
   =============================================== */

.page-header-banner {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 50px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.page-header-banner .page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
}

.page-header-banner .page-subtitle {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 18px;
    color: var(--white);
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

.page-header-banner .breadcrumbs {
    margin-top: 20px;
    font-size: 14px;
}

.page-header-banner .breadcrumbs a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.page-header-banner .breadcrumbs a:hover {
    opacity: 1;
}

.page-header-banner .breadcrumbs span {
    color: var(--white);
    margin: 0 8px;
}

/* Responsive Page Header Banner */
@media (max-width: 768px) {
    .page-header-banner .page-title {
        font-size: 36px;
        letter-spacing: 0.05em;
    }

    .page-header-banner .page-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-header-banner .page-title {
        font-size: 28px;
    }

    .page-header-banner .page-subtitle {
        font-size: 12px;
    }
}

/* ===============================================
   GENERIC PAGE STYLES
   =============================================== */

.page-section {
    padding-top: 0;
    min-height: 100vh;
    background: var(--white);
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .page-section {
        padding-top: 0;
    }

    .page-header-banner {
        height: 400px;
    }

    .page-title {
        font-size: 36px;
        letter-spacing: 0.2em;
    }

    .page-content {
        padding: 40px 20px;
    }
}


/* ===================================
   Sponsors Page Styles
=================================== */
.sponsors-section {
    margin-bottom: 3rem;
}

.sponsor-category {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.sponsor-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    cursor: pointer;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--black);
}

.sponsor-card img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===================================
   Designers Page Styles
=================================== */
.designers-section {
    min-height: 100vh;
    background: #fff;
}

/* Designers Filters */
.designers-filters {
    background: #f8f8f8;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    display: inline-block;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    margin-right: 20px;
    margin-bottom: 10px;
    min-width: 100px;
}

.filter-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #ccc;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.filter-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Year filter specific - wider buttons */
.year-filters .filter-btn {
    min-width: 60px;
}

/* Designers Grid */
.designers-grid-container {
    padding: 60px 0;
}

.designers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.designer-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.designer-item:hover {
    transform: translateY(-5px);
}

.designer-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.designer-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.designer-item:hover .designer-image img {
    transform: scale(1.05);
}

.designer-info {
    padding: 0 10px;
}

.designer-name {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.designer-brand {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 13px;
    color: #000;
    margin: 0;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results p {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 16px;
    color: #000;
    letter-spacing: 0.05em;
}

/* Responsive Styles for Designers Page */
@media (max-width: 1200px) {
    .designers-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .designers-filters {
        padding: 20px 0;
        top: 70px;
    }

    .filter-label {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .designers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .designer-name {
        font-size: 15px;
    }

    .designer-brand {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .designers-section {
        padding-top: 70px;
    }

    .designers-filters {
        position: relative;
        top: 0;
    }

    .filter-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-width: 40px;
    }

    .year-filters .filter-btn {
        min-width: 50px;
    }

    .designers-grid-container {
        padding: 40px 0;
    }

    .designers-grid {
        padding: 0 20px;
        gap: 25px;
    }

    .designer-name {
        font-size: 14px;
    }

    .designer-brand {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .designers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Press Release Styles */
.press-release-section {
    min-height: 100vh;
    background-color: #ffffff;
}

.press-release-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    cursor: pointer;
}

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

.press-release-image {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #f0f0f0;
}

.press-release-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 1024px;
    transition: transform 0.5s ease;
}

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

.press-release-content {
    padding: 25px;
    background: white;
}

.press-category {
    display: inline-block;
    color: red;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Futura-Bk', sans-serif;
}

.press-title {
    font-size: 20px;
    font-family: 'Futura-Bk', sans-serif;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 56px;
    transition: opacity 0.3s ease;
}

.press-release-card:hover .press-title {
    opacity: 0.7;
}

.press-excerpt {
    font-size: 14px;
    font-family: 'Futura-Bk', sans-serif;
    color: #000;
    line-height: 1.6;
    margin-bottom: 15px;
}

.press-date {
    font-size: 12px;
    font-family: 'Futura-Bk', sans-serif;
    color: #000;
    display: block;
    opacity: 0.6;
}

/* Pagination Styles */
.pagination {
    margin-top: 50px;
}

.pagination .page-link {
    color: #000;
    background-color: transparent;
    border: 1px solid #000;
    padding: 10px 18px;
    margin: 0 3px;
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #000;
    border-color: #000;
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: #000;
    border-color: #000;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #000;
    background-color: transparent;
    border-color: #000;
    opacity: 0.3;
}

/* Responsive Press Release */
@media (max-width: 991px) {
    .press-release-card {
        margin-bottom: 20px;
    }

    .press-title {
        font-size: 18px;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .press-release-content {
        padding: 20px;
    }

    .press-title {
        font-size: 16px;
    }

    .press-excerpt {
        font-size: 13px;
    }
}

/* ===================================
   About Page Styles
=================================== */
.about-content {
    padding: 40px 0;
}

.about-subtitle {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 28px;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.about-text {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.about-highlight {
    background: #f8f8f8;
    padding: 40px;
    margin: 40px 0;
    border-left: 3px solid #000;
}

.highlight-title {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 20px;
}

.about-stats {
    margin: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #000;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
}

.about-mission {
    margin-top: 50px;
}

.mission-title {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 25px;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 15px;
    line-height: 2;
    color: #333;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.mission-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #000;
}

/* ===================================
   Contact Page Styles
=================================== */
.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.lead-text {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.contact-departments {
    margin: 50px 0;
}

.contact-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.contact-title {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 10px;
}

.contact-desc {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.contact-email {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #000;
    text-decoration: underline;
}

.contact-social {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.social-title {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 10px;
}

.social-desc {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 14px;
    color: #000;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    color: #000;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #000;
    color: #fff;
    transform: rotate(360deg);
}

/* ===================================
   Policy Pages Styles (Privacy, Cookie, Credits)
=================================== */
.policy-page {
    background: #fff;
}

.policy-content {
    padding: 40px 0;
}

.policy-updated {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-bottom: 40px;
}

.policy-heading {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-subheading {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 18px;
    letter-spacing: 0.03em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-text {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.policy-list li {
    font-family: 'Futura-Bk', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.policy-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #000;
}

.policy-list li strong {
    font-weight: 600;
}

.policy-contact {
    background: #f8f8f8;
    padding: 20px;
    margin-top: 20px;
    border-left: 3px solid #000;
}

.policy-contact a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-contact a:hover {
    color: #000;
    text-decoration: underline;
}

/* Credits Page Specific */
.credits-section {
    margin-bottom: 30px;
    padding-left: 20px;
}

.credit-role {
    font-weight: 600;
    color: #000;
}

/* Hero Section */
.event-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.event-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 0;
    z-index: 10;
}

.hero-title-wrapper {
    background: rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 25px 40px;
    border-radius: 0 50px 50px 0;
    max-width: 70%;
}

.event-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

/* Main Content Section */
.event-main-content {
    padding: 40px 0 80px;
}

.event-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 60px;
}

.event-description h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 30px 0 20px;
}

.event-description p {
    margin-bottom: 20px;
}

/* Event Designers Section */
.event-designers-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #5a67d8;
}

.designer-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
}

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

.designer-avatar {
}

.designer-avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #718096;
}

.designer-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.designer-role {
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
}

.designer-social {
    margin-bottom: 25px;
}

.social-label {
    font-size: 13px;
    color: #718096;
    display: block;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link.linkedin {
    background: #e7f3ff;
    color: #0077b5;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.instagram {
    background: #ffe5f1;
    color: #e4405f;
}

.social-link.instagram:hover {
    background: #e4405f;
    color: white;
}

.social-link.twitter {
    background: #e8f5ff;
    color: #1da1f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.facebook {
    background: #e7eef9;
    color: #1877f2;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.btn-details {
    display: inline-block;
    background: #4a5568;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: #000;
    color: white;
    transform: translateX(5px);
}

/* Sidebar Information Box */
.event-sidebar {
    position: sticky;
    top: 130px;
}

.info-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
}

.info-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #5a67d8;
}

.info-list {
}

.info-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #000;
    width: 90px;
    flex-shrink: 0;
    font-size: 14px;
    min-width: 100px;
}

.info-value {
    color: #4a5568;
    font-size: 14px;
    flex: 1;
}

.info-actions {
    margin-bottom: 30px;
}

.info-actions .btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
}

/* Share Section */
.share-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 18px;
    text-decoration: none;
}

.share-btn.facebook {
    background: #e7eef9;
    color: #1877f2;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #e8f5ff;
    color: #1da1f2;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-btn.instagram {
    background: #ffe5f1;
    color: #e4405f;
}

.share-btn.instagram:hover {
    background: #e4405f;
    color: white;
}

.share-btn.whatsapp {
    background: #e7f8ea;
    color: #25d366;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

/* Sponsors Section */
.event-sponsors-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.sponsor-item {
    flex: 0 0 auto;
}

.sponsor-logo {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
}

.sponsor-name {
    font-size: 16px;
    color: #4a5568;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-hero {
        height: 350px;
    }

    .hero-title-wrapper {
        max-width: 90%;
        padding: 20px 25px;
    }

    .event-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .event-sidebar {
        position: static;
        margin-top: 40px;
    }

    .designer-card {
        margin-bottom: 20px;
    }
}

/* Responsive Styles for About, Contact, Policy Pages */
@media (max-width: 768px) {
    .about-subtitle {
        font-size: 22px;
    }

    .about-text {
        font-size: 14px;
    }

    .stat-number {
        font-size: 36px;
    }

    .contact-card {
        margin-bottom: 20px;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .policy-heading {
        font-size: 20px;
    }

    .policy-text {
        font-size: 14px;
    }
}

/* Event Access Modal Styles */
#eventAccessModal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#eventAccessModal .modal-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-bottom: none;
}

#eventAccessModal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

#eventAccessModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#eventAccessModal .btn-close:hover {
    opacity: 1;
}

#eventAccessModal .modal-body {
    padding: 2rem;
}

.event-access-info {
    text-align: center;
}

.access-type-badge {
    display: inline-block;
}

.access-type-badge .badge {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.access-message {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

#eventAccessModal .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
}

.event-access-btn {
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
}

.event-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive Modal Styles */
@media (max-width: 576px) {
    #eventAccessModal .modal-dialog {
        margin: 1rem;
        max-width: 100%;
    }

    #eventAccessModal .modal-body {
        padding: 1.5rem;
    }

    .access-message {
        font-size: 1rem;
    }
}