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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    overflow-x: hidden;
}

h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 4rem;
    margin-bottom: 70px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
}

.logo {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #b0bec5;
    text-shadow: 0 0 10px rgba(176, 190, 197, 0.5);
}

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

.nav-links a {
    color: #e8eaed;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #b0bec5;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}



/* Updates Section */
.updates-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.updates-video {
    width: 100%;
    max-width: 1000px;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(176, 190, 197, 0.3);
    backdrop-filter: blur(10px);
}

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

/* Mobile tweak */
@media (max-width: 768px) {
    .updates-video {
        max-width: 100%;
    }
}


.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out forwards;
}

.hero h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(176, 190, 197, 0.8);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.shows-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.tab-button {
    background: rgba(255, 255, 255, 0.1);
    color: #b0bec5;
    border: 2px solid rgba(176, 190, 197, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.tab-button:hover {
    background: rgba(176, 190, 197, 0.2);
    border-color: #b0bec5;
}

.tab-button.active {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    border-color: #b0bec5;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.show-year {
    font-size: 0.8rem;
    color: #90a4ae;
    font-weight: normal;
}

/* Update mobile logo sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }

    .hero-logo {
        height: 120px;
        /* Increased from 80px */
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }

    .hero-logo {
        height: 100px;
        /* Increased from 60px */
    }
}


.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    margin: 0.5rem 0.75rem;
}

.cta-button:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #b0bec5;
    position: relative;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.band-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.band-image:hover {
    transform: scale(1.05);
}

.band-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Shows Section */
.shows-grid {
    display: grid;
    gap: 2rem;
}

.show-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 190, 197, 0.3);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: center;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(176, 190, 197, 0.2);
    border-color: #b0bec5;
}

.show-date {
    text-align: center;
    min-width: 80px;
}

.show-month {
    font-size: 0.9rem;
    color: #b0bec5;
    font-weight: bold;
}

.show-day {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.show-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #b0bec5;
}

.show-venue {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.show-location {
    opacity: 0.8;
    font-size: 0.9rem;
}

.show-extra {
    grid-column: 1 / -1;
    display: none;
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(176, 190, 197, 0.2);
    color: #ccc;
    animation: slideDown 0.3s ease-out;
}

.show-extra.show {
    display: block;
}

.show-extra p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.show-extra p:last-of-type {
    margin-bottom: 1.2rem;
    font-style: italic;
    color: #ddd;
}

.ticket-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.ticket-link {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.2);
}

.ticket-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 190, 197, 0.4);
}

.ticket-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 190, 197, 0.4);
}

/* Listen Section */
#listen {
    padding: 60px 20px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
}

#listen summary {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
}

.video-dropdowns {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(176, 190, 197, 0.15);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(144, 164, 174, 0.1);
    overflow: hidden;
    position: relative;
}

.video-card:hover {
    box-shadow: 0 0 25px rgba(176, 190, 197, 0.3);
    border-color: #b0bec5;
}

.video-card summary {
    cursor: pointer;
    list-style: none;
    font-size: 1.3rem;
    color: #b0bec5;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.video-card summary:hover {
    color: #ffffff;
}

.video-card[open] {
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(176, 190, 197, 0.4);
}

.video-card[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.video-info {
    color: #ccc;
    padding-top: 0.5rem;
    animation: fadeIn 0.4s ease-in-out;
}

.video-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.video-info video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-info iframe {
    width: 100%;
    height: 315px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: none;
}

@media (max-width: 768px) {
    .video-info iframe {
        height: 200px;
    }
}

/* Merch Section */
#merch {
    padding: 100px 20px;
    /* Increased from 60px to 100px */
    text-align: center;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    /* Increased from 500px to 600px */
    gap: 3rem;
    /* Increased from 2rem to 3rem */
    max-width: 1400px;
    /* Increased from 1200px to 1400px */
    margin: 0 auto;
}

.merch-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    /* Increased from 15px to 20px */
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 190, 197, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow */
    display: grid;
    grid-template-columns: 300px 1fr;
    /* Increased from 200px to 300px */
    gap: 0;
    text-align: left;
    min-height: 300px;
    /* Added minimum height */
}

.merch-item:hover {
    transform: translateY(-15px);
    /* Increased from -10px to -15px */
    box-shadow: 0 20px 40px rgba(176, 190, 197, 0.4);
    /* Enhanced hover shadow */
    border-color: #b0bec5;
}

