/* Global Styles */
:root {
    --primary-color: #ff4d4d;
    --dark-bg: white;
    --darker-bg: white;
    --light-text: black;
    --gray-text: black;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    color: var(--light-text);
    margin: 0 auto;
    padding: 0 15px;
}

 .nav-links a {
    text-decoration: none;
    color: var(--light-text);
    transition: var(--transition);
}


a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
}
.hero-content {
    display: flex;
    gap: 4;
    justify-content: space-around;
  }
  .hero-img {
    position: relative;
    top: -30px;
    z-index: 100;
    left: 80px;
  }
  .hero-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px 30px;
    position: relative;
  }
  .design-btn {
    position: relative;
    z-index: 10;
    bottom: 20px;
    background-color: #ff5045;
    border-radius: 50px;
    padding: 10px 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design-btn button {
    background-color: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
  }
  .hero-main {
    opacity: 1;
    transform: translate(-20%, -50%);
    transform-style: preserve-3d;
    color: #ff5045;
    text-align: center;
    letter-spacing: -4px;
    font-family: Pacifico, sans-serif;
    font-size: 60px;
    line-height: 1.2em;
    position: absolute;
    top: 90px;
    left: 10%;
  }

  .hero-main2{
    opacity: 1;
    transform: translate(-20%, -50%);
    transform-style: preserve-3d;
    color: #ff5045;
    text-align: center;
    letter-spacing: -4px;
    font-family: Pacifico, sans-serif;
    font-size: 60px;
    line-height: 1.2em;
    position: absolute;
    top: 90px;
    right:-20px;

  }
  
  .background-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 1;
    pointer-events: none;
  }

  .background-lines .line {
    width: 1px;
    height: 100%;
    background-color: rgba(71, 71, 71, 0.3);
  }

section {
    padding: 60px 0;
}

/* Navigation */
.navbar {
    background-color: var(--darker-bg);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Added for absolute positioning of dropdown */
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    padding: 5px 10px;
    font-weight: 500;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
}

.language-btn {
    background: transparent;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--light-text);
    z-index: 1001; /* Ensure it's above the dropdown */
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--darker-bg);
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex; /* Show when active class is applied */
    }
    
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-right {
        display: none;
    }
}

/* Hero Section */
.hero {
    background-color: var(--darker-bg);
    
    position: relative;
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Home-Singer-04-30-2025_04_30_PM.png-baHMoWtgIRwsAOzf8KrnUpiqMLSnZ6.jpeg'); */
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.sec_back{
    background-color: var(--darker-bg);
}
.font_col{
    color: #ffffff;
}

.hero-content {
    max-width: 600px;
}

.artist-name {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Brush Script MT', cursive;
}

.artist-dates {
    font-size: 2rem;
    margin-bottom: 20px;
}

.artist-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-text);
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    right: 5%;
    display: flex;
    gap: 15px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about {
    background-color: var(--darker-bg);
    padding: 80px 0;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 30px;
    color: var(--gray-text);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    padding: 40px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Quote Section */
.quote {
    background-color: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

.quote blockquote {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
}

.quote-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-text);
}

/* Gallery Section */
.gallery {
    background-color: var(--darker-bg);
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Appears On Section */
.appears-on {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.appears-on h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.platform-item {
    text-align: center;
}

.platform-image {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}

.platform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-item h4 {
    margin-bottom: 15px;
}

.platform-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.platform-btn:hover {
    background-color: #ff3333;
    color: white;
}

/* Video Section */
.video-section {
    background-color: var(--darker-bg);
    padding: 60px 0;
}

.video-description {
    max-width: 800px;
    margin-bottom: 40px;
    color: var(--gray-text);
}

.video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
}

.video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    transition: var(--transition);
}

.play-btn:hover {
    background: var(--primary-color);
}

/* Additional Videos */
.additional-videos {
    background-color: var(--dark-bg);
    padding: 60px 0;
}

.video-thumbnail {
    max-width: 300px;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    border-radius: 8px;
}

.video-thumbnail p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--darker-bg);
    padding: 60px 0;
}

.newsletter-content {
    max-width: 600px;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
    color: var(--gray-text);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #ff3333;
}

/* Concert Image */
.concert-image {
    height: 400px;
    overflow: hidden;
}

.full-width-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Booking Section */
.booking {
    background-color: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

.booking h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.booking p {
    margin-bottom: 30px;
    color: var(--gray-text);
}

.booking-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.booking-btn:hover {
    background-color: #ff3333;
    color: white;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--gray-text);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 500px;
    }
    
    .artist-name {
        font-size: 3.5rem;
    }
    
    .gallery-grid,
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .artist-name {
        font-size: 3rem;
    }
    
    .about .container {
        grid-template-columns: 1fr;
    }
    
    .stats .container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        text-align: center;
    }
    
    .artist-name {
        font-size: 2.5rem;
    }
    
    .hero-controls {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        justify-content: center;
    }
    
    .control-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .booking h2 {
        font-size: 1.8rem;
    }
}


