/* Landing page (index.html) at domain root - Rhythm Support Group */
:root {
    --text-secondary: #cccccc;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00D4FF, #FF0080, #FF6B35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00D4FF, #FF0080);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #00D4FF;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #00D4FF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - left padding aligned with nav-container (max-width 1200px + 20px) */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-left: max(20px, calc((100vw - 1200px) / 2 + 20px));
    padding-right: max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 212, 255, 0.1));
    z-index: -1;
}

.hero-content {
    text-align: left;
    z-index: 1;
    max-width: 100%;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1em;
}

.hero-title-line {
    display: block;
    background: linear-gradient(45deg, #00D4FF, #FF0080, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroPulse 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.92; transform: scale(1.02); }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00D4FF, #FF0080);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00D4FF;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-secondary:hover {
    background: #00D4FF;
    color: #000000;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #00D4FF;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00D4FF, #FF0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #00D4FF, #FF0080);
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
    display: block;
    max-width: 48rem;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00D4FF;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.about-description-content p {
    margin-bottom: 1rem;
}
.about-description-content p:last-child {
    margin-bottom: 0;
}

/* Rich text editor in Edit About modal */
.about-rich-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}
.about-toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 6px;
    color: #00D4FF;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.about-toolbar-btn:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: #00D4FF;
}
.about-rich-editor {
    min-height: 160px;
    max-height: 320px;
    overflow-y: auto;
    padding: 0.75rem 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #0a0a0a;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    outline: none;
}
.about-rich-editor:empty::before,
.about-rich-editor[data-placeholder]:empty::before {
    content: attr(data-placeholder);
    color: rgba(255, 255, 255, 0.4);
}
.about-rich-editor p {
    margin: 0 0 0.75rem 0;
}
.about-rich-editor p:last-child {
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease;
}

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

/* Music Section */
.music {
    padding: 6rem 0;
    background: #0a0a0a;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.album-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: #00D4FF;
}

.album-artwork {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.album-artwork img {
    width: 100%;
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: #00D4FF;
}

.album-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.album-card p {
    color: #cccccc;
}

/* Performances Section */
.performances {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.shows-grid .show-card {
    max-width: 600px;
    width: 100%;
}

.show-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.show-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: #00D4FF;
}

.show-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Edit/delete actions on show cards (when logged in as RSG) */
.show-card-actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.35rem;
    z-index: 2;
}
.show-card-actions .public-site-edit-btn,
.show-card-actions .public-site-delete-btn {
    position: static;
}

.show-info {
    padding: 2rem;
    text-align: center;
}

.show-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.show-info h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.show-info h3 a:hover {
    color: #00D4FF;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.show-date {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.show-location {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.show-location a {
    color: #00D4FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.show-location a:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.btn-ticket {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #00D4FF, #FF0080);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

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

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: #0a0a0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Stack caption above photo so photo never overlaps caption */
.public-site-media-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.public-site-media-item .public-site-item-header-wrap {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.public-site-media-item > img {
    flex-shrink: 0;
    display: block;
    margin-top: 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: min(500px, 70vh);
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #00D4FF;
}

/* Video upload loader (Add video modal) */
.video-upload-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top-color: #00D4FF;
    border-radius: 50%;
    animation: video-upload-spin 0.9s linear infinite;
}
@keyframes video-upload-spin {
    to { transform: rotate(360deg); }
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

.video-item {
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    position: relative;
}

/* Stable aspect-ratio box so poster/thumbnail never flashes small before metadata loads */
.video-item video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    min-height: 180px;
    max-height: min(360px, 45vh);
    object-fit: contain;
    object-position: center;
    background: #1a1a2e;
    vertical-align: middle;
}

/* Hide native volume control (audio is boosted via Web Audio API so native slider does nothing) */
.video-item video::-webkit-media-controls-volume-slider,
.video-item video::-webkit-media-controls-mute-button {
    display: none !important;
}

.video-item .video-caption {
    padding: 0 0.25rem;
}

/* Header/label above each photo or video - always visible bar; edit on left so it doesn't sit under delete (top-right) */
.public-site-item-header-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.25rem;
    padding: 0.4rem 0.6rem;
    background: rgba(0, 212, 255, 0.12);
    border-bottom: 1px solid rgba(0, 212, 255, 0.25);
    margin: 0;
}
.public-site-media-item .public-site-item-header {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(0, 212, 255, 0.95);
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}
.public-site-media-item .public-site-item-header.is-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* Edit button (pencil) for caption/thumbnail when logged in as RSG */
.public-site-edit-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #00D4FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.public-site-edit-btn:hover {
    background: rgba(0, 212, 255, 0.3);
    color: #fff;
    border-color: #00D4FF;
}

/* Delete button for gallery photos and videos (when logged in as RSG) */
.public-site-delete-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    transition: background 0.2s;
}
.public-site-delete-btn:hover {
    background: rgba(200, 60, 60, 0.9);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-one-col {
    max-width: 520px;
    margin: 0 auto;
}

.contact-form-block,
.contact-info-block {
    padding: 1.5rem 0;
}

.contact-block-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #00D4FF;
}

.contact-block-desc {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}

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

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    color: #cccccc;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-detail-item:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    color: #ffffff;
}

.contact-detail-item i {
    color: #00D4FF;
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00D4FF;
}

.contact-info p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00D4FF, #FF0080);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #00D4FF;
}

.contact-text span {
    color: #cccccc;
    font-size: 0.95rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #00D4FF;
}

.contact-form p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D4FF;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #00D4FF, #FF0080);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.social-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00D4FF;
}

.social-section .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-section .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.social-section .social-links a:hover {
    background: linear-gradient(45deg, #00D4FF, #FF0080);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
    border-color: transparent;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.footer-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.9;
}

.footer-link .footer-bottom,
.footer-link .footer-bottom p {
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00D4FF, #FF0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: #00D4FF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content,
    .contact-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .music-grid,
    .shows-grid {
        grid-template-columns: 1fr;
    }
}
