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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #000000;
}

/* Hide navbar by default until user clicks */
.navbar { opacity: 0; pointer-events: none; transition: opacity 0.5s; }
body.entered .navbar { opacity: 1; pointer-events: auto; }

/* Removed musical note animations for simplicity */

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000 !important;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo h2 {
    font-family: 'Alchemin', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.nav-logo h2:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

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

.nav-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, #ff3333);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    animation: videoFadeIn 3s ease-in-out 6s forwards;
    animation-play-state: paused;
    transform: translateY(-16.67%) scale(1.333);
}

@keyframes videoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

#enter-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#enter-overlay span {
  margin-top: 18rem !important;
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.5s ease-out, breathing 4s ease-in-out infinite;
}

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

.hero-design {
    text-align: center;
    margin-bottom: 2rem;
}

.indian-pattern-top,
.indian-pattern-bottom {
    height: 2px;
    background: #fff;
    margin: 2rem 0;
    opacity: 0.5;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin: 2rem 0;
    text-align: center;
    color: #fff;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
    animation: gentleBreathing 6s ease-in-out infinite;
    animation-play-state: paused;
    position: relative;
    font-feature-settings: "liga" 1, "kern" 1;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    opacity: 0.6;
}





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

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



.hero-subtitle {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: subtitleFade 2s ease-out 0.5s both, gentleBreathing 6s ease-in-out infinite;
    animation-play-state: paused;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    font-style: italic;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Removed stats section */

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    animation: buttonsSlide 2s ease-out 1s both;
}

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

.btn {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #fff, #990000);
    color: white;
    border: none;
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #990000, #fff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover::before {
    left: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #000000 !important;
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before,
.about::after {
    display: none !important;
}

/* --- ABOUT SECTION: Make it match the hero section more closely --- */
.about-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.12em;
    margin: 1.2rem 0 2.2rem 0;
    text-shadow: 0 0 12px #fff, 0 2px 8px rgba(0,0,0,0.12);
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    text-align: center;
    display: block;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 2.5rem;
    justify-content: center;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.about-text {
    flex: 1 1 0;
    min-width: 200px;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1rem;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.12em;
    margin: 1.2rem 0 1rem 0;
    text-shadow: 0 0 18px #fff, 0 0 32px #fff, 0 0 6px #fff;
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.77,0,0.175,1), transform 0.8s cubic-bezier(0.77,0,0.175,1), text-shadow 0.8s;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    display: inline-block;
}

.about-text h2.visible {
    opacity: 1;
    transform: translateX(0);
    text-shadow: 0 0 24px #fff, 0 0 48px #fff, 0 0 10px #fff;
}

.about-text p {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    opacity: 0.9;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.about-image {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    max-width: 520px;
    position: relative;
}

.about-image img {
    max-width: 520px;
    width: 100%;
    height: auto;
    border-radius: 10px !important;
    box-shadow: 0 0 48px 16px #ffffff2e, 0 8px 32px rgba(0,0,0,0.30);
    border: none !important;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: none;
}

.about-image .image-placeholder {
    width: 220px;
    height: 220px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
    border: 3px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.about-image .image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 4s linear infinite;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.team::after {
    display: none;
}

.team::before {
    display: none;
}

.team h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.12em;
    margin: 1.2rem 0 2.2rem 0;
    text-shadow: 0 0 12px #fff, 0 2px 8px rgba(0,0,0,0.12);
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    text-align: center;
    display: block;
}

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

.team-member {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #292929;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: gentleBreathing 8s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 220px;
    box-sizing: border-box;
}

.team-member:nth-child(1) { animation-delay: 0s; }
.team-member:nth-child(2) { animation-delay: 1s; }
.team-member:nth-child(3) { animation-delay: 2s; }
.team-member:nth-child(4) { animation-delay: 3s; }
.team-member:nth-child(5) { animation-delay: 4s; }
.team-member:nth-child(6) { animation-delay: 5s; }

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    border-color: rgba(234, 233, 233, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.team-member-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.team-member-link:hover {
    text-decoration: none;
    color: inherit;
}

.team-member-link .team-member {
    pointer-events: auto;
}

.member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: none;
    border: 3px solid #fff;
    box-shadow: 0 0 16px 4px rgba(255,255,255,0.5);
}
.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.member-image:hover {
    border: 3px solid #fff;
    box-shadow: 0 0 32px 8px rgba(255,255,255,0.7);
}

.team-member h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.team-member p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Music Section */
.music {
    padding: 100px 0;
    background: #000000;
    color: white;
    position: relative;
    overflow: hidden;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="musicNotes" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="25" text-anchor="middle" fill="white" opacity="0.1" font-size="20">♪</text><text x="10" y="40" text-anchor="middle" fill="white" opacity="0.1" font-size="15">♫</text><text x="40" y="15" text-anchor="middle" fill="white" opacity="0.1" font-size="12">♬</text></pattern></defs><rect width="100" height="100" fill="url(%23musicNotes)"/></svg>');
    pointer-events: none;
    animation: musicFloat 20s linear infinite;
}

@keyframes musicFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.music h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.music-player {
    display: flex;
    justify-content: center;
}

.player-placeholder {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border: 3px solid rgba(204, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: gentleBreathing 7s ease-in-out infinite;
}

.player-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.player-placeholder:hover::before {
    left: 100%;
}

.player-placeholder:hover {
    transform: scale(1.05);
    border-color: rgba(232, 232, 232, 0.6);
    box-shadow: 0 20px 40px rgba(232, 232, 232, 0.2);
}

.player-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #feca57;
    animation: playPulse 2s ease-in-out infinite;
}

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

.player-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.player-placeholder p {
    opacity: 0.8;
}

.music-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15));
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.track::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.track:hover::before {
    left: 100%;
}

