/* Fonts */
@font-face {
    font-family: 'CintaSehatti';
    src: url('/fonts/CintaSehatti.otf') format('opentype'),
         url('/fonts/CintaSehatti.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #000;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Header */
.top-header {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 0;
    width: 100%;
    z-index: 1000;
}

.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left {
    display: flex;
    gap: 0;
    align-items: center;
    flex: 0 0 auto;
}

.top-header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-header-text {
    color: #fff;
    font-size: 0.875rem;
}

.top-header-button {
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border: 1px solid #fff;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    cursor: pointer;
}

.top-header-button:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
}

/* Top Header Social Icons */
.top-header-social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-header-social-listitem {
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-header-social-link-outer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
}

.top-header-social-link-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
}

.top-header-social-link-inner i {
    color: #fff;
}

/* Hide social media icons on mobile */
@media (max-width: 768px) {
    .top-header-social-icons {
        display: none;
    }
}

/* Legacy social-icon class for backward compatibility */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Navbar */
.navbar {
    background-color: #000;
    border-bottom: 1px solid #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

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

.hamburger-line.open:nth-child(2) {
    opacity: 0;
}

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

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ccc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

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

.menu-overlay {
    display: none;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background-color: #000;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 1000;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .navbar-menu.open {
        right: 0;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-link {
        font-size: 1.25rem;
        width: 100%;
        padding: 0.5rem 0;
    }
}

/* Hero Section / Slider */
.hero-section {
    width: 100%;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2rem;
    color: #fff;
    z-index: 2;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slide-button:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #000;
    color: #000;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.slider-nav:hover {
    background-color: #000;
    color: #fff;
}

.slider-nav.prev {
    left: 2rem;
}

.slider-nav.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background-color: #fff;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    min-height: 500px;
    color: #000;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .slider-container {
        height: 50vh;
        min-height: 400px;
    }

    .slide-content {
        padding: 2rem 1.5rem;
    }

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

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

    .slide-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-nav.prev {
        left: 1rem;
    }

    .slider-nav.next {
        right: 1rem;
    }

    .slider-dots {
        bottom: 1rem;
    }
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    width: 100%;
}

/* Blazor Error UI */
#blazor-error-ui {
    background: #000;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #fff;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    color: #fff;
    text-decoration: none;
}

#blazor-error-ui .reload {
    color: #fff;
    text-decoration: underline;
    margin-right: 1rem;
}

/* About Page */
.about-page {
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 3rem 2rem;
    background-color: #fff;
    color: #000;
    box-sizing: border-box;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.about-title {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 3rem;
    color: #000;
    text-align: left;
    font-family: 'CintaSehatti', 'Brush Script MT', 'Lucida Handwriting', cursive;
    letter-spacing: 0.05em;
}

.about-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #000;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Layout - Two Column */
.about-layout {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 3rem;
    width: 100%;
    box-sizing: border-box;
    gap: 3rem;
    clear: both;
}

.about-images-column {
    flex: 0 0 33.333% !important;
    width: 33.333% !important;
    max-width: 33.333% !important;
    min-width: 0;
    box-sizing: border-box;
    display: block !important;
    float: none !important;
    clear: none !important;
    order: 1;
}

.about-content-column {
    flex: 0 0 66.666% !important;
    width: 66.666% !important;
    max-width: 66.666% !important;
    min-width: 0;
    box-sizing: border-box;
    display: block !important;
    float: none !important;
    clear: none !important;
    order: 2;
}

/* About Images Grid - 2x2 Layout */
.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.about-grid-image {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background-color: #f5f5f5;
}

.about-portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #000;
    color: #000;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.about-slider-nav:hover {
    background-color: #000;
    color: #fff;
}

.about-slider-nav.prev {
    left: 1rem;
}

.about-slider-nav.next {
    right: 1rem;
}

.about-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.about-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.about-dot.active {
    background-color: #fff;
}