.merch-image {
    width: 300px;
    /* Increased from 200px to 300px */
    height: 300px;
    /* Increased from 200px to 300px */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 20px;
    /* Added padding around image */
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.merch-item:hover .merch-image img {
    transform: scale(1.08);
    /* Slightly increased scale effect */
}

.merch-info {
    padding: 2.5rem;
    /* Increased from 1.5rem to 2.5rem */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    gap: 1rem;
    /* Added gap between elements */
}

.merch-info h3 {
    font-size: 1.4rem;
    /* Increased from 1.2rem */
    color: #b0bec5;
    margin-bottom: 0.8rem;
    /* Increased margin */
    font-weight: 600;
}

.merch-info p {
    font-size: 1rem;
    /* Increased from 0.9rem */
    opacity: 0.8;
    margin-bottom: 1.5rem;
    /* Increased margin */
    line-height: 1.6;
    /* Increased line height */
}

.merch-price {
    font-size: 1.5rem;
    /* Increased from 1.3rem */
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
    /* Increased margin */
}

.merch-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    padding: 1rem 2.5rem;
    /* Increased padding */
    border: none;
    border-radius: 30px;
    /* Increased from 25px */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    /* Increased from 0.9rem */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    /* Increased letter spacing */
    width: fit-content;
}

.merch-btn:hover {
    transform: translateY(-3px);
    /* Increased from -2px */
    box-shadow: 0 12px 25px rgba(176, 190, 197, 0.5);
    /* Enhanced shadow */
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    #merch {
        padding: 80px 20px;
        /* Increased mobile padding */
    }

    .merch-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        /* Increased gap */
        margin: 0 1rem;
    }

    .merch-item {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 1.5rem;
        /* Added padding to item */
    }

    .merch-image {
        width: 100%;
        height: 250px;
        /* Increased from 200px */
        padding: 15px;
    }

    .merch-info {
        padding: 1.5rem;
    }

    .merch-btn {
        width: 100%;
        padding: 1.2rem 2rem;
        /* Increased mobile button padding */
    }
}

@media (max-width: 480px) {
    #merch {
        padding: 60px 15px;
    }

    .merch-item {
        margin: 0 0.5rem;
        padding: 1rem;
    }

    .merch-image {
        height: 220px;
        padding: 10px;
    }

    .merch-info h3 {
        font-size: 1.2rem;
    }

    .merch-price {
        font-size: 1.3rem;
    }
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(176, 190, 197, 0.2);
    border-radius: 50%;
    color: #b0bec5;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.social-link:hover {
    background: #b0bec5;
    color: white;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

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

    .show-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .about-text {
        max-width: 90%;
    }

    .ticket-links {
        flex-direction: column;
    }

    .ticket-link {
        text-align: center;
    }

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

    .merch-item {
        grid-template-columns: 1fr;
        text-align: center;
        margin: 0 1rem;
    }

    .merch-image {
        width: 100%;
        height: 200px;
    }

    .merch-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .show-card {
        padding: 1.5rem;
    }

    .merch-item {
        margin: 0 1rem;
    }
}

/* Responsive tweaks */
@media (min-width: 769px) {
    #stats .container {
        padding: 40px 60px;
        /* Increased padding */
        margin: 40px auto;
        max-width: 1400px;
        /* Much wider - increased from 1200px */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        /* Increased gap */
        background-color: #1a1a1a;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
        white-space: nowrap;
    }

    #youtubeLogoLarge {
        display: block !important;
        width: 280px;
        /* Reduced size to fit in row */
        flex-shrink: 0;
    }

    #youtubeLogoSmall {
        display: none !important;
    }

    .subCount {
        font-size: 3.2em;
        /* Reduced size to fit in row */
        color: #ff0000;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    #stats .container {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        white-space: normal;
    }

    .subCount {
        font-size: 2.8em;
        text-align: center;
    }

    .subLabel {
        margin-left: 0;
        align-self: center;
    }
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Logo in hero section */
.hero-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }

    .hero-logo {
        height: 150px;
    }

    /* Make CTA button smaller on mobile */
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }

    .hero-logo {
        height: 130px;
    }

    /* Make CTA button even smaller on small mobile */
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

.band-profiles {
    margin-top: 4rem;
}

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

/* Center the last item (Evan) if it's the single item in the last row */
.profile-grid .profile-card:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
}

/* Default profile card - always takes 1 column */
.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(176, 190, 197, 0.2);
    grid-column: span 1;
    /* Always span 1 column */
}

/* Compressed state - smaller and faded */
.profile-card.compressed {
    transform: scale(0.75);
    opacity: 0.4;
    filter: blur(1px);
}

/* Expanded state - larger but still in same grid position */
.profile-card.expanded {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Image styling */
.profile-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
    object-position: top;
}

.profile-card.expanded img {
    height: 250px;
}

/* Profile info - hidden by default */
.profile-info {
    display: none;
    padding: 1.5rem;
    color: #ccc;
    text-align: left;
    background: rgba(0, 0, 0, 0.8);
}

.profile-info h3 {
    color: #b0bec5;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.profile-info p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Show info when expanded */
.profile-card.expanded .profile-info {
    display: block;
}

/* Collapse arrow */
.collapse-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 50%;
    padding: 0.25rem 0.6rem;
    cursor: pointer;
    display: none;
    z-index: 20;
    transition: all 0.3s ease;
}

