:root {
    --squamish-red: #cc0000;
    --squamish-dark: #1a1a1a;
    --overlay-dark: rgba(0, 0, 0, 0.65);
    --overlay-red: rgba(180, 0, 0, 0.8);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        min-height: 50vh;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 2;
}

.overlay-red-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(200, 0, 0, 0.4));
    z-index: 2;
}

.overlay-black-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(37, 37, 37, 0.4));
    z-index: 2;
}

.content-wrapper {
    position: relative;
    z-index: 3;
    color: white;
    padding: 4rem 1rem;
}

.bg-hero {
    background-image: url('../images/grp1.jpg');
}

.bg-studio {
    background-image: url('../images/studio.jpg');
}

.bg-hero-about {
    background-image: url('../images/large-bg-about.jpg');
}

.bg-nature {
    background-image: url('../images/about2.jpg');
}

.bg-drum {
    background-image: url('../images/drum.jpg');
}

.bg-pattern {
    background-image: url('../images/subtle-pattern.png');
}


/* --- Navbar Styling --- */
.navbar-custom {
    /*     background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent); */
    padding: 20px 0;
    transition: background 0.3s ease;
}

.navbar-custom.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    border-bottom: 2px solid var(--squamish-red);
}

/* --- Components --- */
.feature-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    border-bottom: 4px solid var(--squamish-red);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--squamish-red);
    margin: 10px auto 0;
}

footer.text-center {
    background-color: #000;
    color: #fff;
    padding: 40px;
}

.bi-instagram::before,
.bi-facebook::before,
.bi-tiktok::before {
    color: #dc3545;
}

a.navbar-brand.d-flex.align-items-center.gap-2 {
    height: 142px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 15px;
        margin-top: 10px;
        border-top: 2px solid var(--squamish-red);
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 780px) {
    a.navbar-brand.d-flex.align-items-center.gap-2 img {
        height: 150px;
    }
}

.content-wrapper {
    position: relative;
    z-index: 3;
    color: white;
    padding: 4rem 1rem;
    top: 50px;
}