/*
Theme Name: Basement Power v6
Theme URI: https://example.com/basement-power
Author: Assistant
Author URI: https://example.com
Description: A modern, professional WordPress theme for Basement Power.
Version: 1.0.0
Text Domain: basementpower
*/

:root {
    --color-primary: #E6007E;
    --color-dark: #121212;
    --color-darker: #0a0a0a;
    --color-light: #ffffff;
    --color-gray: #333333;
    --color-text: #e0e0e0;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --container-width: 1200px;
    --header-height: 100px;
    --transition: all 0.3s ease;
}

/* Reset & Basics - Override any parent/old theme styles */
html {
    background-color: #121212 !important;
    background-image: none !important;
}

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

body {
    background-color: var(--color-dark) !important;
    background-image: none !important;
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main.site-main {
    flex-grow: 1;
}

body.menu-open {
    overflow: hidden; /* Prevent scrolling when menu is open */
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-light);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(18, 18, 18, 0.98);
    height: 80px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-bottom: none;
}

.site-header.scrolled .site-branding svg {
    height: 60px;
}

.site-header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding svg {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    display: block; /* Removes weird spacing */
}

.custom-logo-link {
    display: block;
    line-height: 0; /* Fixes potential height issues with inline-block */
}

.site-branding svg:hover {
    transform: scale(1.05);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--color-light);
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    display: block;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--color-light);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle-icon {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-light);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle-icon span:nth-child(1) { top: 0; }
.menu-toggle-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle-icon span:nth-child(3) { bottom: 0; }

/* Hamburger Animation */
.menu-toggle.active .menu-toggle-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-icon span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center top;
    position: relative;
    padding-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), var(--color-dark));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(230, 0, 126, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll-arrow 2s infinite;
}

.scroll-indicator span:nth-child(2) { animation-delay: -0.2s; }
.scroll-indicator span:nth-child(3) { animation-delay: -0.4s; }

@keyframes scroll-arrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-20px, -20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(20px, 20px); }
}

.scroll-indicator.hidden {
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    border: 2px solid var(--color-primary);
}

.btn:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--color-dark);
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-light);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 20px auto 0;
}

/* Band Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.member-card {
    background-color: var(--color-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.member-image {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-role {
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* Live Dates */
.dates-list {
    max-width: 800px;
    margin: 0 auto;
}

.date-item {
    display: grid;
    /* Grid layout: Day | Location | Place | Button */
    grid-template-columns: 130px 1.5fr 1.5fr auto; 
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
    transition: background 0.3s;
    gap: 20px;
}

.date-item:hover {
    background-color: #1a1a1a;
}

.date-info {
    display: contents; /* Allows children (day/location) to participate in the parent grid */
}

.date-day {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    text-align: left;
}

.date-location {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.date-place {
    color: #888;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

/* Live Dates Decoration */
.live-dates-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

#live-dates .section-title,
#live-dates .dates-list,
#live-dates .btn {
    position: relative;
    z-index: 1;
}

.line {
    position: absolute;
    background: var(--color-primary);
    opacity: 0.15;
    border-radius: 4px;
}

.line-1 {
    width: 200px;
    height: 4px;
    top: 10%;
    left: -10px;
    transform: rotate(45deg) translateY(var(--parallax-offset, 0px));
    transition: transform 0.1s linear; /* Smooth out small jitters, but keep it responsive */
}

.line-2 {
    width: 300px;
    height: 6px;
    top: 40%;
    right: -100px;
    transform: rotate(-15deg) translateY(calc(var(--parallax-offset, 0px) * -1.5));
    transition: transform 0.1s linear;
}

.line-3 {
    width: 150px;
    height: 4px;
    bottom: 20%;
    left: 10%;
    transform: rotate(10deg) translateY(calc(var(--parallax-offset, 0px) * 0.8));
    transition: transform 0.1s linear;
}

/* Akustik Section */
.Akustik-section {
    background-color: #FDEAEF;
    color: var(--color-dark);
    padding: 0;
}

.Akustik-section h2 {
    color: var(--color-dark);
}

.Akustik-section p {
    color: #444;
}

/* Akustik Section Split Layout */
.akustik-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 800px;
    background-color: #FDEAEF;
}

.akustik-image-container {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    height: 100%;
}

.akustik-parallax-img {
    width: 100%;
    height: 120%; /* Taller for parallax */
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
    will-change: transform;
}

.akustik-content {
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FDEAEF;
    color: var(--color-dark);
}

.akustik-title {
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 2px;
}

.akustik-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
}

