@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&family=Playfair+Display:wght@300;400;500;600;700&display=swap');

:root {
    /* === OSNOVNE BOJE === */
    /* Neutralne - svetle */
    --color-white: #ffffff;
    --color-cream: #faf9f6;
    --color-light-pearl: #f4f3f0;
    --color-warm-gray: #e8e6e1;

    /* Neutralne - tamne */
    --color-charcoal: #2a2a2a;
    --color-deep-navy: #1a1d23;
    --color-soft-black: #0f1419;

    /* === AKCENT BOJE === */

    --accent-gold: #afaeab;
    --accent-copper: #7e7365;
    --accent-sage: #95a89a;
    --accent-rose: #d4a5a5;
    --accent-lavender: #a5a8d4;

    /* === FUNKCIONALNE BOJE === */
    /* Dodato za kompletnost */
    --color-success: #7db88a;
    --color-warning: #e6c79a;
    --color-error: #d49a9a;
    --color-info: #9ab8d4;

    /* === GRADIENTI === */
    /* Uskladeni sa novim akcentima */
    --primary-gradient: linear-gradient(135deg, var(--color-cream), var(--color-light-pearl));
    --dark-gradient: linear-gradient(135deg, var(--color-deep-navy), var(--color-soft-black));
    --accent-gradient: linear-gradient(45deg, var(--accent-sage), var(--accent-gold));
    --warm-gradient: linear-gradient(135deg, var(--color-warm-gray), var(--accent-gold));

    /* === TRANSPARENTNOST I EFEKTI === */
    /* Poboljšano za moderan izgled */
    --glass-light: rgba(255, 255, 255, 0.08);
    --glass-medium: rgba(255, 255, 255, 0.12);
    --glass-strong: rgba(255, 255, 255, 0.18);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Tamni glass efekti */
    --glass-dark-light: rgba(26, 29, 35, 0.1);
    --glass-dark-medium: rgba(26, 29, 35, 0.15);
    --glass-dark-strong: rgba(26, 29, 35, 0.25);

    /* === SENKE === */
    /* Više opcija za različite potrebe */
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 24px 64px rgba(0, 0, 0, 0.16);
    --shadow-dramatic: 0 32px 80px rgba(0, 0, 0, 0.24);

    /* Colored shadows */
    --shadow-warm: 0 8px 32px rgba(196, 179, 150, 0.15);
    --shadow-cool: 0 8px 32px rgba(149, 168, 154, 0.12);
}

/* === DODATNE UTILITARNE KLASE === */
.theme-light {
    --text-primary: var(--color-charcoal);
    --text-secondary: var(--color-warm-gray);
    --bg-primary: var(--color-white);
    --bg-secondary: var(--color-cream);
    --border-color: var(--color-warm-gray);
}

.theme-dark {
    --text-primary: var(--color-light-pearl);
    --text-secondary: var(--color-warm-gray);
    --bg-primary: var(--color-soft-black);
    --bg-secondary: var(--color-deep-navy);
    --border-color: var(--color-charcoal);
}

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

    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 200, 200, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navigation.scrolled {
    padding: 1rem 4rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-charcoal);
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    text-align: center;
    overflow: scroll;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    overflow: auto;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    /*margin: .85rem 0;*/
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu li:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-menu li:nth-child(8) {
    transition-delay: 0.45s;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    position: relative;
    padding: 1rem 2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.mobile-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu a:hover {
    color: white;
    transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .navigation {
        padding: 1rem 2rem;
    }

    .navigation.scrolled {
        padding: 1rem 2rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Hero Section */
/* .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: var(--primary-gradient);
            overflow: hidden;
        } */


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--primary-gradient);
    overflow: hidden;
}


.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: auto;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
}


.image-container {
    position: absolute;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */

}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    background-image:
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 154, 142, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 165, 165, 0.05) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    /* border: 1px solid rgba(212, 175, 55, 0.2); */
    max-width: 1000px;
    padding: 3rem 2rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent-copper);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-charcoal), var(--accent-gold));
    background-clip: text;
    -webkit-background-clip: text;

}