.track:hover {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.25));
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.track-title {
    font-weight: 500;
}

.track-duration {
    opacity: 0.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000000;
    color: white;
}

.contact h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #fff;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(204, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(204, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(204, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section h3 {
    font-family: 'Alchemin', serif;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #990000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        white-space: normal;
        max-width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }
    .about-image .image-placeholder {
        width: 140px;
        height: 140px;
        font-size: 2.5rem;
    }

    .music-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }
}

/* Cinematic Background Effects */
.musical-note {
    position: fixed;
    color: rgba(255,255,255,0.35);
    font-size: 3.5rem;
    pointer-events: none;
    z-index: 10;
    animation: cinematicFloat 8s ease-in-out infinite, gentleBreathing 4s ease-in-out infinite;
    text-shadow: 0 0 18px rgba(255,255,255,0.5);
}

.musical-note:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.musical-note:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.musical-note:nth-child(3) { top: 60%; left: 5%; animation-delay: 2s; }
.musical-note:nth-child(4) { top: 80%; right: 10%; animation-delay: 3s; }
.musical-note:nth-child(5) { top: 30%; left: 80%; animation-delay: 4s; }
.musical-note:nth-child(6) { top: 70%; left: 85%; animation-delay: 5s; }
.musical-note:nth-child(7) { top: 40%; right: 5%; animation-delay: 6s; }
.musical-note:nth-child(8) { top: 90%; left: 20%; animation-delay: 7s; }
.musical-note:nth-child(9) { top: 15%; left: 60%; animation-delay: 8s; }

@keyframes cinematicFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-40px) rotate(0deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-20px) rotate(-5deg);
        opacity: 0.6;
    }
} 

.custom-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.2rem;
    justify-items: center;
    align-items: center;
}
/* Remove special nth-child grid placement for 4 and 5 */
@media (max-width: 900px) {
  .custom-team-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
  }
}
@media (max-width: 600px) {
  .custom-team-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
} 

.custom-team-grid .team-member:nth-child(4) {
    grid-column: 2;
}
.custom-team-grid .team-member:nth-child(5) {
    grid-column: 3;
} 

.custom-team-grid .team-member:hover .member-image {
    border: 3px solid #fff;
    box-shadow: 0 0 32px 8px rgba(255,255,255,0.7);
} 

/* Member Profile Page Styles */
.member-profile {
    padding: 120px 0 100px;
    background: #000000;
    color: white;
    min-height: 100vh;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-image {
    flex: 0 0 300px;
}

.profile-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 30px 10px rgba(255,255,255,0.3);
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.profile-info h2 {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.profile-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.profile-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-item i {
    color: #fff;
    font-size: 1.2rem;
    width: 20px;
}

@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image {
        flex: none;
    }
    
    .profile-image img {
        width: 250px;
        height: 250px;
    }
    
    .profile-info h1 {
        font-size: 2.5rem;
    }
} 