.about-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.about-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #000;
    width: 100%;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6 {
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content p + p {
    margin-top: 1.5rem;
}

.about-content a {
    color: #000;
    text-decoration: underline;
}

.about-content a:hover {
    color: #666;
}

.about-content ul,
.about-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-content li {
    margin-bottom: 0.5rem;
}

.about-loading,
.about-error {
    text-align: center;
    padding: 3rem;
    font-size: 1.25rem;
    color: #000;
}

.about-error {
    color: #666;
}

@media (max-width: 768px) {
    .about-page {
        padding: 2rem 1rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .about-layout {
        flex-direction: column !important;
        gap: 2rem;
    }

    .about-images-column {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-content-column {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .about-images-grid {
        gap: 0.75rem;
    }

    .about-content {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Home Blog Section */
.home-blog-section {
    width: 100%;
    padding: 4rem 2rem;
    background-color: #fff;
    color: #000;
}

.home-blog-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.home-blog-title {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 3rem;
    color: #000;
    text-align: center;
    font-family: 'CintaSehatti', 'Brush Script MT', 'Lucida Handwriting', cursive;
    letter-spacing: 0.05em;
}


.home-blog-more {
    text-align: center;
    margin-top: 2rem;
}

.home-blog-more-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-blog-more-btn:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .home-blog-section {
        padding: 3rem 1.5rem;
    }

    .home-blog-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

}

/* Blog Page */
.blog-page {
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 3rem 2rem;
    background-color: #fff;
    color: #000;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #000;
}

.blog-filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

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

.blog-sort {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.blog-sort-select {
    padding: 0.75rem 1rem;
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.blog-sort-select:focus {
    outline: none;
    border-color: #000;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: #fff;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 0 #000;
}

.blog-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #000;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid #000;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #000;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card-link:hover {
    background-color: #fff;
    color: #000;
}

.blog-empty,
.blog-loading,
.blog-error {
    text-align: center;
    padding: 3rem;
    font-size: 1.25rem;
    color: #000;
}

.blog-error {
    color: #666;
}

/* Blog Detail Page */
.blog-detail-page {
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 3rem 2rem;
    background-color: #fff;
    color: #000;
}

.blog-detail-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.blog-back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-back-link:hover {
    color: #666;
    text-decoration: underline;
}

.blog-detail-image {
    width: 100%;
    margin-bottom: 2rem;
    border: 2px solid #000;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #000;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
    line-height: 1.2;
}

.blog-detail-date {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.blog-detail-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-detail-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #000;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    border: 2px solid #000;
}

.blog-detail-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #000;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.blog-detail-content h1 { font-size: 2rem; }
.blog-detail-content h2 { font-size: 1.75rem; }
.blog-detail-content h3 { font-size: 1.5rem; }
.blog-detail-content h4 { font-size: 1.25rem; }
.blog-detail-content h5 { font-size: 1.125rem; }
.blog-detail-content h6 { font-size: 1rem; }

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content a {
    color: #000;
    text-decoration: underline;
}

.blog-detail-content a:hover {
    color: #666;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border: 2px solid #000;
    margin: 1.5rem 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid #000;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

.blog-detail-content code {
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border: 1px solid #000;
    font-family: monospace;
    font-size: 0.9em;
}

.blog-detail-content pre {
    background-color: #f5f5f5;
    padding: 1rem;
    border: 2px solid #000;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-detail-content pre code {
    background-color: transparent;
    padding: 0;
    border: none;
}

@media (max-width: 768px) {
    .blog-page,
    .blog-detail-page {
        padding: 2rem 1rem;
    }

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

    .blog-filters {
        gap: 0.5rem;
    }

    .blog-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .blog-detail-title {
        font-size: 2rem;
    }

    .blog-detail-content {
        font-size: 1rem;
    }
}

/* Music Page */
.music-page {
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 3rem 2rem;
    background-color: #fff;
    color: #000;
}

.music-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.music-title {
    font-size: 2rem;
    font-weight: normal;
    font-family: 'CintaSehatti', 'Brush Script MT', 'Lucida Handwriting', cursive;
    margin-bottom: 3rem;
    color: #000;
    text-align: center;
    letter-spacing: 0.1em;
}

.music-type-section {
    margin-bottom: 4rem;
}

.music-type-section:last-child {
    margin-bottom: 0;
}

.music-type-title {
    font-size: 1.5rem;
    font-weight: normal;
    font-family: 'CintaSehatti', 'Brush Script MT', 'Lucida Handwriting', cursive;
    margin-bottom: 2rem;
    color: #000;
    letter-spacing: 0.05em;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.music-card {
    background-color: #fff;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 0 #000;
}

.music-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #000;
}

.music-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.music-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.music-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #000;
    line-height: 1.3;
}

.music-card-interpret {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.music-card-date {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.music-card-buy-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.music-card-buy-btn:hover {
    background-color: #fff;
    color: #000;
}

.music-loading,
.music-error,
.music-empty {
    text-align: center;
    padding: 3rem;
    font-size: 1.25rem;
    color: #000;
}

@media (max-width: 768px) {
    .music-page {
        padding: 2rem 1rem;
    }

    .music-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .music-type-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .music-card-content {
        padding: 1.25rem;
    }

    .music-card-title {
        font-size: 1.125rem;
    }
}

/* Music Detail Page */
.music-detail-page {
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 3rem 2rem;
    background-color: #fff;
    color: #000;
}

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

.music-back-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.music-back-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.music-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.music-detail-image {
    width: 100%;
    max-width: 500px;
}

.music-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.music-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.music-detail-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    color: #000;
    line-height: 1.2;
}

.music-detail-interpret {
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
}

.music-detail-date,
.music-detail-type {
    font-size: 1rem;
    color: #666;
}

.music-detail-buy-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
}

.music-detail-buy-btn:hover {
    background-color: #fff;
    color: #000;
}

.music-detail-tracklists {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.music-detail-tracklists-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #000;
}

.music-tracklist-section {
    margin-bottom: 3rem;
}

.music-tracklist-section:last-child {
    margin-bottom: 0;
}

.music-tracklist-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.music-song-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: song-counter;
}

.music-song-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    counter-increment: song-counter;
}

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

.music-song-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.music-song-number {
    font-weight: 600;
    color: #666;
    min-width: 2rem;
}

.music-song-title {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    flex: 1;
}

.music-song-duration {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.music-song-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-left: 2.75rem;
}

.music-song-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.music-song-link:hover {
    background-color: #f5f5f5;
    border-color: #000;
}

.music-song-audio {
    border-color: #1DB954;
    color: #1DB954;
}

.music-song-audio:hover {
    background-color: #1DB954;
    color: #fff;
}

.music-song-video {
    border-color: #FF0000;
    color: #FF0000;
}

.music-song-video:hover {
    background-color: #FF0000;
    color: #fff;
}

.music-song-lyrics-btn {
    border-color: #666;
    color: #666;
}

.music-song-lyrics-btn:hover {
    background-color: #666;
    color: #fff;
}

/* Lyrics Modal */
.lyrics-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lyrics-modal-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lyrics-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.lyrics-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.lyrics-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.lyrics-modal-close:hover {
    color: #000;
}

.lyrics-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.lyrics-text {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
    background: none;
    border: none;
    padding: 0;
}

.music-card-title-link {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.music-card-title-link:hover {
    color: #666;
    text-decoration: underline;
}

.music-card-image a {
    display: block;
    text-decoration: none;
}

@media (max-width: 768px) {
    .music-detail-page {
        padding: 2rem 1rem;
    }

    .music-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .music-detail-title {
        font-size: 2rem;
    }

    .music-detail-interpret {
        font-size: 1.125rem;
    }

    .music-detail-buy-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .music-song-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .music-song-actions {
        margin-left: 0;
        width: 100%;
    }

    .music-song-link {
        flex: 1;
        justify-content: center;
    }

    .lyrics-modal-overlay {
        padding: 1rem;
    }

    .lyrics-modal-content {
        max-height: 90vh;
    }
}

/* Contact Page */
.contact-page {
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 3rem 2rem;
    background-color: #fff;
    color: #000;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-title {
    font-size: 2rem;
    font-weight: normal;
    font-family: 'CintaSehatti', 'Brush Script MT', 'Lucida Handwriting', cursive;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.contact-form {
    width: 100%;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #000;
    flex-shrink: 0;
}

.form-checkbox span {
    line-height: 1.5;
}

.booking-fields {
    background-color: #f9f9f9;
    border: 2px solid #000;
    padding: 2rem;
    margin: 2rem 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover:not(:disabled) {
    background-color: #fff;
    color: #000;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    margin: 1rem 0;
    border: 2px solid;
    font-weight: 500;
}

.form-message.success {
    background-color: #f0f0f0;
    border-color: #000;
    color: #000;
}

.form-message.error {
    background-color: #fff;
    border-color: #000;
    color: #000;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 2rem 1rem;
    }

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

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-fields {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

/* Contact Page */
.contact-page {
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 3rem 2rem;
    background-color: #fff;
    color: #000;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}



.contact-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #000;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    width: 100%;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #000;
    flex-shrink: 0;
}

.form-checkbox a {
    color: #000;
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: #666;
}

.booking-section {
    margin: 2rem 0;
    padding: 2rem;
    border: 2px solid #000;
    background-color: #fff;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #000;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #000;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover:not(:disabled) {
    background-color: #fff;
    color: #000;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid;
    font-weight: 500;
}

.form-message.success {
    background-color: #f0f0f0;
    border-color: #000;
    color: #000;
}

.form-message.error {
    background-color: #fff;
    border-color: #000;
    color: #000;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 2rem 1rem;
    }

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

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

/* Footer */
.site-footer {
    width: 100%;
    margin-top: auto;
}

.footer-main {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
/*    filter: brightness(0) invert(1);*/
}

.footer-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-listitem {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-link-outer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
}

.social-link-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
}

.social-link-inner i {
    color: #fff;
}

.footer-lower {
    background-color: #fff;
    border-top: 1px solid #000;
    padding: 1.5rem 2rem;
}

.footer-lower-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #000;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-copyright {
    color: #000;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 1.5rem;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-name {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-social-icons {
        gap: 1rem;
    }

    .footer-social-icon {
        width: 28px;
        height: 28px;
    }

    .footer-lower {
        padding: 1rem 1.5rem;
    }

    .footer-lower-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Concerts / Tour Dates Page */
.concerts-page {
    background-color: #fff;
    color: #000;
    min-height: 100vh;
    padding: 4rem 2rem;
}

.concerts-title {
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 4rem;
    color: #000;
    /*    letter-spacing: 0.1em;*/
    /*    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;*/
    font-family: 'CintaSehatti', 'Brush Script MT', 'Lucida Handwriting', cursive;
}

.concerts-section {
    margin-bottom: 4rem;
}

.concerts-section:last-child {
    margin-bottom: 0;
}

.concerts-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #000;
    text-align: left;
}

.concerts-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.concert-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 1.5rem;
    border: 2px solid #000;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concert-item.concert-future {
    background-color: #fff;
    color: #000;
    border-color: #000;
}

.concert-item.concert-past {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.concert-item:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 #000;
}


.concert-date-time {
    min-width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.concert-date {
    font-size: 1.25rem;
    font-weight: 600;
}

.concert-item.concert-future .concert-date {
    color: #000;
}

.concert-item.concert-past .concert-date {
    color: #fff;
}

.concert-time {
    font-size: 0.875rem;
    opacity: 0.9;
}

.concert-item.concert-future .concert-time {
    color: #000;
}

.concert-item.concert-past .concert-time {
    color: #fff;
}

.concert-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.concert-location {
    flex: 1;
    text-align: left;
}

.concert-venue {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.concert-item.concert-future .concert-venue {
    color: #000;
}

.concert-item.concert-past .concert-venue {
    color: #fff;
}

.concert-city {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.concert-item.concert-future .concert-city {
    color: #000;
}

.concert-item.concert-past .concert-city {
    color: #fff;
}

.concert-description {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    white-space: pre-line;
}

.concert-item.concert-future .concert-description {
    color: #000;
}

.concert-item.concert-past .concert-description {
    color: #fff;
}

.concert-supporting-acts {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.supporting-act {
    font-size: 0.875rem;
    line-height: 1.4;
}

.concert-item.concert-future .supporting-act {
    color: #000;
}

.concert-item.concert-past .supporting-act {
    color: #fff;
}

.concert-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.concert-action-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.concert-ticket-btn-wrapper {
    position: relative;
    display: inline-block;
}

.concert-ticket-btn {
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid;
}

.concert-item.concert-future .concert-ticket-btn {
    background-color: #f5f5dc;
    color: #3d2817;
    border-color: #3d2817;
}

.concert-item.concert-future .concert-ticket-btn:hover:not(.sold-out) {
    background-color: #e8e8d0;
    transform: translateY(-1px);
}

.concert-item.concert-past .concert-ticket-btn {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.concert-item.concert-past .concert-ticket-btn:hover:not(.sold-out) {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.concert-ticket-btn.sold-out {
    cursor: not-allowed;
    opacity: 0.8;
    pointer-events: none;
}

.concert-sold-out-overlay {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8b1538;
    color: #f5f5dc;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.concert-calendar-btn {
    border: none;
    padding: 0.75rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.concert-item.concert-future .concert-calendar-btn {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
}

.concert-item.concert-future .concert-calendar-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.concert-item.concert-past .concert-calendar-btn {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
}

.concert-item.concert-past .concert-calendar-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.concert-item.concert-future .concert-calendar-btn i {
    color: #000;
}

.concert-item.concert-past .concert-calendar-btn i {
    color: #fff;
}

/* Legacy class - kept for backward compatibility but not used anymore */
.concert-sold-out {
    color: #ff0000;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.concerts-empty,
.concerts-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #000;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .concerts-page {
        padding: 2rem 1rem;
    }

    .concerts-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .concert-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .concert-date-time {
        min-width: auto;
    }

    .concert-date {
        font-size: 1.125rem;
    }

    .concert-time {
        font-size: 0.75rem;
    }

    .concert-details {
        flex-direction: column;
        gap: 1rem;
    }

    .concert-actions {
        align-items: flex-start;
        width: 100%;
    }

    .concert-ticket-btn-wrapper {
        width: 100%;
    }

    .concert-ticket-btn {
        width: 100%;
        text-align: center;
    }

    .concert-sold-out-overlay {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}
