:root {
    --theme-accent: var(--theme-accent);
}

/* css/style.css */
body {
    background-color: #262626; /* Dark background */
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.custom-nav {
    background-color: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 60px;
}
.social-icons a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: var(--theme-accent);
}

/* Typography & Colors */
.text-warning {
    color: var(--theme-accent) !important; /* Gold/yellow accent */
}
.text-muted {
    color: #6a6a6a !important;
}
.btn-warning {
    background-color: var(--theme-accent);
    border-color: var(--theme-accent);
    color: #000;
}
.btn-warning:hover {
    background-color: #dfae4e;
    border-color: #dfae4e;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    position: relative;
    padding-top: 80px; /* Offset for navbar */
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(38,38,38,0) 0%, rgba(38,38,38,0) 50%, rgba(38,38,38,1) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-reels-overlay {
    position: absolute;
    bottom: -80px;
    right: 80px;
    z-index: 10;
    width: 534px;
}
.hero-reel-thumb {
    width: 100%;
    aspect-ratio: 9/16;
    background-color: #000;
    border: 2px solid var(--theme-accent);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

@media (max-width: 991px) {
    .hero-reels-overlay {
        right: 50%;
        transform: translateX(50%);
        width: 100%;
        max-width: 534px;
        padding: 0 45px;
        bottom: -50px;
    }
    .hero-reels-overlay .hero-videos-prev {
        left: 0 !important;
    }
    .hero-reels-overlay .hero-videos-next {
        right: 0 !important;
    }
    .hero-section {
        margin-bottom: 120px !important;
    }
}
.hero-reel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.hero-reel-thumb:hover img {
    opacity: 1;
}
.hero-reel-thumb .play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

/* Trailer Section */
#announcement-container {
    padding: 0 60px !important;
}
.trailer-poster {
    border: 1px solid #666666;
    max-height: 500px;
    object-fit: cover;
}
.btn-dark-pill {
    background-color: #555555;
    color: #ffffff;
    border: none;
    border-radius: 50rem;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-dark-pill:hover {
    background-color: #666666;
    color: #ffffff;
}
.text-dark-red {
    color: #c90000;
}

/* Events */
.events-section {
    background-color: #1a1a1a;
}
.event-card {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 0;
    text-align: left;
    align-items: stretch;
}
.event-date-box {
    background-color: var(--theme-accent);
    color: #000;
    font-weight: bold;
    padding: 15px 10px;
    text-align: center;
    border-radius: 8px 0 0 8px;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cursor-pointer { cursor: pointer; }

/* Swiper custom styles */
.events-swiper, .quotes-swiper {
    margin: 0 60px !important;
    padding: 20px 0 !important;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--theme-accent) !important;
}
.swiper-pagination-bullet {
    width: 25px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: var(--theme-accent);
    opacity: 1;
}

/* Reels Carousel */
.reels-swiper {
    margin: 0 60px !important;
    padding: 20px 0 !important;
}
.reel-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    border: 1px solid #666666;
}
.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reel-card::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
}
.reel-card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

/* Quotes */
.quote-section {
    position: relative;
}
.quote-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--theme-accent);
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

/* Gallery */
.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.gallery-img:hover {
    filter: grayscale(0%);
}
.gallery-prev {
    left: 10% !important;
}
.gallery-next {
    right: 10% !important;
}

/* Statements */
.statements-swiper {
    margin: 0 60px !important;
    padding: 20px 0 !important;
}
.statements-swiper .swiper-slide {
    height: auto; /* To make cards equal height */
}
.statement-card {
    background-color: #ddd;
    color: #000;
    padding: 20px 25px 60px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    font-size: 0.9rem;
}
.statement-card.highlight-yellow {
    background-color: var(--theme-accent);
}
.statement-card::after {
    content: '';
    width: 150px;
    height: 100px;
    background-image: url('../images/navednice.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

/* Footer / Sponsors */
.sponsors-footer-section {
    background-color: #262626;
    background-image: url('../images/slovenija_background.png');
    background-size: 25%;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Reel Duration */
.reel-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
}