/* Reset and Base Styles with Smooth Scrolling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.7;
  color: #2d3748;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px;
}


/* ========== MOBILE HEADER REDESIGN ========== */
@media (max-width: 768px) {
    .main-header {
        position: relative;
        padding: 0.8rem 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        height: auto;
        min-height: 70px;
        flex-wrap: wrap;
    }

    .main-header.scrolled {
        padding: 0.8rem 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Compact logo on mobile */
    .logo {
        gap: 10px;
        order: 1;
        flex: 1;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }

    .logo h2 {
        font-size: 1.4rem;
        font-weight: 700;
    }

    /* Header social icons - hide on mobile */
    .header-social {
        display: none;
    }

    /* Navigation container */
    .main-nav {
        position: relative;
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }

    /* Hamburger Menu Button */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: absolute;
        right: 0;
        top: -50px;
    }

    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: #4a5568;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Navigation Menu */
    .main-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }

    /* Show menu when active */
    .main-nav.active ul {
        max-height: 500px;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .main-nav a:hover {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
    }

    .main-nav a::before {
        display: none;
    }

    /* Dropdown menu styles for mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        border-left: 3px solid #667eea;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding-left: 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 0.6rem 1rem;
        min-height: 60px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .menu-toggle {
        width: 25px;
        height: 18px;
        top: -45px;
    }
}

/* Ensure banner doesn't have extra margin on mobile */
@media (max-width: 768px) {
    .welcome-banner {
        margin-top: 0;
    }
}

/* Hide hamburger button on desktop */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    
    .main-nav ul {
        display: flex !important;
        position: static !important;
        max-height: none !important;
    }
}







/* Header Styles with Glass Morphism */
.main-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.2rem 3rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo h2 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.main-nav a:hover {
  color: #2d3748;
}

.main-nav a:hover::before {
  width: 100%;
}

/* About Section with Parallax Effect */
.about-section {
  padding: 160px 2rem 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-section::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 1000 1000" opacity="0.1"><polygon points="100,100 200,50 300,100" fill="white"/><circle cx="800" cy="200" r="50" fill="white"/><rect x="700" y="600" width="100" height="100" fill="white"/></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.artist-photo {
  position: relative;
  perspective: 1000px;
}

.artist-photo::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.artist-photo:hover::before {
  transform: rotate(5deg) scale(1.05);
}

.artist-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.artist-photo:hover img {
  transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.artist-bio h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 300;
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease;
}

.artist-bio p {
  font-size: 1.3rem;
  line-height: 1.8;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Hero Carousel - Fixed Face Positioning */
.hero-carousel {
  padding: 80px 0; /* Reduced padding */
  background: #0f172a;
  position: relative;
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.slides {
  position: relative;
  height: 600px; /* Reduced height to show more of the top */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* This is the key change - moves image up */
  filter: brightness(0.8);
  transition: filter 1.0s ease;
}

.slide.active img {
  filter: brightness(1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 3;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 30px;
}

.carousel-btn.next {
  right: 30px;
}

.indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.4s ease;
}

.indicator.active {
  border-color: transparent;
}

.indicator.active::before {
  left: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero-carousel {
    padding: 60px 0;
  }
  
  .slides {
    height: 400px; /* Even shorter on mobile */
  }
  
  .slide img {
    object-position: top; /* Adjust for mobile */
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .carousel-btn.prev {
    left: 15px;
  }
  
  .carousel-btn.next {
    right: 15px;
  }
  
  .indicators {
    bottom: 20px;
  }
}






/* Music Section with Gradient Cards */
.music-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  position: relative;
  overflow: hidden;
}

.music-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.music-section h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #2d3748;
  position: relative;
  z-index: 2;
}

.music-section > p {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  text-align: center;
  color: #4a5568;
  position: relative;
  z-index: 2;
}

.music-players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.music-players iframe {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: none;
}

.music-players iframe:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Gallery Section with Masonry Layout */
.gallery-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.gallery-section h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
  position: relative;
}

.gallery-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  filter: grayscale(0.3);
}