.akustik-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-akustik {
    align-self: flex-start;
    display: inline-block;
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    padding: 18px 50px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-akustik:hover {
    background-color: var(--color-dark);
    color: #FDEAEF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

@media (min-width: 992px) {
    .akustik-grid {
        grid-template-columns: 55% 45%;
    }
}

/* Footer */
.site-footer {
    background-color: #050505; /* Slightly darker than main bg */
    padding: 100px 0 40px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #888;
    text-align: center;
    font-size: 0.95rem;
}

.footer-main-content {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.footer-info-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    width: 100%;
}

.footer-brand h3 {
    color: var(--color-light);
    font-size: 1.5rem; /* More restrained size */
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-brand .tagline {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-style: normal;
    color: #666;
    margin-bottom: 40px;
    display: block;
    letter-spacing: 0.5px;
}

.footer-contact-info {
    margin-bottom: 40px;
}

.footer-contact-info p {
    margin-bottom: 0;
    line-height: 1.8;
}

.footer-contact-info strong {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.footer-contact-info a {
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-contact-info a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-navigation a {
    color: #aaa;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    padding: 5px 0;
}

.footer-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-navigation a:hover {
    color: #fff;
}

.footer-navigation a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    color: #444;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #666;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #aaa;
    text-decoration: none;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .about-text {
        text-align: left;
    }
}

.about-text p {
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-light);
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
}

/* Responsive Video Embed */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Simple Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none; /* Changed from flex to none by default, JS handles display */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--color-primary, #E6007E);
    box-shadow: 0 0 20px rgba(230, 0, 126, 0.2);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

.modal-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    color: var(--color-text);
}

.modal-details strong {
    color: var(--color-primary, #E6007E);
    display: inline-block;
    width: 80px;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-primary);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(230, 0, 126, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive & Mobile Menu */
@media (max-width: 768px) {
    :root {
        --header-height: 80px; /* Smaller header on mobile */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn {
        display: block;
        margin-bottom: 10px;
        margin-left: 0;
    }

    .btn-outline {
        margin-left: 0;
    }
    
    .date-item {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .date-info {
        /* On mobile, display: contents would break flex layout if we want wrapper behavior,
           but actually we want them to stack.
           Since date-item is flex-col, if date-info is display:contents, children are flex items.
           If date-info is display:block/flex, it is a flex item.
           Let's make date-info NOT display:contents on mobile so we can control order if needed, 
           or keep it simpler. Actually, having them as separate items is fine. 
           But let's ensure text alignment is centered. */
        display: contents;
    }
    
    .date-day, .date-location, .date-place {
        text-align: center;
        width: 100%;
        white-space: normal; /* Allow wrapping on mobile */
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(15px);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .main-navigation.toggled {
        transform: translateX(0);
    }

    .main-navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .main-navigation a {
        font-size: 1.5rem;
    }
    
    .site-branding svg {
        height: 60px; /* Smaller logo on mobile */
        max-height: none;
    }
}

/* Contact Page Styles */
.contact-page {
    background-color: #fff;
    color: #333;
}

.contact-hero .hero-title,
.contact-hero .hero-subtitle {
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-heading {
    color: #111;
    text-align: left;
    margin-bottom: 30px;
    left: 0;
    transform: none;
    font-size: 2rem;
}

.contact-heading::after {
    margin: 15px 0 0;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content {
    padding-left: 0;
}

.info-content .info-line {
    margin: 0 0 10px 0;
    display: block;
}

.info-content .info-line:last-child {
    margin-bottom: 0;
}

.info-content strong {
    display: inline;
    color: #333;
}

.contact-link,
.info-content address {
    display: inline;
    color: #555;
    font-style: normal;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--color-primary);
}

.map-link {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    font-weight: bold;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.map-link .arrow {
    margin-left: 5px;
    transition: transform 0.3s;
}

.map-link:hover .arrow {
    transform: translateX(5px);
}

.contact-social {
    justify-content: flex-start;
}

.contact-social a {
    border-color: #ddd;
    color: #555;
}

.contact-social a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.professional-contact-form .form-row {
    display: flex;
    gap: 20px;
}

.professional-contact-form .form-group {
    margin-bottom: 25px;
    width: 100%;
}

.professional-contact-form .form-group.half {
    width: 50%;
}

.professional-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.professional-contact-form input,
.professional-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s;
}

.professional-contact-form input:focus,
.professional-contact-form textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.1);
}

.professional-contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-footer {
    margin-top: 30px;
}

.btn-submit {
    width: 100%;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
}

.privacy-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

.contact-success-message {
    background: #d4edda;
    color: #155724;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .professional-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .professional-contact-form .form-group.half {
        width: 100%;
    }
}

/* Band Carousel */
.band-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    width: 100%;
    padding: 0 40px; /* Space for arrows */
}

.band-carousel {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 100%; /* Default mobile: 1 slide */
    height: 400px; /* Fixed height for consistency */
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 10px); /* 2 slides */
    }
}

@media (min-width: 992px) {
    .carousel-slide {
        flex: 0 0 calc(33.333% - 14px); /* 3 slides */
    }
}
