/* Reset and base styles */
 /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #ffffff;
      overflow-x: hidden; /* prevent side scroll */
    }

    section {
      width: 100%;
      padding: 40px 20px;
    }

/* Layout components */
.main-container {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
}

.section-wrapper {
    width: 100%;
}

.content-container {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
/* Base styles */
.header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.content-container {
    width: 100%;
    max-width: auto;
   margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.logo {
    height: 65px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}
.nav-menu .nav-item {
    position: relative;
    color: inherit; /* Keeps your current text color */
    text-decoration: none; /* Remove default underline */
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-menu .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ff4d6d; /* Change to your preferred color */
    transition: width 0.3s ease;
}

.nav-menu .nav-item:hover {
    color: #ff4d6d; /* Optional: Change text color on hover */
}

.nav-menu .nav-item:hover::after {
    width: 100%;
}
.nav-menu .nav-item {
    position: relative;
    color: inherit; /* Keeps your current text color */
    text-decoration: none; /* Remove default underline */
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-menu .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ff4d6d; /* Change to your preferred color */
    transition: width 0.3s ease;
}

.nav-menu .nav-item:hover {
    color: #ff4d6d; /* Optional: Change text color on hover */
}

.nav-menu .nav-item:hover::after {
    width: 100%;
}

.nav-item {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    height: 20px;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        color: #0f0f0f;
        background: #000000c2;
        border-top: 1px solid #eee;
        padding: 10px 0;
    }

    .nav-menu.show {
        display: flex;
    }

    .contact-info {
        display: none;
    }

    .hamburger {
        display: block;
    }
}


/* Hero Section */
.hero-section {
    background-image: url('../images/img_img.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-container {
  max-width: auto; /* default size for big screens */
  width: 100%;
  margin: 0 auto;
}

.hero-content {
  text-align: center; /* center align text */
  color: #fff;
}

.hero-title {
  font-size: 48px; /* default size */
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  margin: 20px 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* wrap buttons for small screens */
}

.btn-primary {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  background: linear-gradient(124deg, #ffd800 0%, #ff9400 100%);;
  color: #fff;
  border: none;
  cursor: pointer;
}

.video-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #fff;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}

.video-button .play-icon {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-description {
    font-size: 16px;
  }
}


/* Decorative elements */
.decorative-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(255, 216, 0, 0.24);
    top: 20%;
    right: 10%;
    z-index: 1;
}

.decorative-border {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 4px solid transparent;
    border-image: linear-gradient(312deg, #ffd800 0%, #ff9400 50%, #ffd800 100%);
    border-image-slice: 1;
    border-radius: 50%;
    top: 15%;
    right: 5%;
    z-index: 1;
}

/* Scrolling text */
.scrolling-text {
    background: linear-gradient(90deg, #ff9400 0%, #ffd800 100%);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.scroll-item {
    display: inline-block;
    font-size: 12px;
    font-family: Inter;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    color: #0f0f0f;
    margin-right: 40px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Explore Section */
/* .explore-section {
            padding: 80px 16px;
            text-align: center;
        } */

/* .explore-title {
            font-size: 48px;
            font-family: Montserrat;
            font-weight: 700;
            background: linear-gradient(90deg, #ffd800 0%, #ff9400 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 60px;
        } */

.explore-content {
    text-align: center;
    padding: 20px;
}

.explore-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight {
    color: #ff5733;
    font-weight: bold;
}

.outline {
    color: #333;
    margin-left: 5px;
}

.explore-content {
    text-align: center;
    padding: 20px;
}

.explore-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight {
    color: #ffd800;
    font-weight: bold;
}

.outline {
    color: #333;
    margin-left: 5px;
}

 /* .genre-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    cursor: pointer;
} */

.genre-card:hover {
    transform: translateY(-5px);
    background-color: #ff9500af; 
    color: #fff;
}

/* .genre-card:hover .genre-title,
.genre-card:hover .genre-description {
    color: #fff;
}

.genre-card:hover .genre-icon {
    filter: brightness(0) invert(1); 
}  */

.genre-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: filter 0.3s;
}

.genre-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
    transition: color 0.3s;
}

.genre-description {
    font-size: 0.9rem;
    color: #777;
    transition: color 0.3s;
}

.swiper {
    padding-bottom: 40px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
}

/* Remove fixed width on mobile */
@media (max-width: 768px) {
    .explore-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 10px;
    }
    .genreSwiper {
        width: 100% !important;
    }
    .swiper-slide {
        width: auto !important; /* Let swiper handle sizing */
    }
    .about-content {
    flex: 1 1 0px;
}
}



/* About Section */
.about-section {
    padding: 0px 20px;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: auto;
    margin: auto;
    flex-wrap: wrap;
    padding: 80px 10px;

}

/* Image Frame */
.about-image-wrapper {
    position: relative;
    flex: 1 1 400px;
}

.about-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    border-radius: 15px;
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 15px;
    display: block;
    object-fit: cover;
}

/* Text */
.about-content {
    flex: 1 1 400px;
}

.about-content h2 {
    font-size: 61px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-title-highlight {
    color: #ff9900;
}

.about-title-outline {
    -webkit-text-stroke: 1px #ccc;
    color: transparent;
    font-family: 'Rubik Doodle Shadow', 'cursive';
}

.about-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Illustration */
.about-illustration {
    flex: 0 0 150px;
    text-align: center;
}

.about-illustration img {
    max-width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-illustration {
        order: 1;
    }

    .about-content {
        order: 1;
    }

    .about-image-wrapper {
        position: relative;
        flex: 1 1 310px;
    }
    .about-content {
    flex: 1 1 1px;
}
.about-illustration img {
    max-width: 75%;
}
}

/* Courses Section */
.courses-section {
    padding: 60px 20px;
    background-color: #fff;
    position: relative;
    text-align: center;
}

/* Background big text */
.courses-section::before {
    /* content: "Courses"; */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 150px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
}

.courses-title-outline {
    -webkit-text-stroke: 1px #ccc;
    color: transparent;
    font-size: 61px;
    font-family: 'Rubik Doodle Shadow', 'cursive';
}

.courses-title-highlight {
    color: #ff9900;
    font-size: 61px;
    font-weight: bold;
    /* font-family: 'Rubik Doodle Shadow', 'cursive'; */
}

.courses-subtext {
    color: #777;
    font-size: 16px;
    max-width: 700px;
    margin: 10px auto 40px;
}

/* Grid Layout */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Card */
.course-card {
    background: #fff;
    border: 1px solid #ccc;    /* thin outline */
    border-radius: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: #ffb700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Image */
.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 15px;
    margin: -30px 20px 26px 25px;

}

/* Title */
.course-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

/* Description */
.course-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Button */
.course-card button {
    background: linear-gradient(to right, #ffcc00, #ff9900);
    border: none;
    padding: 10px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;   /* full width like screenshot */
    transition: all 0.3s ease;
}

.course-card button:hover {
    background: linear-gradient(to right, #ff9900, #ffcc00);
    color: #fff;
}

/* ✅ Responsive Fix */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: 1fr 1fr; /* 2 cards per row on tablets */
    }
}
@media (max-width: 576px) {
    .courses-grid {
        grid-template-columns: 1fr; /* 1 card per row on mobile */
    }
    .course-card img {
        height: 150px; /* smaller image for phones */
    }
}

.courses-section {
    position: relative;
    padding: 60px 20px;
    background: #fff;
    overflow: hidden;
}

/* Large faint "beats" text in background */
.courses-section::before {
      content: "beats";
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 352px;
    font-weight: 800;
    color: rgb(5 2 2 / 8%);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.courses-section1 {
    position: relative;
    padding: 60px 20px;
    background: #fff;
    overflow: hidden;
}

/* Large faint "beats" text in background */
.courses-section1::before {
      content: "Schools";
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 250px;
    font-weight: 800;
    color: rgb(5 2 2 / 8%);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}
/* Ensure cards appear above background text */
.courses-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 16px;
    text-align: left;
}

.gallery-title {
    font-size: 72px;
    font-family: 'Montserrat Alternates';
    font-weight: 700;
    background: linear-gradient(90deg, #ffd800 0%, #ff9400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Festival Section */
.festival-section {
    background-image: url('../assets/images/img_rectangle_18053.png');
    background-size: cover;
    background-position: center;
    padding: 0px 0px;
    text-align: left;
    color: white;
}

.festival-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.festival-title {
    font-size: 48px;
    font-family: Montserrat;
    font-weight: 400;
    color: #ffd800;
}

.festival-subtitle {
    font-size: 72px;
    font-family: Montserrat;
    font-weight: 400;
    color: #ffffff;
}

.festival-date {
    font-size: 48px;
    font-family: Montserrat;
    font-weight: 400;
    color: #ffffff;
}

.festival-date .highlight {
    color: #ffd800;
}

/* Social Section */
.social-section {
    padding: 100px 16px;
    text-align: center;
}

.social-title {
    font-size: 48px;
    font-family: 'Rubik Doodle Shadow';
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.social-subtitle {
    font-size: 48px;
    font-family: Montserrat;
    font-weight: 700;
    background: linear-gradient(90deg, #ffd800 0%, #ff9400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-post {
    text-align: left;
}

.post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
}

.post-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    width: 24px;
    height: 24px;
}

.stat-count {
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 700;
    color: #4a4a4a;
}

.post-title {
    font-size: 16px;
    font-family: Raleway;
    font-weight: 400;
    color: #585858;
    margin-bottom: 6px;
}

.post-tags {
    font-size: 16px;
    font-family: Raleway;
    font-weight: 400;
    color: rgba(88, 88, 88, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 80px 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form-container {
    background: linear-gradient(134deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
    border: 1px solid transparent;
    border-image: linear-gradient(129deg, #4a4a4a 0%, #d9d9d9 50%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
    border-radius: 32px;
    padding: 54px 40px;
}

.form-title {
    font-size: 32px;
    font-family: Vazirmatn;
    font-weight: 700;
    background: linear-gradient(90deg, #ffd800 0%, #ff9400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-size: 20px;
    font-family: Vazirmatn;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 12px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 3px solid #d9d9d9;
    border-radius: 6px;
    font-size: 17px;
    font-family: Vazirmatn;
    font-weight: 400;
    color: #4a4a4a;
}

.form-input::placeholder {
    color: rgba(74, 74, 74, 0.37);
}

.form-submit {
    width: 100%;
    padding: 12px 34px;
    background: linear-gradient(90deg, rgba(255, 216, 0, 0.67) 0%, rgba(255, 148, 0, 0.67) 100%);
    border: none;
    border-radius: 6px;
    font-size: 20px;
    font-family: Vazirmatn;
    font-weight: 700;
    color: #4a4a4a;
    cursor: pointer;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.form-submit:hover {
    transform: scale(1.02);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 24px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #4a4a4a;
}

.divider-text {
    font-size: 18px;
    font-family: Vazirmatn;
    font-weight: 400;
    color: #4a4a4a;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-btn {
    padding: 16px;
    border: 3px solid #cccccc;
    border-radius: 34px;
    background: transparent;
    font-size: 18px;
    font-family: Vazirmatn;
    font-weight: 400;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #ffd800;
    color: #ffd800;
}

/* Footer */
/* Footer Styles */
.footer {
    position: relative;
    background: #fff;
    padding: 100px 10px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 2;
    position: relative;
}

.footer-title {
    color: #fbbd08;
    font-size: 30px;
    margin-bottom: 10px;
}

.footer-contact,
.footer-address {
    color: #555;
    max-width: 250px;
}

.footer-image img {
    max-width: 500px;
    height: auto;
}

.footer-bottom {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-left {
    font-size: 0.85rem;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-left a {
    color: #333;
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    background: #fbbd08;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 18px;
    height: 18px;
}

.footer-slogan {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    /* font-weight: bold; */
    color: rgb(251 189 8 / 43%);
    white-space: nowrap;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-image img {
        max-width: 80%;
    }

    .footer-slogan {
        font-size: 30px;
        font-family: 'Rubik Doodle Shadow';
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
}


/* Typography */
.gradient-text {
    background: linear-gradient(90deg, #ffd800 0%, #ff9400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Interactive states */
.btn:hover {
    transform: scale(1.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive media queries */
@media (min-width: 640px) {
    .content-container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    /* .genre-cards {
        grid-template-columns: repeat(2, 1fr);
    } */

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-login {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .content-container {
        padding: 0 32px;
    }

    .header-content {
        padding: 1px 2px;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-description {
        font-size: 18px;
    }

    .about-section {
        flex-direction: row;
        align-items: center;
    }

    .about-image-container {
        width: 50%;
    }

    .about-content {
        width: 135%;
        padding-left: 1px;
    }

    .about-image {
        height: 400px;
    }

    .contact-section {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-form-container {
        width: 60%;
    }
}

@media (min-width: 1024px) {
    .content-container {
        padding: 0 8px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-description {
        font-size: 18px;
    }

    /* .explore-title {
                font-size: 68px;
            } */

    /* .genre-cards {
        grid-template-columns: repeat(5, 1fr);
    } */

    .courses-title {
        font-size: 123px;
    }

    .courses-description {
        font-size: 20px;
    }

    .courses-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-title {
        font-size: 123px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .festival-title {
        font-size: 84px;
    }

    .festival-subtitle {
        font-size: 124px;
    }

    .festival-date {
        font-size: 77px;
    }

    .social-title {
        font-size: 80px;
    }

    .social-subtitle {
        font-size: 80px;
    }

    .form-title {
        font-size: 40px;
    }

    .footer-slogan {
                font-size: 100px;
        font-family: 'Rubik Doodle Shadow';
    }
}

@media (min-width: 1280px) {
    .decorative-circle {
        width: 600px;
        height: 600px;
    }

    .decorative-border {
        width: 800px;
        height: 800px;
    }
}

@media (min-width: 1536px) {
    .decorative-circle {
        width: 796px;
        height: 706px;
    }

    .decorative-border {
        width: 1114px;
        height: 1054px;
    }
}

.header {
    background: transparent;
    /* Makes background fully transparent */
    position: absolute;
    /* So it sits over your banner */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    /* Keeps it above the banner */
}

.header .nav-item,
.header .phone-text {
    color: #fff;
    /* Ensures text stays readable on banner */
}

.hamburger {
    background: none;
    border: none;
    color: #fff;
    /* Icon stays visible */
    font-size: 24px;
    cursor: pointer;
}

/* .genre-cards {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
}

.genre-card {
    flex: 0 0 auto;
    width: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.genre-card:hover {
    transform: translateY(-5px);
} */

.nav-arrows {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.arrow-btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 8px 14px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
}


.explore-section {
    background: linear-gradient(to bottom, #fff, #fff6e9);
    padding: 60px 0;
}

.explore-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.explore-illustration img {
    width: 350px;
    height: auto;
}

.explore-content {
    max-width: 700px;
}

.explore-title {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 30px;
     /* font-family: 'Rubik Doodle Shadow', 'cursive'; */
}

.explore-title .highlight {
    background: linear-gradient(to right, #FFD900, #FF9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* For Firefox */
    color: transparent;
}


.explore-title .outline {
    font-family: 'Rubik Doodle Shadow', 'cursive';
    /* Or a hand-drawn style font */
    color: transparent;
    -webkit-text-stroke: 1px #ccc;
}

/* .genre-cards {
    display: ruby-text;
    gap: 20px;
    flex-wrap: wrap;
}

.genre-card {
    background: #fff8ee;
    border: 1px solid #fff8ee;
    border-radius: 12px;
    padding: 20px;
    width: 150px;
    text-align: center;
    transition: 0.3s;
} */
/* Core Swiper Slide and Card */
.swiper-slide {
    display: flex;
    align-items: stretch;
}

.genre-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    text-align: center;
    background-color: #fff8ee;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: 250px; /* fixed min height to keep cards equal */
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.genre-card:hover {
    transform: translateY(-5px);
}

.genre-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.genre-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.genre-description {
    font-size: 0.95rem;
    flex-grow: 1;
    overflow: hidden;
}

/* Responsive layout for mobile and desktop */
@media (min-width: 768px) {
    .swiper-wrapper {
        display: flex;
    }

    .swiper-slide {
        flex: 0 0 25%; /* 4 cards per view on desktop */
        max-width: 25%;
        padding: 10px;
    }
}

@media (max-width: 767px) {
    .swiper-slide {
        flex: 0 0 80%; /* 1 card per view on mobile */
        max-width: 80%;
        padding: 10px;
    }

    .genre-card {
        min-height: 280px;
    }
}

.genre-icon {
    width: 40px;
    margin-bottom: 15px;
}

.nav-arrows {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.arrow-btn {
    border: none;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}



/* --- Layout --- */
.explore-section {
    padding: 140px 5px;
}

.explore-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.explore-illustration {
    flex: 1 1 300px;
    text-align: center;
}

.explore-illustration img {
    max-width: 100%;
    height: auto;
}

.explore-content {
    flex: 2 1 500px;
}


/* --- Arrows --- */
.nav-arrows {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.arrow-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 14px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.arrow-btn:hover {
    background: #ff9800;
}

html {
    scroll-behavior: smooth;
}

.responsive-image {
    width: 610px;
    height: auto;
    border-radius: 10px;
}

/* Mobile view: width = 375px */
@media (max-width: 600px) {
    .responsive-image {
        width: 339px;
    }
    .courses-section::before {
    content: "beats";
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 116px;
    font-weight: 800;
    color: rgb(5 2 2 / 8%);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

    .courses-section1::before {
    content: "Schools";
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 74px;
    font-weight: 800;
    color: rgb(5 2 2 / 8%);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}
}

.explore-title .highlight {
    font-family: 'Montserrat Alternates', sans-serif;
}

.explore-title .outline {
    font-family: 'Rubik Doodle Shadow', cursive;
}