.gallery-grid img:hover {
  transform: scale(1.05) rotate(2deg);
  filter: grayscale(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.gallery-grid img:nth-child(3n) {
  grid-row: span 2;
}






/* Contact Section with Fixed Form */
.contact-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  position: relative;
}

.contact-section h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.contact-section label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.1rem;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.contact-section button {
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.contact-section button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}
















/* Enhanced Footer */
footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

footer p {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .artist-bio h1 {
    font-size: 3rem;
  }
  
  .slides {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-nav ul {
    gap: 1.5rem;
  }
  
  .about-section {
    padding: 120px 1rem 80px;
  }
  
  .artist-bio h1 {
    font-size: 2.5rem;
  }
  
  .slides {
    height: 400px;
  }
  
  .music-players {
    grid-template-columns: 1fr;
  }
  
  .events-timeline::before {
    left: 20px;
  }
  
  .events-section li {
    width: calc(100% - 60px);
    margin-left: 40px !important;
  }
  
  .events-section li::before {
    left: -30px !important;
  }
}

@media (max-width: 480px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .artist-bio h1 {
    font-size: 2rem;
  }
  
  .slides {
    height: 300px;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}





/* Welcome Banner */




@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Logo in Header */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Achievements Section */
.achievements-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.achievements-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #2d3748;
}

.achievements-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.achievement-card:hover::before {
  left: 100%;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1.5rem;
}

.achievement-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.achievement-card p {
  color: #4a5568;
  font-size: 1.1rem;
}

/* Social Media Links in Footer */
footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
  .welcome-banner {
    margin-top: 120px;
  }
  
  
  
  .logo {
    gap: 10px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  
  .logo h2 {
    font-size: 1.5rem;
  }
  
  .achievements-section h2 {
    font-size: 2.5rem;
  }
  
  .social-links {
    flex-wrap: wrap;
  }
}



/* Logo in Header */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2px;
}

.logo-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
  .logo-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 45px;
    height: 45px;
  }
  
  .logo h2 {
    font-size: 1.5rem;
  }
}





/* Enhanced Welcome Banner - Mobile Responsive */
.welcome-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 20px 0;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}

.welcome-banner:hover {
  background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.banner-text {
  white-space: nowrap;
  animation: scrollText 30s linear infinite;
  font-family: 'Nunito', sans-serif; /* Cute rounded font */
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.banner-subtext {
  white-space: nowrap;
  animation: scrollTextReverse 25s linear infinite;
  font-family: 'Nunito', sans-serif; /* Cute rounded font */
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.banner-cta {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 5px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  position: relative;
}

.banner-cta:hover {
  background: white;
  color: #ff6b6b;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Banner decoration */
.welcome-banner::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" opacity="0.1"><circle cx="20" cy="20" r="5" fill="white"/><circle cx="80" cy="40" r="3" fill="white"/><circle cx="60" cy="80" r="4" fill="white"/></svg>');
  animation: float 20s infinite linear;
}

/* Animations */
@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes scrollTextReverse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(360deg); }
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .welcome-banner {
    padding: 18px 0;
    margin-top: 90px;
  }
  
  .banner-text {
    font-size: 1.2rem;
    animation-duration: 25s;
    padding: 10px 0;
  }
  
  .banner-subtext {
    font-size: 1rem;
    animation-duration: 22s;
    padding: 8px 0;
  }
  
  .banner-cta {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .welcome-banner {
    padding: 15px 0;
    margin-top: 100px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .banner-content {
    gap: 12px;
  }
  
  .banner-text {
    font-size: 1.1rem;
    animation-duration: 20s;
    padding: 8px 0;
    white-space: normal;
    animation: none;
    text-align: center;
    line-height: 1.4;
  }
  
  .banner-subtext {
    font-size: 0.95rem;
    animation: none;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    padding: 6px 10px;
  }
  
  .banner-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 8px;
  }
  
  /* Change hover effect for touch devices */
  .welcome-banner:hover {
    transform: none;
  }
  
  .banner-cta:hover {
    transform: none;
  }
  
  /* Add active states for mobile */
  .welcome-banner:active {
    transform: scale(0.98);
  }
  
  .banner-cta:active {
    background: white;
    color: #ff6b6b;
    transform: scale(0.95);
  }
}

@media (max-width: 480px) {
  .welcome-banner {
    padding: 12px 0;
    margin-top: 110px;
    border-radius: 0;
  }
  
  .banner-content {
    gap: 10px;
    padding: 0 10px;
  }
  
  .banner-text {
    font-size: 1rem;
    font-weight: 700;
    padding: 6px 0;
    line-height: 1.3;
  }
  
  .banner-subtext {
    font-size: 0.9rem;
    padding: 5px 0;
    line-height: 1.3;
    opacity: 0.95;
  }
  
  .banner-cta {
    padding: 8px 18px;
    font-size: 0.85rem;
    margin-top: 10px;
    border-width: 1.5px;
  }
  
  /* Remove complex animations on very small screens */
  .welcome-banner::before {
    animation: none;
  }
}

@media (max-width: 360px) {
  .welcome-banner {
    padding: 10px 0;
    margin-top: 120px;
  }
  
  .banner-text {
    font-size: 0.95rem;
    padding: 5px 0;
  }
  
  .banner-subtext {
    font-size: 0.85rem;
    padding: 4px 0;
  }
  
  .banner-cta {
    padding: 7px 16px;
    font-size: 0.8rem;
  }
}

/* Orientation-specific adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .welcome-banner {
    padding: 10px 0;
    margin-top: 80px;
  }
  
  .banner-content {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .banner-text,
  .banner-subtext {
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
    flex: 0 0 auto;
  }
  
  .banner-subtext {
    animation: scrollTextReverse 12s linear infinite;
  }
  
  .banner-cta {
    margin-top: 0;
  }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .welcome-banner {
    border-bottom-width: 2px;
  }
  
  .banner-cta {
    border-width: 2px;
  }
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
  .welcome-banner::before,
  .banner-text,
  .banner-subtext {
    animation: none !important;
  }
  
  .welcome-banner:hover {
    transform: none;
  }
  
  .banner-cta:hover {
    transform: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .welcome-banner {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  }
}


/* Updated Music Section with Platforms */
.music-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  position: relative;
  overflow: hidden;
}

.music-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

.music-section h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #2d3748;
  position: relative;
  z-index: 2;
}

