:root {
    --primary-color: #572828;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #292828;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links li.mobile-social {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.social-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-nav a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-nav a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    height: 70vh;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s;
    font-size: 0.9rem;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    color: white;
}

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--secondary-color);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.news {
    background-color: var(--light-bg);
}

.news-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.news-item {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.news-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-item p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.news-item small {
    color: #666;
    font-style: italic;
}

.music {
    background-color: var(--dark-bg);
    color: white;
}

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

.singles-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.single {
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.single:hover {
    transform: translateY(-10px);
}

.single-placeholder {
    width: 100%;
    height: 340px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #aaa;
}

.single-placeholder i {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.single-info {
    padding: 1.3rem;
}

.single-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.single-info p {
    font-size: 0.95rem;
}

.gallery {
    background-color: var(--light-bg);
}

.gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 1.3rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) transparent;
}

.gallery-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 300px;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.gallery-item i {
    font-size: 2.8rem;
    color: #999;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.3rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 1.8rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    font-size: 0.95rem;
    margin: 0;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-buttons .btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: transform 0.3s, background 0.3s;
    font-size: 0.85rem;
}

.footer-buttons .btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .nav-left {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

    .menu-toggle {
        display: flex;
        align-self: center;
        margin-left: 0;
        margin-right: 0;
    }

    .logo {
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -50%;
        width: 50%;
        height: calc(100vh - 60px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .mobile-social-nav {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .mobile-social-nav a {
        color: white;
        font-size: 1.5rem;
        transition: color 0.3s;
    }

    .mobile-social-nav a:hover {
        color: var(--secondary-color);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1.2rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .social-nav {
        display: none;
    }

    .hero {
        height: 40vh;
        padding: 0 1rem;
        background-size: 100% auto;
        background-position: center top;
        background-attachment: scroll;
    }

    @media (max-width: 480px) {
        .hero {
            background-position: center 50%;
        }
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        letter-spacing: 2px;
    }

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

    section {
        padding: 3rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

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

    .about-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .news-item {
        padding: 1.5rem;
    }

    .news-item h3 {
        font-size: 1.3rem;
    }

    .news-item p {
        font-size: 1rem;
    }

    .single {
        width: 100%;
        max-width: 320px;
    }

    .single-placeholder {
        height: 300px;
    }

    .gallery-container {
        gap: 0.8rem;
    }

    .gallery-item {
        flex: 0 0 200px;
        height: 150px;
    }

    .gallery-item i {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-buttons {
        justify-content: center;
    }

    .footer-buttons .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 45vh;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

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

    .section-title h2 {
        font-size: 1.6rem;
    }

    .single-placeholder {
        height: 260px;
    }

}

.hero {
    height: 70vh;
    background:
        /* linear-gradient(rgba(87, 40, 40, 0.7), rgba(87, 40, 40, 0.7)),  */
        url('./images/banner_desktop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Optional: Add an overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Desktop/Tablet Styles (default) */
@media (min-width: 769px) {
    .hero {
        background-image: url('./images/banner_desktop.jpg');
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        background-image: url('./images/banner_mobile.jpg');
        background-size: 100% auto;
        background-position: center top;
        background-attachment: scroll;
        height: auto;
        min-height: 50vh;
    }
}