.stats-section {
    background-color: #ff4f42; /* Matches the red tone from the image */
    color: white;
    padding-top: 30px;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
  }

  .stats-item {
    text-align: center;
   
    padding: 0px 60px;
  }

  .stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
  }

  .stats-label {
    font-size: 1rem;
    margin-top: 10px;
    color: #fff;
  }

  .stats-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    height: 100%;
  }

  @media (max-width: 767px) {
    .stats-divider {
      display: none;
    }
  }

  
  .slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
   
  }

.slider-track {
    display: flex;
    width: 200%; /* Double width to enable seamless looping */
    animation: scroll 20s linear infinite;
}

.slide {
    width: 400px;
    height: 600px;
   
    background: rgba(255, 255, 255, 0.1);
   
    backdrop-filter: blur(5px);
   
   position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    z-index: 10;
    transition: transform 0.3s;
}
.slide1 {
    width: 100%;
    height: auto;
    
    background: rgba(255, 255, 255, 0.1);
   
    backdrop-filter: blur(5px);
   
   position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    z-index: 10;
    transition: transform 0.3s;
}

.slide2 {
    width: 100%;
    height: auto;
   
    background: rgba(255, 255, 255, 0.1);
   
    backdrop-filter: blur(5px);
    
   position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    z-index: 10;
    transition: transform 0.3s;
}
.slide:hover {
    transform: scale(.95);
    background: rgba(255, 255, 255, 0.15);
}

.quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.author {
    font-weight: bold;
    text-align: right;
    font-size: 16px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-40%); /* Move half the width to create loop */
    }
}