.music-section > p {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  text-align: center;
  color: #4a5568;
  position: relative;
  z-index: 2;
}

.music-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.platform-card {
  background: rgba(90, 65, 65, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.platform-header i {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: white;
}

.platform-header i.fa-spotify {
  background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
}

.platform-header i.fa-music {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.platform-header i.fa-apple {
  background: linear-gradient(135deg, #A2AAAD 0%, #000000 100%);
}

.platform-header h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin: 0;
}

.platform-player {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.platform-player:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.platform-player iframe {
  border: none;
  display: block;
}

/* Music Videos Section */
.music-videos-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
}

.music-videos-section h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.music-videos-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.music-videos-section > p {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0.9;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: white;
}

.video-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .music-platforms {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .videos-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .music-section h2,
  .music-videos-section h2 {
    font-size: 3rem;
  }
  
  .music-section > p,
  .music-videos-section > p {
    font-size: 1.1rem;
  }
  
  .music-platforms {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .platform-card {
    padding: 1.5rem;
  }
  
  .platform-header {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .platform-header i {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
  
  .platform-header h3 {
    font-size: 1.3rem;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .video-info {
    padding: 1rem;
  }
  
  .video-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .music-section,
  .music-videos-section {
    padding: 80px 1rem;
  }
  
  .music-section h2,
  .music-videos-section h2 {
    font-size: 2.5rem;
  }
  
  .platform-card {
    padding: 1rem;
  }
  
  .platform-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .platform-header h3 {
    font-size: 1.2rem;
  }
  
  .videos-grid {
    gap: 1rem;
  }
}

/* Animation for platform cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.platform-card {
  animation: fadeInUp 0.6s ease forwards;
}

.platform-card:nth-child(1) { animation-delay: 0.1s; }
.platform-card:nth-child(2) { animation-delay: 0.2s; }
.platform-card:nth-child(3) { animation-delay: 0.3s; }

.video-card {
  animation: fadeInUp 0.6s ease forwards;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }







/* Enhanced Header with Social Icons and Dropdown */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.2rem 3rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Social Media Icons in Header */
.header-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 2rem;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: #4a5568;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-social a:nth-child(1):hover { /* Facebook */
  background: #1877F2;
  color: white;
}

.header-social a:nth-child(2):hover { /* Instagram */
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.header-social a:nth-child(3):hover { /* YouTube */
  background: #FF0000;
  color: white;
}

.header-social a:nth-child(4):hover { /* Spotify */
  background: #1DB954;
  color: white;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #4a5568;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding-left: 25px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .header-social {
    gap: 1rem;
    margin: 0 1.5rem;
  }
  
  .header-social a {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  
  
  
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    display: none;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a {
    padding: 8px 15px;
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .header-social {
    gap: 1.5rem;
  }
  
  .header-social a {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}




/* Booking Information Section */
.booking-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}


.booking-section::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" opacity="0.05"><circle cx="20" cy="20" r="8" fill="white"/><circle cx="80" cy="40" r="5" fill="white"/><circle cx="60" cy="80" r="6" fill="white"/></svg>');
  animation: float 20s infinite linear;
}

.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-header {
  text-align: center;
  margin-bottom: 4rem;
}

.booking-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.booking-header p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.info-card ul, .info-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.info-card ol li::before {
  content: counter(li);
  counter-increment: li;
}

.info-card ol {
  counter-reset: li;
}

/* Booking Form Styles */
.booking-form-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 2rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #6b7280;
  font-size: 1.1rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Booking Footer */
.booking-footer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-footer h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.contact-item i {
  color: #ffd700;
  font-size: 1.3rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .booking-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .booking-info {
    order: 2;
  }
  
  .booking-form-section {
    order: 1;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding: 80px 1rem;
  }
  
  .booking-header h2 {
    font-size: 2.5rem;
  }
  
  .booking-header p {
    font-size: 1.1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .booking-form-section {
    padding: 2rem;
  }
  
  .contact-items {
    flex-direction: column;
    gap: 1rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .booking-header h2 {
    font-size: 2rem;
  }
  
  .booking-form-section {
    padding: 1.5rem;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
  }
  
  .submit-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}


/* Emergency banner visibility fix */
.welcome-banner * {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Force banner text to be visible on mobile */
@media (max-width: 768px) {
    .banner-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }
    
    .banner-text,
    .banner-subtext {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        font-size: 2rem !important;
        color: white !important;
        text-shadow: 1px 1px 2px black !important;
    }
}


/* Compact Welcome Banner */
.welcome-banner {
    position: relative;
    height: 40vh; /* Reduced from 60vh */
    min-height: 300px; /* Reduced from 400px */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    overflow: hidden;
    padding: 20px 15px; /* Reduced padding */
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 500px; /* More compact */
    width: 100%;
    padding: 15px; /* Reduced padding */
}

.banner-text {
    font-size: 2rem; /* Reduced from 2.5rem */
    font-weight: 700;
    margin-bottom: 0.5rem; /* Reduced spacing */
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
    font-family: 'Nunito', 'Arial Rounded MT Bold', 'Arial', sans-serif;
}

.banner-subtext {
    font-size: 1rem; /* Reduced from 1.2rem */
    margin-bottom: 1.5rem; /* Reduced spacing */
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    line-height: 1.3; /* Tighter line height */
    font-weight: 300;
}

/* Adjust decorative elements for smaller banner */
.banner-decoration {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
    font-size: 2rem !important; /* Smaller decorations */
}

.deco-1 {
    top: 15%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.deco-2 {
    bottom: 20%;
    right: 8%;
    animation: float 8s ease-in-out infinite;
}

.deco-3 {
    top: 25%;
    right: 10%;
    animation: float 7s ease-in-out infinite;
}

/* Smaller music notes */
.note {
    position: absolute;
    font-size: 1.2rem; /* Smaller notes */
    opacity: 0.3;
    animation: noteFloat 12s linear infinite; /* Faster animation */
}


platform-card h3 {
    color: #f3c808;
  }


/* CTA Button - Smaller */
.cta-button {
    display: inline-block;
    padding: 10px 25px; /* Smaller button */
    background: rgba(255,255,255,0.9);
    color: #ff6b8b;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem; /* Smaller font */
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

/* Mobile Responsive - Even more compact */
@media (max-width: 768px) {
    .welcome-banner {
        height: 35vh; /* Smaller on mobile */
        min-height: 250px;
        padding: 15px 10px;
        border-radius: 0 0 15px 15px;
    }
    
    .banner-content {
        max-width: 90%;
        padding: 10px;
    }
    
    .banner-text {
        font-size: 1.6rem !important;
        margin-bottom: 0.3rem;
        line-height: 1.1;
    }
    
    .banner-subtext {
        font-size: 0.9rem !important;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .cta-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    /* Hide some decorations on mobile */
    .deco-2, .deco-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .welcome-banner {
        height: 30vh;
        min-height: 200px;
        padding: 10px 8px;
    }
    
    .banner-text {
        font-size: 1.4rem !important;
        margin-bottom: 0.2rem;
    }
    
    .banner-subtext {
        font-size: 0.8rem !important;
        margin-bottom: 0.8rem;
    }
    
    .cta-button {
        padding: 6px 15px;
        font-size: 0.7rem;
    }
}

/* Faster animations for compact banner */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(3deg); } /* Smaller movement */
}

@keyframes noteFloat {
    0% { 
        transform: translateY(40vh) rotate(0deg); /* Shorter distance */
        opacity: 0;
    }
    10% { 
        opacity: 0.4;
    }
    90% { 
        opacity: 0.4;
    }
    100% { 
        transform: translateY(-50px) rotate(360deg); /* Less upward movement */
        opacity: 0;
    }
}


/* Adjust header for mobile */
@media (max-width: 768px) {
    

    .logo-icon {
        width: 35px;
        height: 35px; /* smaller logo */
       align-items: start; 
       align-content: start;
    }

    .logo h2 {
        font-size: 1rem; /* smaller text */
    }


    .artist-bio  p {
text-align: justify;

    }

    .header-social {
        display: none !important; /* hide icons completely */
    }

    .menu-toggle {
        display: flex;
        transform: scale(0.9); /* slightly smaller hamburger */
    }
}


/* ===== Mobile layout ===== */
@media (max-width: 768px) {
   
.main-header {
       justify-content: flex-start; /* push everything to the left */
        padding: 0.3rem 0.8rem; /* smaller height */
    }
    .logo {
        flex-direction: row; /* keep image and text side by side */
        align-items: left;
        justify-content: flex-start;
    }

    

    .logo h2 {
        font-size: 1rem;
        margin: 0;
        color: var(--primary-color); /* optional for your theme */
    }



platform-card h3 {
    color: #f1f5f9;
  }

}



/* Further reduce for very small screens */
@media (max-width: 480px) {
    .main-header {
        padding: 0.2rem 0.6rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .logo h2 {
        font-size: 0.9rem;
    }
}


/* === About Section === */
.about-section {
  background: linear-gradient(to bottom right, #fff, #fdf7eb);
  padding: 80px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
}

/* Artist Photo */
.artist-photo {
  flex: 1 1 350px;
  text-align: center;
}

.artist-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.artist-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Biography Text */
.artist-bio {
  flex: 1 1 500px;
  color: #333;
  animation: fadeInUp 1s ease-in-out;
}

.artist-bio h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  position: relative;
}

.artist-bio h2 span {
  color: #c19a28; /* gold accent */
}

.artist-bio p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

/* Learn More Button */
.btn-learn-more {
  display: inline-block;
  background: linear-gradient(135deg, #c19a28, #f1c547);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(193, 154, 40, 0.4);
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: linear-gradient(135deg, #f1c547, #c19a28);
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }


  .platform-card h3 {
    color: #f1f5f9;
  }
  .artist-bio {
    text-align: center;
  }

  .artist-bio h2 {
    font-size: 2rem;
  }

  .artist-bio p {
    font-size: 1rem;
  }
}





.events-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.events-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

/* Container for all event cards */
.events-container {
  display: flex;
  flex-wrap: wrap; /* allow cards to wrap */
  justify-content: center;
  gap: 30px; /* space between cards */
}

/* Individual event card */
.event-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.event-image {
  width: 100%;
  height: auto;
  display: block;
}

.event-list {
  list-style-type: none;
  padding: 15px;
  margin: 0;
}

.event-list li {
  font-size: 1.1em;
  color: #555;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .events-container {
    flex-direction: column;
    align-items: center;
  }

  .event-card {
    max-width: 90%;
    margin-bottom: 20px;
  }
}