.hero-description {
    font-size: 1.3rem;
    font-weight: 100;
    color: var(--color-charcoal);
    opacity: 0.8;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background: var(--color-charcoal);
    color: white;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-note {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-note:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-note:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-note:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.floating-note:nth-child(4) {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Section */
.about {
    padding: 8rem 4rem;
    background: white;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-copper);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    opacity: 0.9;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Music Section */
.music {
    padding: 8rem 4rem;
    background: var(--dark-gradient);
    color: white;
}

.music .section-title {
    color: white;
}

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

.album-card {
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.album-cover {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

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

.album-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.album-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.album-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.tracklist {
    list-style: none;
}

.tracklist li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracklist li:hover {
    color: var(--accent-gold);
    padding-left: 1rem;
}

/* Videos Section */
.videos {
    padding: 8rem 4rem;
    background: var(--color-light-pearl);
}

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

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.video-info p {
    color: var(--color-charcoal);
    opacity: 0.7;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-stats {
    font-size: 0.9rem;
    color: var(--accent-copper);
}

/* Shows Section */
.shows {
    padding: 8rem 4rem;
    background: white;
}

.shows-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.show-item {
    background: var(--color-cream);
    padding: 2rem;
    border-radius: 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.show-item:hover {
    background: white;
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-soft);
}

.show-date {
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    min-width: 100px;
}

.show-details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.show-details p {
    color: var(--color-charcoal);
    opacity: 0.7;
}

.show-tickets {
    text-decoration: none;
    color: var(--accent-copper);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid var(--accent-copper);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.show-tickets:hover {
    background: var(--accent-copper);
    color: white;
}

/* Contact Section */
.contact {
    padding: 8rem 4rem;
    background: var(--dark-gradient);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.contact-details {
    list-style: none;
    margin-bottom: 3rem;
}

.contact-details li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-details i {
    width: 20px;
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-effect);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

/* Footer */
.footer {
    padding: 3rem 4rem;
    background: var(--color-soft-black);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation {
        padding: 1rem 2rem;
        width: 100%;
    }

    .nav-menu {
        display: none;
    }

    .hero-content {
        padding: 0 1rem;
    }

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-column: span 1;
        display: block;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-10px);
    }

    .show-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-container,
    .about,
    .music,
    .services,
    .news,
    .videos,
    .shows,
    .contact {
        padding: 4rem 2rem;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}


/* Services Section */
.services {
    padding: 8rem 4rem;
    background: white;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 154, 142, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--color-charcoal);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--color-cream);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    /* overflow: hidden; */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(201, 169, 110, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(201, 169, 110, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow:
        0 25px 50px rgba(201, 169, 110, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-charcoal);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 110, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow:
        0 10px 25px rgba(201, 169, 110, 0.3),
        0 0 0 3px rgba(201, 169, 110, 0.1);
}

.service-card.featured:hover .service-icon {
    box-shadow:
        0 10px 25px rgba(255, 255, 255, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.1);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    position: relative;
    z-index: 2;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: var(--color-charcoal);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-charcoal);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--accent-gold);
    font-size: 0.9rem;
    width: 16px;
    height: 16px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.featured .service-features i {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.service-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: auto;
    padding: 1rem 0;
    border-top: 2px solid rgba(201, 169, 110, 0.2);
    position: relative;
    z-index: 2;
}

.service-card.featured .service-price {
    color: white;
    border-top-color: rgba(255, 255, 255, 0.3);
}

.services-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: var(--color-light-pearl);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(201, 169, 110, 0.05), transparent);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) rotate(45deg);
    }
}

.services-cta h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    position: relative;
    z-index: 2;
}

.services-cta p {
    color: var(--color-charcoal);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* News Section */
.news {
    padding: 8rem 4rem;
    background: var(--color-light-pearl);
    position: relative;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 165, 165, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(176, 141, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(201, 169, 110, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.news-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(201, 169, 110, 0.1);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transform: scale(1.02);
}

.news-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: auto;
    min-height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card:hover .news-image img {
    transform: scale(1.1) rotate(2deg);
}

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    z-index: 10;
}

.news-card:hover .news-date {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-medium);
}

.date-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
}

.news-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.news-category {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.news-card:hover .news-category {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.news-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: var(--accent-copper);
}

.news-card.featured h3 {
    font-size: 1.8rem;
}

.news-card p {
    color: var(--color-charcoal);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-warm-gray);
}

.news-author {
    color: var(--accent-copper);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-author::before {
    content: '';
    font-size: 0.9rem;
}

.news-read-time {
    color: var(--color-charcoal);
    opacity: 0.6;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-read-time::before {
    content: '⏱️';
    font-size: 0.8rem;
}

.news-link {
    color: var(--accent-copper);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(176, 141, 87, 0.1);
}

.news-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.news-link::after {
    content: '→';
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
}

.news-link:hover {
    color: white;
    transform: translateX(5px);
}

.news-link:hover::before {
    opacity: 1;
}

.news-link:hover::after {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .news-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    .services,
    .news {
        padding: 4rem 0rem;
    }

    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-card.featured {
        grid-column: span 1;
        display: block;
        transform: none;
    }

    .service-card.featured {
        transform: none;
        margin-bottom: 1rem;
    }

    .service-card.featured:hover {
        transform: translateY(-10px);
    }

    .services-cta {
        padding: 2rem;
        margin-top: 3rem;
    }

    .services-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .news-content {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .news-card h3 {
        font-size: 1.2rem;
    }

    .news-card.featured h3 {
        font-size: 1.4rem;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive fixes for contact form overflow */
@media (max-width: 768px) {

    /* Contact section padding adjustment */
    .contact {
        padding: 4rem 1rem;
    }

    /* Contact grid - single column on mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }

    /* Contact form container fixes */
    .contact-form {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Form elements fixes */
    .form-group {
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
        padding: 0.8rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Button full width on mobile */
    .contact-form .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        box-sizing: border-box;
        margin-top: 1rem;
    }

    /* Contact info adjustments */
    .contact-info {
        padding: 1.5rem;
        text-align: center;
    }

    /* Social links centering */
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .contact {
        padding: 3rem 0.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-details li {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}




/* Mobile responsive fixes for videos section */
@media (max-width: 768px) {

    /* Videos section padding adjustment */
    .videos {
        padding: 4rem 0rem;
    }

    /* Videos grid - single column on mobile */
    .videos-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    /* Video card container fixes */
    .video-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        transition: all 0.3s ease;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Video thumbnail adjustments */
    .video-thumbnail {
        position: relative;
        height: 200px;
        overflow: hidden;
        cursor: pointer;
        width: 100%;
    }

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    /* Play overlay button sizing */
    .play-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .video-card:hover .play-overlay {
        opacity: 1;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        background: var(--accent-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: white;
        border: none;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    /* Video info section */
    .video-info {
        padding: 1.5rem;
    }

    .video-info h4 {
        font-family: 'Inter', sans-serif;
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: var(--color-charcoal);
        line-height: 1.3;
    }

    .video-info p {
        color: var(--color-charcoal);
        opacity: 0.7;
        margin-bottom: 1rem;
        line-height: 1.4;
        font-size: 0.9rem;
    }

    .video-stats {
        font-size: 0.8rem;
        color: var(--accent-copper);
        font-weight: 500;
    }

    /* Hover effects for mobile */
    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .videos {
        padding: 3rem 0rem;
    }

    .videos-grid {
        gap: 1.5rem;
    }

    .video-thumbnail {
        height: 180px;
    }

    .video-info {
        padding: 1rem;
    }

    .video-info h4 {
        font-size: 1.1rem;
    }

    .video-info p {
        font-size: 0.85rem;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    /* Section title adjustments */
    .videos .section-title {
        font-size: 2rem;
    }

    .videos .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* Landscape orientation for small devices */
@media (max-width: 768px) and (orientation: landscape) {
    .video-thumbnail {
        height: 160px;
    }

    .videos {
        padding: 3rem 1rem;
    }
}



/* Mobile responsive fixes for music section */
@media (max-width: 768px) {

    /* Music section padding adjustment */
    .music {
        padding: 4rem 1rem;
    }

    /* Albums grid - single column on mobile */
    .albums-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2rem;
    }

    /* Album card container fixes */
    .album-card {
        background: var(--glass-effect);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 1.5rem;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Album cover adjustments */
    .album-cover {
        width: 100%;
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .album-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    /* Play overlay and button */
    .play-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .album-card:hover .play-overlay {
        opacity: 1;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        background: var(--accent-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: white;
        border: none;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    /* Album info section */
    .album-info h3 {
        font-family: 'Inter', sans-serif;
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: white;
    }

    .album-info p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1rem;
        line-height: 1.4;
        font-size: 0.9rem;
    }

    /* Tracklist adjustments */
    .tracklist {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tracklist li {
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .tracklist li i {
        width: 12px;
        flex-shrink: 0;
    }

    .tracklist li:hover {
        color: var(--accent-gold);
        padding-left: 0.5rem;
    }

    .tracklist li:last-child {
        border-bottom: none;
    }

    /* Hover effects for mobile */
    .album-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-strong);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .music {
        padding: 3rem 0rem;
    }

    .albums-grid {
        gap: 2rem;
    }

    .album-card {
        padding: 1rem;
        border-radius: 16px;
    }

    .album-cover {
        height: 180px;
        border-radius: 10px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .album-info h3 {
        font-size: 1.2rem;
    }

    .album-info p {
        font-size: 0.85rem;
    }

    .tracklist li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }

    /* Section title adjustments */
    .music .section-title {
        font-size: 2rem;
    }

    .music .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .play-overlay {
        opacity: 0.3;
    }

    .album-card:active .play-overlay {
        opacity: 1;
    }

    .tracklist li:active {
        color: var(--accent-gold);
        padding-left: 0.5rem;
    }
}





.service-card,
.news-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.news-card:nth-child(1) {
    animation-delay: 0.1s;
}

.news-card:nth-child(2) {
    animation-delay: 0.2s;
}

.news-card:nth-child(3) {
    animation-delay: 0.3s;
}

.news-card:nth-child(4) {
    animation-delay: 0.4s;
}

.news-card:nth-child(5) {
    animation-delay: 0.5s;
}

.news-card:nth-child(6) {
    animation-delay: 0.6s;
}




/* News Modal Styles */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-modal.active {
    display: flex;
    opacity: 1;
}

.news-modal-content {
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.news-modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10001;
    padding: 1rem;
}

.news-modal-close {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-modal-close:hover {
    background: var(--accent-gold, #c4b396);
    transform: scale(1.1) rotate(90deg);
}

.news-modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: 90vh;
}

.news-modal-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.news-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-modal-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold, #c4b396);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-modal-category {
    position: absolute;
    top: 1rem;
    right: 4rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-modal-content-area {
    padding: 2rem;
}

.news-modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-charcoal, #2a2a2a);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-warm-gray, #e8e6e1);
    font-size: 0.9rem;
    color: var(--accent-copper, #8b6f47);
}

.news-modal-author::before {
    content: '✒️ ';
    margin-right: 0.5rem;
}

.news-modal-read-time::before {
    content: '⏱️ ';
    margin-right: 0.5rem;
}

.news-modal-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal, #2a2a2a);
    margin-bottom: 2rem;
}

.news-modal-content-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--accent-copper, #8b6f47);
}

.news-modal-content-text p {
    margin-bottom: 1.5rem;
}

.news-modal-content-text blockquote {
    background: var(--color-light-pearl, #f4f3f0);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold, #c4b396);
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

.news-modal-content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.news-modal-content-text li {
    margin-bottom: 0.5rem;
}

.news-modal-tags {
    margin-bottom: 2rem;
}

.news-modal-tags h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal, #2a2a2a);
}

.tag {
    display: inline-block;
    background: var(--accent-gold, #c4b396);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.news-modal-share h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal, #2a2a2a);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    background: var(--color-warm-gray, #e8e6e1);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:hover {
    background: var(--accent-gold, #c4b396);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }

    .news-modal-image-container {
        height: 200px;
    }

    .news-modal-content-area {
        padding: 1.5rem;
    }

    .news-modal-title {
        font-size: 1.5rem;
    }

    .news-modal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .news-modal-content-text {
        font-size: 1rem;
    }

    .news-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }
}


/* News Single Page Styles */
.news-single {
    padding-top: 80px;
}

.news-single-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.news-single-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-single-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 4rem 2rem 2rem;
}

.news-single-container {
    max-width: 800px;
    margin: 0 auto;
}

.news-single-category {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.news-single-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-single-meta {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.news-single-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-single-content {
    padding: 4rem 2rem;
    background: white;
}

.news-single-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 3rem;
}

.news-single-body h2,
.news-single-body h3 {
    font-family: 'Inter', sans-serif;
    margin: 2rem 0 1rem;
    color: var(--accent-copper);
}

.news-single-body p {
    margin-bottom: 1.5rem;
}

.news-single-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.news-single-tags {
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-warm-gray);
}

.news-single-tags h4 {
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.news-single-share {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--color-light-pearl);
    border-radius: 16px;
}

.news-single-share h4 {
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.news-single-back {
    text-align: center;
}

.news-single-related {
    padding: 4rem 2rem;
    background: var(--color-light-pearl);
}

.news-single-related h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.related-news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-news-info {
    padding: 1.5rem;
}

.related-news-category {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.related-news-card h4 {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.related-news-card p {
    color: var(--accent-copper);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .news-single-hero {
        height: 40vh;
        height: 300px;
    }

    .news-single-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .news-single-content {
        padding: 2rem 1rem;
    }

    .news-single-body {
        font-size: 1rem;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
    }


}



/* Page Header */
.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(149, 168, 154, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.page-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* News Archive Section */
.news-archive {
    padding: 6rem 4rem;
    background: var(--color-light-pearl);
}

.news-archive .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.pagination-wrapper nav {
    display: flex;
    gap: 0.5rem;
}

.pagination-wrapper .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.pagination-wrapper .page-item {
    display: inline-block;
}

.pagination-wrapper .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid var(--color-warm-gray);
    border-radius: 8px;
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
}

.pagination-wrapper .page-item.active .page-link {
    background: var(--accent-gradient);
    border-color: var(--accent-gold);
    color: white;
}

.pagination-wrapper .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Active nav link */
.nav-menu a.active {
    color: var(--accent-gold);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        min-height: 30vh;
        margin-top: 60px;
    }

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

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

    .news-archive {
        padding: 4rem 1rem;
    }

    .news-archive .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pagination-wrapper .page-link {
        min-width: 40px;
        height: 40px;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news-archive {
        padding: 3rem 0rem;
    }

    .pagination-wrapper .page-link {
        min-width: 35px;
        height: 35px;
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
}


/* Gallery Archive Page */
/* Gallery Section Styles */
.gallery {
    padding: 8rem 4rem;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(149, 168, 154, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.gallery .section-container {
    position: relative;
    z-index: 1;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-copper);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 4/3;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.filter-hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(201, 169, 110, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(-1deg);
    filter: brightness(0.8);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.gallery-info {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Gallery Zoom Button */
.gallery-zoom {
    align-self: flex-end;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px) scale(0.8);
    opacity: 0;
}

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

.gallery-zoom:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal-info {
    text-align: center;
    color: white;
    margin-top: 2rem;
    max-width: 500px;
}

.gallery-modal-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.gallery-modal-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Modal Controls */
.gallery-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-close:hover {
    background: var(--accent-gold);
    transform: scale(1.1) rotate(90deg);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery {
        padding: 4rem 0rem;
    }

.shows{
    padding: 4rem 0;
}
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin: 2rem 0;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .gallery-item {
        aspect-ratio: 5/4;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-info h4 {
        font-size: 1rem;
    }

    .gallery-info p {
        font-size: 0.8rem;
    }

    .gallery-zoom {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .gallery-modal-image {
        max-height: 60vh;
    }

    .gallery-modal-info {
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .gallery-modal-info h4 {
        font-size: 1.2rem;
    }

    .gallery-close {
        top: -50px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .gallery-prev {
        left: -25px;
    }

    .gallery-next {
        right: -25px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 3rem 0rem;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        min-width: 120px;
    }

    .gallery-modal-info h4 {
        font-size: 1.1rem;
    }

    .gallery-modal-info p {
        font-size: 0.9rem;
    }
}

/* Loading animation for gallery items */
@keyframes galleryItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item {
    animation: galleryItemFadeIn 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.15s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.25s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.35s;
}

.gallery-item:nth-child(7) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(8) {
    animation-delay: 0.45s;
}

.gallery-item:nth-child(9) {
    animation-delay: 0.5s;
}

/* Hover effects for better user interaction */
.gallery-item {
    cursor: pointer;
}

.gallery-item:active {
    transform: scale(0.98);
}

/* Enhanced visual feedback */
.filter-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.gallery-zoom:active {
    transform: scale(0.9);
}

.gallery-archive {
    padding: 6rem 4rem;
    background: var(--color-cream);
}

.gallery-archive .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.gallery-archive .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-charcoal);
}

.empty-state i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--color-charcoal);
    opacity: 0.7;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-archive {
        padding: 4rem 1rem;
    }

    .gallery-archive .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-archive .gallery-filters {
        gap: 0.5rem;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .gallery-archive {
        padding: 3rem 0rem;
    }

    .empty-state {
        padding: 3rem 1rem;
    }

    .empty-state i {
        font-size: 3rem;
    }
}


/* Videos Archive Page */
.videos-archive {
    padding: 6rem 4rem;
    background: var(--color-light-pearl);
}

.videos-archive .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Video Duration Badge */
.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* Video Stats */
.video-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
}

.video-stats i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .videos-archive {
        padding: 4rem 1rem;
    }

    .videos-archive .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .videos-archive {
        padding: 3rem 0rem;
    }

    .videos-archive .videos-grid {
        gap: 1.5rem;
    }
}


/* Albums Archive */
.page-header-albums {
    background: var(--color-cream);
}

.albums-archive {
    padding: 6rem 4rem;
    background: var(--dark-gradient);
}

.albums-archive .albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.albums-archive .album-card {
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-album-btn {
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.view-album-btn:hover {
    transform: scale(1.1);
}

.albums-archive .album-info {
    padding: 1.5rem;
    color: white;
}

.album-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.album-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--accent-gold);
}

/* Album Single Page */
.album-single-header {
    /* background: var(--dark-gradient); */
    padding: 10rem 4rem 6rem;
    margin-top: 80px;
}

.album-header-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    /* grid-template-columns: 400px 1fr; */
    gap: 4rem;
    align-items: center;
}

.album-cover-large {
    position: relative;
}

.album-cover-large img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.vinyl-effect {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #333 30%, #111 70%);
    border-radius: 50%;
    opacity: 0.3;
}

.album-header-info {
    color: white;
}

.album-type {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.album-title {
    font-size: 3rem;
    color: #1a1d23;
    margin: 1rem 0;
}

.album-artist {
    font-size: 1.5rem;
    color: #1a1d23;
    margin-bottom: 1.5rem;
}

.album-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.album-description-full {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1d23;
}

/* Tracklist */
.album-tracklist {
    padding: 6rem 4rem;
    background: white;
}

.tracks-list {
    max-width: 800px;
    margin: 0 auto;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-warm-gray);
    transition: all 0.3s ease;
}

.track-item:hover {
    background: var(--color-light-pearl);
    padding-left: 2rem;
}

.track-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-copper);
    min-width: 30px;
}

.track-title {
    font-size: 1.1rem;
    color: var(--color-charcoal);
}

/* Related Albums */
.related-albums {
    padding: 4rem;
    background: var(--color-light-pearl);
}

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

.related-album-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.related-album-card:hover {
    transform: translateY(-8px);
}

.related-album-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.related-album-info {
    padding: 1.5rem;
}

.related-album-info h4 {
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.related-album-info p {
    color: var(--accent-copper);
}

.album-back {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .albums-archive {
        padding: 4rem 0rem;
    }

    .albums-archive .albums-grid {
        grid-template-columns: 1fr;
    }

    .album-header-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-single-header {
        padding: 8rem 2rem 4rem;
    }

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

    .header-split-right {
        padding: 4rem 2rem !important;
    }
}

/* Bandcamp Player */
.bandcamp-player {
    margin-top: 2rem;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bandcamp-player iframe {
    width: 100% !important;
    border: 0;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .bandcamp-player {
        padding: 1rem 0;
        margin-top: 1.5rem;
    }

    .album-tracklist {
        padding: 1rem 0;
    }

    .related-albums {
        padding: 1rem 0rem;
    }
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.language-switcher a {
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-switcher a.active {
    background: var(--accent-gold);
    color: white;
}

.language-switcher a:hover {
    background: var(--accent-gold);
    color: white;
}