.collapse-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Show arrow only when card is expanded */
.profile-card.expanded .collapse-arrow {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-grid .profile-card:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }

    .profile-card.expanded {
        transform: scale(1.05);
    }

    .profile-card.compressed {
        transform: scale(0.85);
    }
}

@media (max-width: 480px) {
    .profile-card.expanded {
        transform: scale(1.02);
    }

    .profile-card.compressed {
        transform: scale(0.9);
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(176, 190, 197, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #b0bec5;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b0bec5;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 190, 197, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #81c784;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #e57373;
}

@media (max-width: 768px) {
    .contact-form {
        margin: 1rem auto;
        padding: 1.5rem;
    }
}

/* Support The Band Section */
.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.social-media,
.donate-section {
    text-align: center;
}

.social-media h3,
.donate-section h3 {
    font-size: 1.8rem;
    color: #b0bec5;
    margin-bottom: 2rem;
    font-weight: 500;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(176, 190, 197, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    background: rgba(176, 190, 197, 0.15);
    transform: translateY(-8px) scale(1.05);
    border-color: #b0bec5;
    box-shadow: 0 15px 30px rgba(176, 190, 197, 0.3);
}

.social-link img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.social-link:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Platform-specific colors */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-link.youtube:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-color: #ff0000;
}

.social-link.facebook:hover {
    background: linear-gradient(45deg, #1877f2, #0d47a1);
    border-color: #1877f2;
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #000000, #ff0050);
    border-color: #ff0050;
}

.donate-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.donate-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.donate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.donate-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.donate-btn.paypal {
    background: #0070ba;
    color: white;
    border-color: #0070ba;
}

.donate-btn.paypal:hover {
    background: #005ea6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 112, 186, 0.4);
}

.donate-btn.venmo {
    background: #3d95ce;
    color: white;
    border-color: #3d95ce;
}

.donate-btn.venmo:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 149, 206, 0.4);
}

.donate-btn.patreon {
    background: #f3f3f3;
    color: black;
    border-color: #3d95ce;
}

.donate-btn.patreon:hover {
    background: #f3f3f3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 149, 206, 0.4);
}


/* Responsive Design for Support Section */
@media (max-width: 768px) {
    .support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 300px;
    }

    .social-link {
        height: 100px;
    }

    .social-link img {
        width: 50px;
        height: 50px;
    }

    .donate-links {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 250px;
    }

    .social-link {
        height: 80px;
    }

    .social-link img {
        width: 40px;
        height: 40px;
    }

    .donate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.contact-email {
    margin-top: 2rem;
    text-align: center;
}

.contact-email a {
    color: #b0bec5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #ffffff;
}

.meet-the-band-header {
    text-align: center;
    margin: 4rem 0 2rem 0;
    /* Increased top margin */
}

.meet-the-band-header h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #b0bec5;
    margin-bottom: 1rem;
}

.meet-the-band-description {
    font-size: 1rem;
    color: #ccc;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .meet-the-band-header {
        margin: 5rem 0 2rem 0;
        /* Even more space on mobile */
    }

    .meet-the-band-header h2 {
        font-size: 2rem;
    }

    .meet-the-band-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* Video Grid Section */
/* Video Grid Section */
#watch {
    text-align: center;
    /* Center everything in the watch section */
}

#watch .video-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin: 2rem auto;
    /* Center the grid */
    width: 100%;
    max-width: 1200px;
    /* Add max-width for better centering */
    justify-items: center;
    /* Center grid items */
}

.video {
    position: relative;
    width: 100%;
    max-width: 400px;
    /* Limit max width for better centering */
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.view-more-btn {
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(176, 190, 197, 0.5);
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
}

.hidden {
    display: none !important;
}

/* Responsive design for video grid */
@media (max-width: 968px) {
    #watch .video-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
        max-width: 800px;
        /* Smaller max-width for 2-column layout */
    }

    .video {
        max-width: none;
        /* Remove max-width constraint on smaller screens */
    }
}

@media (max-width: 640px) {
    #watch .video-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin: 1.5rem auto;
        /* Ensure centering on mobile */
        max-width: 400px;
        /* Limit width for single column */
    }

    .view-more-btn {
        margin: 2rem auto 0;
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: auto;
        /* Ensure button doesn't stretch full width */
        max-width: 200px;
        /* Limit button width */
    }
}

/* Donation Disclaimer Modal */
.donation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.donation-modal.active {
    display: flex;
}

