/* Component-specific styles extracted from inline styles */

/* Platform Modal Components */
.modal-content {
    background-color: transparent !important;
}

.platform-logo-button {
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-logo-button:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.platform-logo-button img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

/* Bandsintown Widget */
#performances .bit-widget-initializer {
    display: block;
    margin-bottom: 20px;
}

/* Hide Modern Menu Toggle */
.modern-menu-toggle {
    display: none;
}

/* Modern menu toggle styles removed */

/* Sidebar Menu - Hidden */
.sidebar-menu {
    display: none;
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 3px 0 25px rgba(0, 0, 0, 0.7),
        inset -2px 0 0 rgba(231, 76, 60, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.5, 0.85, 0.25, 1.1);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    border-right: 2px solid rgba(231, 76, 60, 0.3);
}

.sidebar-menu.open {
    transform: translateX(0);
}

.sidebar-menu .sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 12px;
    right: 16px;
    cursor: pointer;
    z-index: 1102;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-menu ul li a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 16px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.sidebar-menu ul li a:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
    text-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
    transform: translateX(8px);
}

/* Responsive Sidebar Menu */
@media (min-width: 900px) {
    .sidebar-menu {
        width: 320px;
    }
}

@media (max-width: 700px) {
    .sidebar-menu {
        width: 80vw;
        min-width: 180px;
        max-width: 95vw;
    }
}

/* Home Section */
#home {
    background-image: url('../image/Kolaz20godinacrop.jpg');
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
    padding-top: 80px;
    position: relative;
    top: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

#home [data-lang] {
    position: relative;
    z-index: 2;
}

/* Home Section Mobile Optimizations */
@media (max-width: 768px) {
    #home {
        background-size: cover;
        background-position: center top;
        min-height: 50vh;
        padding: 70px 20px 0px 20px;
        margin-bottom: -20px;
    }
}

@media (max-width: 480px) {
    #home {
        background-size: contain;
        background-position: center 50px;
        background-color: #000;
        min-height: 40vh;
        padding: 60px 15px 0px 15px;
        margin-bottom: -15px;
    }
}

@media (max-width: 320px) {
    #home {
        background-size: contain;
        background-position: center 40px;
        background-color: #000;
        min-height: 30vh;
        padding: 50px 10px 0px 10px;
        margin-bottom: -10px;
    }
}

/* Carousel Components */
.carousel-item {
    position: relative;
}

.album-tracklist {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.92);
    color: #fff;
    z-index: 10;
    padding: 20px 15px 15px 15px;
    overflow-y: auto;
    border-radius: 8px;
    font-size: 0.98em;
    text-align: left;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}

.carousel-item:hover .album-tracklist {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.album-tracklist h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #e74c3c;
}

.album-tracklist ul {
    padding-left: 18px;
    margin: 0;
}

.album-tracklist li {
    margin-bottom: 3px;
    font-size: 0.98em;
}

/* Merch Section */
.merch-section img.tshirt {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    cursor: pointer;
    z-index: 1;
}

.merch-section img.tshirt:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* T-Shirt Modal */
#tshirt-modal.modal-overlay {
    display: none;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(8px);
}

#tshirt-modal .modal-content {
    background: rgba(30, 30, 30, 0.98);
    box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.55),
        0 1.5px 8px 0 rgba(231, 76, 60, 0.08);
    border-radius: 22px;
    max-width: 900px;
    min-width: 320px;
    width: 90vw;
    max-height: 92vh;
    padding: 36px 32px 32px 32px;
    overflow: auto;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

#tshirt-modal .modal-close-button {
    position: absolute;
    top: 18px;
    right: 28px;
    font-size: 2.6em;
    cursor: pointer;
    color: #fff;
    background: rgba(40, 40, 40, 0.7);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    border: none;
}

#tshirt-modal .modal-close-button:hover {
    background: #e74c3c;
    color: #fff;
}

#tshirt-modal h3#tshirt-modal-title {
    color: #e74c3c;
    margin-bottom: 24px;
    text-align: center;
    font-size: 2.1em;
    font-weight: 700;
    letter-spacing: 1px;
}

#tshirt-modal-images {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

#tshirt-modal-images > div {
    text-align: center;
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 420px;
}

#tshirt-modal-images img {
    max-width: 100%;
    max-height: 64vh;
    min-height: 320px;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
    margin-bottom: 12px;
    background: #181818;
    object-fit: contain;
    transition: transform 0.3s, box-shadow 0.3s;
}

#tshirt-modal-images img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 48px rgba(231, 76, 60, 0.18),
        0 2px 16px rgba(0, 0, 0, 0.25);
}

#tshirt-modal .modal-description {
    color: #fff;
    font-family: 'Josefin Sans', 'Roboto', Arial, sans-serif;
    font-size: 1.15em;
    line-height: 1.6;
    max-width: 340px;
    min-width: 220px;
    background: rgba(40, 40, 40, 0.55);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    padding: 28px 22px 22px 22px;
    margin: 0 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32), 0 1px 2px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    #tshirt-modal .modal-content {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    #tshirt-modal .modal-description {
        max-width: 98vw;
        min-width: 0;
        width: 100%;
        margin: 0;
        padding: 18px 10px 18px 10px;
        font-size: 1em;
    }
}