.section-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.appears-on-section {
    margin: 50px 0px;
    color: white;
    padding: 60px 0;
  }

  .appears-on-section h2 {
    font-weight: 600;
    margin-bottom: 30px;
  }

  .image-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    
    transition: transform 0.3s ease;
  }

  .image-grid img:hover {
    transform: scale(1.03);
  }

  .view-all-btn {
    background: transparent;
    border: 1px solid #ccc;
    color: rgb(15, 15, 15);
    border-radius: 35px;
    font-size: 20px;
    padding: 10px 25px;
    float: right;
    font-weight: 500;
  }

  .view-all-btn:hover {
    background-color: #333;
    color: #fff;
  }


  .appears-btn-light{
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 10;
  }

  .appears-btn{
   padding: 15px 30px;
   font-size: 20px;
   border-radius: 30px;
   background-color: #ff3333;
   color: #fff;
   font-weight: 500;
   position: relative;
   z-index: 10;
  }



  .music-section {
    
  }

  .music-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
  }

  .carousel-inner img {
    border-radius: 10px;
    width: 100%;
    height: 350px;
    object-fit: cover;
  }

  .carousel-item {
    padding: 0 10px;
  }

  .description {
    max-width: 700px;
    margin-left: 30px;
  }
 

  .slider-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 280px !important;
  }

  .slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(56, 55, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  @media (max-width: 768px) {
    .carousel-inner img {
      height: 200px;
    }

    .slider-buttons {
      margin-top: 1rem;
    }
  }

  .section-title {
    color: #ff3c3c;
     font-size: 20px;
     text-align: left;
   
  }

  .song-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20%;
  }

  .song-number {
    color: #aaa;
    font-size: 16px;
    min-width: 30px;
  }

  .song-title {
    font-size: 20px;
    color: #111111;
   

  }

  .view-all-btn {
    background-color: transparent;
    border: 1px solid #fff;
    color: #050505;
    padding: 10px 25px;
    border-radius: 30px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 20%;
  }

  .view-all-btn:hover {
    background-color: #fff;
    color: #1c2b36;
  }

  .rounded-img {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  .event-section {
    padding: 80px 0;
  }

  .event-title {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .event-meta {
    color: #ff3c3c;
    font-size: 25px;
    margin-bottom: 35px;
    margin-top: 35px;
  }

  .event-description {
    font-size: 25px;
    
    max-width: 800px;
  }

  .ticket-btn {
    background-color: rgba(41, 40, 40, 0.7);
    
    color: #050505;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    outline: none;
  }
  
  .ticket-btn:hover {
    background-color: #fff;
    color: #1c2b36;
  }
  

  .booking-section {
    background-color: transparent;
  
  }
  
  .inline-image img {
    height: 80px;
    width: auto;
    vertical-align: middle;
    margin: 0 10px;
    border-radius: 12px;
  }

  .btn-book {
    position: relative;
    background: rgba(94, 93, 93, 0.7);
    color: #080808;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
  }
  
  .btn-book::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0; /* Start from right */
    width: 0;
    height: 100%;
    background: #ff5f5f;
    z-index: 0;
    transition: width 0.8s ease;
  }
  
  .btn-book:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .btn-book span,
  .btn-book {
    position: relative;
    z-index: 10;
  }
  
  .btn-book:hover {
    color: #fff;
  }


  .footer-link {
    color: #0f0f0f;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
   
  }
  
  .footer-link:hover {
    color: #ff5f5f;
  }
  
  .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff3333;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .icon-circle:hover {
    background-color: #f8f2f2;
    color: #ff5f5f;
  }
  .hori{
    position: relative; 
    z-index: 10; 
    width: 100%; 
    margin-top:-90px; 
    margin-bottom:90px;
  }

  @media (max-width: 480px) {
    .section{
        padding: 0px;
    }
    .hero{
        flex-direction: column;
        padding: 0px 0 0px;
    }
    .appears-on-section{
      margin: 0px 0px;
      padding: 0px 0px;
    }
    .hero-main, .hero-main2 {
      font-size: 28px;
    }
    .hero-btn {
      padding: 40px 20px;
    }
    .design-btn {
      padding: 8px 12px;
    }
    .design-btn button {
      font-size: 14px;
    }
    .stats-number {
      font-size: 24px;
    }
    .stats-label {
      font-size: 14px;
    }
    .booking-section h1 {
      font-size: 24px;
    }
  }
  
  @media (max-width: 576px) {
    .section{
      padding: 0px;
  }
        .hero{
          flex-direction: column;
        }
      /* Adjust spacing */
      .new-adj{
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .new-adj h2, p{
        text-align: center;
      }
      
    .design-btn{
        bottom: -20px;
        width: 250px;
        margin: auto;
    }
    .sec_back .row{
        flex-direction: column-reverse;
    }
    .social-link{
        justify-content: center;
    }
    .hero-main, .hero-main2 {
      font-size: 32px;
      letter-spacing: -2px;
    }
    .hero-img img {
      width: 280px;
    }
    .design-btn button {
      font-size: 16px;
    }
    .sec_back h1 {
      font-size: 50px !important;
    }
    .sec_back p {
      font-size: 18px !important;
    }
    .footer .col-md-3, .footer .col-md-2 {
      margin-bottom: 30px;
    }
    .booking-section h1 {
      font-size: 28px;
    }
    .booking-section .inline-image img {
      width: 80px;
    }
    .event-section {
      padding: 20px;
    }
    .event-description {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .description{
        text-align: center;
    }
    .design-btn {
      bottom: -20px;
      width: 300px;
      margin: auto;
    }
    .hero{
      flex-direction: column;
      padding: 0px;
    }
  .slider-buttons{
    margin-top: 30px !important;
    }
    .song-item{
      margin-left: 5%;
    }
    .appears-on-section{
      margin: 0px 0px;
      padding: 0px 0px;
    }
    .hero-main, .hero-main2 {
      font-size: 40px;
       position: static;
    }
    .hero-img img {
      width: 350px;
    }
    .stats-section .stats-item {
      margin-bottom: 30px;
    }
    .stats-divider {
      display: none !important;
    }
    .appears-on-section h2 {
      font-size: 40px !important;
    }
    .music-section h2 {
      font-size: 45px !important;
    }
    .event-title {
      font-size: 40px;
    }
    .booking-section h1 {
      font-size: 32px;
    }
    .hero .col-md-3:first-child {
      order: 1; /* Moves left column to last */
    }
    .appears-on-section{
      margin: 0px 0px;
      padding: 0px 0px;
    }
    .hori{
      margin-top: -30px;
    }
    .hero .col-md-6 {
      order: 3; /* Moves middle column to first */
    }
    
    .hero .col-md-3:last-child {
      order: 2; /* Moves right column to middle */
    }
    
    /* Adjust spacing */
    .new-adj{
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .new-adj h2, p{
      text-align: center;
    }
  }
  
  /* Keep the larger breakpoints as they were */
  @media (max-width: 992px) {
    /* .hero-content {
      flex-direction: column;
      align-items: center;
    } */
    .hori{
      margin-top: -30px;
    }
    .appears-on-section{
      margin: 0px 0px;
      padding: 0px 0px;
    }
    .description{
      margin-top: 80px;
      margin-left: 20px;
    }
    .hero-main, .hero-main2 {
      /* position: static; */
      transform: none;
      text-align: center;
      margin-bottom: 20px;
    }
    .hero-btn {
      padding: 60px 30px;
    }
    .hero-img {
      left: 0;
      text-align: center;
    }
    .nav-links {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
    .sec_back .row > div {
      padding: 30px 40px !important;
    }
    .slider-buttons {
      margin-top: 10px !important;
    }
    .appears-btn-light{
      margin-top: 10px;;
    }
  }
  
  @media (max-width: 1200px) {
    .hero-main {
      font-size: 50px;
      left: 5%;
    }
    .hero-main2 {
      font-size: 50px;
      right: -10px;
    }
    .hero-img img {
      width: 400px;
    }
  }