.donation-modal-content {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 550px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(176, 190, 197, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

.modal-disclaimer {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
    text-align: left;
}

.modal-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.modal-btn:last-child {
    margin-bottom: 0;
}

.modal-btn-secondary {
    background: rgba(176, 190, 197, 0.2);
    color: #b0bec5;
    border: 2px solid rgba(176, 190, 197, 0.4);
}

.modal-btn-secondary:hover {
    background: rgba(176, 190, 197, 0.3);
    border-color: #b0bec5;
}

.modal-btn-primary {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 8px 25px rgba(176, 190, 197, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(176, 190, 197, 0.5);
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive for modal */
@media (max-width: 480px) {
    .donation-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .modal-disclaimer {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .modal-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .modal-btn-primary {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
}
/* =============================================
   Patron platform additions (auth modal, account icon, PATRONS nav)
   ============================================= */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* Patrons Link - Distinctive Styling */
.see-more-link {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a !important;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.see-more-link:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(176, 190, 197, 0.4);
}

/* Remove hover underline for Patrons button */
.see-more-link::after {
    display: none !important;
}

.see-more-link:hover::after {
    width: 0 !important;
}

/* Account Icon */
.account-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b0bec5;
    border: 1px solid rgba(176, 190, 197, 0.3);
}

.account-icon:hover {
    background: rgba(176, 190, 197, 0.2);
    color: #ffffff;
    border-color: #b0bec5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.3);
}

.account-icon svg {
    transition: transform 0.3s ease;
}

.account-icon .account-icon-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.account-icon:hover svg {
    transform: scale(1.1);
}

/* Account Dropdown Styles (matches the dropdown on feed/manage pages -
   script.js renders the same markup on every page) */
.account-dropdown {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 240px;
    z-index: 3000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.2s ease;
}

.dropdown-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem 0.75rem;
}

.dropdown-avatar-img,
.dropdown-avatar-text {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dropdown-avatar-img {
    object-fit: cover;
}

.dropdown-avatar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #37474f;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.dropdown-profile-info {
    min-width: 0;
}

.dropdown-profile-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-profile-email {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-divider {
    height: 1px;
    background: rgba(176, 190, 197, 0.3);
    margin: 0.25rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: #37474f;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(176, 190, 197, 0.15);
    color: #1a1a1a;
}

.dropdown-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(176, 190, 197, 0.35);
    background: rgba(255, 255, 255, 0.7);
    color: #607d8b;
    flex-shrink: 0;
}

/* Signed-in fallback when there's no profile photo: user's initial */
.account-icon .account-icon-initial {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    user-select: none;
}

@media (max-width: 768px) {
/* Mobile responsive for account dropdown */
    .account-dropdown {
        right: 1rem;
        min-width: 220px;
    }
}

@media (max-width: 480px) {
/* Very small screen responsive for account dropdown */
    .account-dropdown {
        right: 0.5rem;
        left: 0.5rem;
        min-width: auto;
    }
}

/* Authentication Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.auth-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.auth-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 0;
    width: 100%;
    max-width: 440px;
    max-height: calc(100vh - 3rem);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(176, 190, 197, 0.3);
    animation: slideInUp 0.3s ease;
    overflow: hidden;
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem 1.1rem 1.75rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
    flex-shrink: 0;
}

.auth-modal-header h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: #b0bec5;
    margin: 0;
}

.auth-close {
    color: #b0bec5;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.auth-close:hover {
    color: #ffffff;
    background: rgba(176, 190, 197, 0.2);
    transform: scale(1.1);
}

.auth-modal-body {
    padding: 1.5rem 1.75rem 1.5rem 1.75rem;
    overflow-y: auto;
}

.auth-form {
    margin-bottom: 0.25rem;
}

.auth-name-row {
    display: flex;
    gap: 0.75rem;
}

.auth-name-row .auth-form-group {
    flex: 1;
    min-width: 0;
}

.auth-form-group {
    margin-bottom: 1rem;
}

.auth-form-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.auth-form-group input:focus {
    outline: none;
    border-color: #b0bec5;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(176, 190, 197, 0.3);
}

.auth-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.auth-submit-btn {
    width: 100%;
    padding: 0.85rem 1rem;
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 190, 197, 0.4);
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-switch {
    text-align: center;
    margin-top: 0.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(176, 190, 197, 0.2);
}

.auth-switch p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
}

.auth-switch a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(176, 190, 197, 0.6);
    padding-bottom: 1px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.auth-switch a:hover {
    color: #b0bec5;
    border-bottom-color: #b0bec5;
}

@media (max-width: 480px) {
.auth-modal-content {
        width: 98%;
        margin: 0.5rem;
    }

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

.auth-modal-header {
        padding: 1rem 1rem 0.5rem 1rem;
    }

.auth-modal-body {
        padding: 1rem;
    }

.auth-form-group input {
        padding: 0.8rem;
    }

.auth-submit-btn {
        padding: 0.8rem;
    }
}
@media (max-width: 768px) {
    .nav-right .see-more-link {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }
}
