 /* Reset and base styles */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   background-color: #1b0806;
   color: #ffffff;
   line-height: 1.6;
 }

 img {
   max-width: 100%;
   height: auto;
   display: block;
 }

 button {
   border: none;
   background: none;
   cursor: pointer;
   font-family: inherit;
 }

 /* Layout components */
 .main-container {
   width: 100%;
   min-height: 100vh;
   background-color: #1b0806;
 }

 .header {
   width: 100%;
   background: linear-gradient(180deg, #270c0533 0%, #2b0c0933 100%);
   /* box-shadow: 0px 4px 4px #888888ff; */
   padding: 16px;
   position: sticky;
   top: 0;
   z-index: 1000;
   backdrop-filter: blur(6px);
 }

 .header-content {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 16px;
 }

 .logo {
   width: 60px;
   height: auto;
 }

 .nav-menu {
   display: none;
   gap: 32px;
   align-items: center;
 }

 .nav-menu a {
   color: #ffffff;
   text-decoration: none;
   font-size: 14px;
   font-weight: 400;
   transition: color 0.3s ease;
 }

 .nav-menu a:hover {
   color: #f09928;
 }

 .nav-menu a.active {
   color: #f09928;
 }

 .register-btn {
   background-color: #f09928;
   color: #ffffff;
   padding: 8px 20px;
   border-radius: 4px;
   font-size: 14px;
   font-weight: 700;
   text-decoration: none;
   transition: background-color 0.3s ease;
 }

 .register-btn:hover {
   background-color: #e08820;
 }

 .hamburger {
   display: block;
   color: #ffffff;
   font-size: 24px;
 }

 /* Hero/Banner section - Fixed implementation */
 /* Hero Banner Section - Restructured for image prominence */
 .hero-section {
   width: 100%;
   background-color: #1b0806;
 }

 .hero-image-container {
   position: relative;
   width: 100%;
   height: 75vh;
   min-height: 500px;
   overflow: hidden;
   border-radius: 0 0 50px 50px;
 }

 .hero-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
 }

 .hero-image-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(180deg, rgba(27, 8, 6, 0.1) 0%, rgba(27, 8, 6, 0.7) 100%);
   display: flex;
   align-items: flex-end;
   justify-content: center;
   padding: 40px 16px;
 }

 .hero-image-text {
   text-align: center;
   max-width: 800px;
 }

 .hero-image-title {
   font-family: 'Monotype Corsiva', cursive;
   font-size: 28px;
   font-weight: 400;
   color: #ffffff;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
   margin-bottom: 8px;
 }

 .hero-image-subtitle {
   font-size: 14px;
   font-weight: 300;
   color: #ffffff;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
 }

 .hero-text-section {
   padding: 60px 16px;
   text-align: center;
   background-color: #1b0806;
 }

 .hero-main-title {
   font-family: 'Monotype Corsiva', cursive;
   font-size: 64px;
   font-weight: 400;
   line-height: 1.2;
   color: #ffffff;
   margin-bottom: 24px;
   max-width: 100%;
   margin-left: auto;
   margin-right: auto;
 }

 .hero-main-subtitle {
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-size: 24px;
   font-weight: 300;
   line-height: 1.5;
   color: #cccccc;
   margin-bottom: 40px;
   max-width: 80%px;
   margin-left: auto;
   margin-right: auto;
 }

 .decorative-frame {
   width: 100%;
   max-width: 350px;
   height: auto;
   margin: 0 auto;
   filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
 }

 /* Filter tabs */
 .filter-section {
   background-color: #1b0806;
   padding: 40px 16px;
 }

 .filter-tabs {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 16px;
   max-width: 1200px;
   margin: 0 auto;
   flex-wrap: wrap;
 }

 .filter-tab {
   padding: 12px 20px;
   font-size: 16px;
   font-weight: 400;
   color: #ffffff;
   background: transparent;
   border: 2px solid transparent;
   border-radius: 25px;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .filter-tab.active {
   color: #f09928;
   border-color: #f09928;
   background-color: rgba(240, 153, 40, 0.1);
 }

 .filter-tab:hover {
   color: #f09928;
   border-color: #f09928;
 }

 /* Gallery grid */
 .gallery-container {
   max-width: 1184px;
   margin: 0 auto;
   padding: 40px 16px;
   background-color: #1b0806;
 }

 .gallery-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 16px;
   margin-bottom: 100px;
 }

 .gallery-column {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

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

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

 .gallery-item img {
   width: 100%;
   height: auto;
   object-fit: cover;
 }

 /* Event galleries */
 .event-gallery {
   display: flex;
   flex-direction: row;
   gap: 16px;
   width: 100%;
   max-width: 1200px;
   margin-top: 38px;
   overflow-x: auto;
   -webkit-overflow-scrolling: touch;
 }

 .event-card {
   display: flex;
   flex-direction: column;
   gap: 16px;
   justify-content: flex-start;
   align-items: center;
   flex: 0 0 calc(50% - 8px);
   box-sizing: border-box;
   overflow: hidden;
   cursor: pointer;
   /* show pointer on hover */
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .event-image {
   width: 610px;
   height: 340px;
   transition: transform 0.3s ease;
 }

 .event-image:hover {
   transform: scale(1.15);
 }


 .event-info {
   display: flex;
   flex-direction: column;
   gap: 12px;
   justify-content: center;
   align-items: flex-start;
   width: 100%;
 }

 .event-title {
   font-size: 35px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   line-height: 35px;
   text-align: left;
   color: #ffffff;
   width: 100%;
 }

 .event-meta {
   font-size: 15px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 100 !important;
   font-style: italic;
   line-height: 22px;
   text-align: left;
   color: #ffffff;
   width: auto;
 }

 .featured {
   font-weight: 400;
   font-size: 14px;
   opacity: 0.6;
 }

 /* Divider line */
 .divider {
   width: 100%;
   max-width: 1200px;
   height: 1px;
   background-color: #f09928;
   align-self: center;
   margin: 20px 0 74px 0;
 }

 /* Performance grid */
 .performance-grid {
   display: flex;
   flex-direction: row;
   gap: 24px;
   width: 92%;
   overflow-x: auto;
   -webkit-overflow-scrolling: touch;
   margin-bottom: 74px;
 }

 .performance-card {
   display: flex;
   flex-direction: column;
   gap: 16px;
   justify-content: flex-start;
   align-items: center;
   width: 282px;
   flex-shrink: 0;
 }

 .performance-image {
   width: 100%;
   height: 198px;
   object-fit: cover;
 }

 .performance-info {
   display: flex;
   flex-direction: column;
   gap: 12px;
   justify-content: center;
   align-items: flex-start;
   width: 100%;
 }

 .performance-title {
   font-size: 24px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   line-height: 26px;
   text-align: left;
   color: #ffffff;
   width: 100%;
 }

 .performance-grid::-webkit-scrollbar {
   display: none;
 }

 .performance-grid {
   -ms-overflow-style: none;
   scrollbar-width: none;
 }

 /* Society section */
 .society-section {
   display: flex;
   flex-direction: column;
   gap: 90px;
   justify-content: flex-start;
   align-items: center;
   width: 100%;
   max-width: 1200px;
 }

 .society-title {
   font-size: 40px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   line-height: 36px;
   text-align: center;
   color: #f09928;
   width: auto;
 }

 .society-content {
   display: flex;
   flex-direction: column;
   gap: 40px;
   width: 100%;
 }

 .society-item {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   width: 100%;
   border-bottom: 1px solid #f099289e;
   padding-bottom: 40px;
 }

 .society-row {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: flex-start;
   width: 100%;
   gap: 24px;
 }

 .society-image {
   width: 100%;
   max-width: 282px;
   height: 190px;
   object-fit: cover;
 }

 .society-text-content {
   display: flex;
   flex-direction: column;
   gap: 8px;
   justify-content: flex-start;
   align-items: center;
   width: 100%;
 }

 .society-text-row {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   width: 100%;
   padding: 6px 0;
 }

 .society-item-title {
   font-size: 28px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 400;
   font-style: italic;
   line-height: 38px;
   text-align: left;
   color: #ffffff;
   width: 100%;
 }

 .society-description {
   font-size: 18px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 100;
   line-height: 30px;
   text-align: left;
   color: #ffffffe5;
   width: 100%;
 }

 .society-meta {
   font-size: 14px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 300;
   font-style: italic;
   line-height: 21px;
   text-align: left;
   color: #ffffff;
   width: auto;
   margin-top: 4px;
   margin-left: 14px;
 }

 .frame-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
 }

 /* academy  */
 /* Vision Mission Section */
 .vision-mission-section {
   width: 100%;
   background-color: #1b0806;
   padding: 80px 16px;
   margin-top: -40px;
   overflow-x: hidden;
 }

 .vision-mission-container {
   margin: 0 auto;
 }

 .vision-mission-content {
   display: flex;
   justify-content: center;
   align-items: flex-start;
   gap: 120px;
   flex-wrap: wrap;
 }

 .vision-card,
 .mission-card {
   flex: 1 1 400px;
   max-width: 600px;
   text-align: center;
 }

 .vision-title,
 .mission-title {
   font-size: 50px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   line-height: 1.1;
   color: #f09928;
   margin-bottom: 20px;
 }

 .vision-text,
 .mission-text {
   font-size: 30px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 500;
   line-height: 2;
   color: #ffffff;
 }

 .vision-card,
 .mission-card {
   opacity: 0;
   transition: transform 1s ease, opacity 1s ease;
 }

 .vision-card {
   transform: translateX(-500px);
 }

 .mission-card {
   transform: translateX(500px);
 }

 .vision-mission-content.active .vision-card,
 .vision-mission-content.active .mission-card {
   transform: translateX(0);
   opacity: 1;
 }

 /* Growing Section */
 .growing-title {
   font-size: 50px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   line-height: 1.1;
   text-align: center;
   color: #f09928;
   margin: 50px 0;
 }

 .vision-board-image {
   width: 100%;
   height: auto;
 }

 /* Why Students Section */
 .why-students-section {
   width: 100%;
   padding: 0 16px;
 }

 .why-students-container {
   width: 100%;
   max-width: 1210px;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   gap: 86px;
   align-items: center;
 }

 .section-title {
   font-size: 32px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   line-height: 1.1;
   text-align: center;
   color: #f09928;
 }

 .features-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 40px;
   width: 100%;
 }

 .feature-item {
   display: flex;
   gap: 8px;
   align-items: flex-start;
   transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
   will-change: transform;
 }

 .feature-item:hover {
   transform: translateY(-8px) scale(1.05);
 }

 .feature-item:hover .feature-title,
 .feature-item:hover .feature-description {
   color: #f09928;
 }

 .feature-hover-box {
   display: flex;
   align-items: flex-start;
   gap: 12px;
 }

 .feature-item:hover .feature-icon {
   background-color: #f09928;
   border-color: #f09928;
 }

 .feature-icon {
   width: 40px;
   height: 40px;
   border: 2px solid #f09928;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background-color 0.3s ease, border-color 0.3s ease;
 }

 .feature-content {
   display: flex;
   flex-direction: column;
   gap: 4px;
   flex: 1;
 }

 .feature-title {
   font-size: 20px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 300;
   line-height: 1.3;
   transition: color 0.3s ease;
 }

 .feature-description {
   font-size: 14px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 300;
   line-height: 1.9;
   transition: color 0.3s ease;
 }

 .feature-icon img {
   height: 25px;
   width: 25px;
   transition: filter 0.3s ease;
 }

 /* Animation for auto-hover effect */
 @keyframes featureAutoHover {

   0%,
   16.66% {
     transform: translateY(0) scale(1);
   }

   8.33% {
     transform: translateY(-8px) scale(1.05);
   }
 }

 /* Animation for color highlight */
 @keyframes highlightText {

   0%,
   16.66% {
     color: #fff;
     /* default white */
   }

   8.33% {
     color: #f09928;
     /* highlight yellow */
   }
 }

 /* Apply both animations to feature items */
 .feature-item.auto-hover {
   animation: featureAutoHover 20s ease-in-out infinite;
   transition: transform 0.4s ease;
 }

 .features-grid .feature-item:nth-child(5) {
   margin-left: 50%;
   width: 100%;
 }

 /* Animate text color for each item */
 .feature-item.auto-hover .feature-title,
 .feature-item.auto-hover .feature-description,
 .feature-item.auto-hover .feature-icon {
   animation: highlightText 10s ease-in-out infinite;
   transition: color 0.3s ease;
 }

 /* Stagger animations for smooth sequence */
 .features-grid .feature-item:nth-child(1),
 .features-grid .feature-item:nth-child(1) .feature-title,
 .features-grid .feature-item:nth-child(1) .feature-description {
   animation-delay: 0s;
 }

 .features-grid .feature-item:nth-child(2),
 .features-grid .feature-item:nth-child(2) .feature-title,
 .features-grid .feature-item:nth-child(2) .feature-description {
   animation-delay: 1s;
 }

 .features-grid .feature-item:nth-child(3),
 .features-grid .feature-item:nth-child(3) .feature-title,
 .features-grid .feature-item:nth-child(3) .feature-description {
   animation-delay: 2s;
 }

 .features-grid .feature-item:nth-child(4),
 .features-grid .feature-item:nth-child(4) .feature-title,
 .features-grid .feature-item:nth-child(4) .feature-description {
   animation-delay: 3s;
 }

 .features-grid .feature-item:nth-child(5),
 .features-grid .feature-item:nth-child(5) .feature-title,
 .features-grid .feature-item:nth-child(5) .feature-description {
   animation-delay: 4s;
 }

 /* Age Groups Section */
 .age-groups-section {
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   margin-top: 156px;
 }

 .age-groups-container {
   width: 84%;
   display: flex;
   flex-direction: column;
   align-items: center;
 }

 .quote-title {
   font-size: 32px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   line-height: 1.1;
   text-align: center;
   color: #f09928;
 }

 .quote-subtitle {
   font-size: 18px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 300;
   line-height: 1.7;
   text-align: center;
   color: #ffffff;
   margin-top: 24px;
 }

 .age-groups-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
   width: 100%;
   margin-top: 40px;
 }

 .age-group-card {
   display: flex;
   flex-direction: column;
   gap: 8px;
   align-items: center;
   transition: transform 0.3s ease;
 }

 .age-group-input {
   width: 100%;
   font-size: 20px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 700;
   line-height: 1.3;
   text-align: center;
   color: #ffffffcc;
   background: transparent;
   border: none;
   border-bottom: 1px solid #ffffff4c;
   padding: 8px 12px 12px;
   outline: none;
   transition: color 0.3s ease;
 }

 .age-group-description {
   font-size: 14px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 300;
   line-height: 2.5;
   text-align: center;
   color: #ffffff99;
   width: 100%;
 }

 .age-group-card .age-group-input,
 .age-group-card .age-group-description {
   color: #ffffff99;
   transition: color 0.2s ease;
 }

 .age-group-card:hover .age-group-input,
 .age-group-card:hover .age-group-description {
   color: #ffffff;
 }

 .age-group-input::placeholder {
   color: #ffffff99;
   /* normal placeholder */
   transition: color 0.3s ease;
 }

 .age-group-input:hover::placeholder {
   color: #ffffff;
   /* placeholder color on hover */
 }


 /* Schedule Section */
 .schedule-section {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   margin-top: 120px;
 }

 .schedule-title {
   font-size: 32px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   line-height: 1.1;
   text-transform: capitalize;
   color: #f09928;
 }

 .schedule-description {
   font-size: 16px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 100px;
   line-height: 1.7;
   text-align: center;
   color: #ffffff;
   width: 100%;
   max-width: 1210px;
   margin: 34px 16px;
 }

 .join-btn {
   width: 400px;
   font-size: 16px;
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-weight: 700;
   line-height: 1.5;
   color: #ffffff;
   background-color: #f09928;
   border: 1px solid transparent;
   border-image: linear-gradient(90deg, #f09928 0%, #99999966 100%);
   border-image-slice: 1;
   padding: 14px 34px;
   border-radius: 4px;
   text-decoration: none;
   display: inline-block;
   margin-top: 34px;
   transition: all 0.3s ease;
 }

 .join-btn:hover {
   background-color: #e8851f;
   transform: scale(1.05);
 }

 /* about  */


 /* Footer */
 .footer {
   position: relative;
   width: 100%;
   margin-top: 150px;
 }

 .footer-background {
   background-color: #f09928;
   border-radius: 150px 150px 0 0;
   padding: 40px 16px;
   position: relative;
 }

 .footer-content {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr;
   gap: 32px;
 }

 .footer-section h3 {
   font-size: 20px;
   font-weight: 600;
   color: #000000;
   margin-bottom: 16px;
 }

 .footer-links {
   list-style: none;
 }

 .footer-links li {
   margin-bottom: 12px;
 }

 .footer-links a {
   color: #000000;
   text-decoration: none;
   font-size: 16px;
   transition: color 0.3s ease;
 }

 .footer-links a:hover {
   color: #ffffff;
 }

 .contact-info {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }

 .contact-item {
   display: flex;
   align-items: center;
   gap: 16px;
 }

 .contact-icon {
   width: 50px;
   height: 50px;
   border: 1px solid #0000001f;
   border-radius: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
 }

 .contact-text {
   color: #000000;
   font-size: 14px;
   line-height: 1.4;
 }

 .footer-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 16px 135px;
   flex-wrap: wrap;
   margin-top: 40px;
 }

 .social-links {
   display: flex;
   gap: 16px;
 }

 .social-icon {
   width: 50px;
   height: 50px;
   border: 1px solid #0000001f;
   border-radius: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background-color 0.3s ease;
 }

 .social-icon img {
   height: 20px;
   width: 20px;
 }

 .social-icon:hover {
   background-color: #ebc752;
 }

 .copyright {
   text-align: center;
   color: #000000;
   font-size: 15px;
 }

 .dancer-image {
   position: absolute;
   right: 48px;
   top: -250px;
   width: 300px;
   height: auto;
   border-radius: 222px;
 }

 /* Interactive states */
 .gallery-item:hover {
   transform: scale(1.02);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
 }

 .filter-tab:focus {
   outline: 2px solid #f09928;
   outline-offset: 2px;
 }

 /* Responsive media queries */
 @media (min-width: 640px) {
   .header {
     padding: 16px 32px;
   }

   .hero-title {
     font-size: 52px;
   }

   .hero-subtitle {
     font-size: 20px;
   }

   .decorative-frame {
     max-width: 400px;
   }

   .hero-content {
     padding: 80px 16px;
   }

   .gallery-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
   }

   .event-gallery {
     gap: 24px;
   }

   .event-card {
     min-width: 320px;
   }

   .filter-tabs {
     gap: 24px;
   }

   /* event  */
   .performance-grid {
     gap: 32px;
   }

   .society-title {
     font-size: 40px;
     line-height: 45px;
   }

   /* academy  */

   .vision-title,
   .mission-title,
   .section-title,
   .quote-title,
   .schedule-title {
     font-size: 40px;
   }

   .feature-title {
     font-size: 22px;
   }

   .age-groups-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 60px;
   }

   .footer-content {
     grid-template-columns: 2fr 1fr;
     gap: 48px;
   }
 }

 @media (min-width: 768px) {
   .hamburger {
     display: none;
   }

   .nav-menu {
     display: flex;
   }

   .nav-menu a {
     font-size: 16px;
   }

   .register-btn {
     padding: 8px 26px;
     font-size: 16px;
   }

   .logo {
     width: 78px;
   }

   .hero-title {
     font-size: 64px;
   }

   .hero-subtitle {
     font-size: 22px;
   }

   .contact-text {
     font-size: 16px;
   }

   /* event  */
   .society-title {
     font-size: 50px;
     line-height: 49px;
   }

   .society-row {
     flex-direction: row;
     align-items: flex-start;
   }

   .society-image {
     width: 24%;
     flex-shrink: 0;
   }

   .society-text-content {
     width: 100%;
     margin-left: 24px;
     margin-bottom: 44px;
   }

   .society-item-title {
     font-size: 30px;
     line-height: 35px;
   }

   .society-description {
     font-size: 18px;
     line-height: 28px;
   }

   .society-meta {
     font-size: 16px;
     line-height: 21px;
   }

   /* academy  */
   .vision-title,
   .mission-title,
   .section-title,
   .quote-title,
   .schedule-title {
     font-size: 44px;
   }

   .vision-text,
   .mission-text,
   .feature-description,
   .age-group-description {
     font-size: 16px;
   }

   .features-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 60px;
   }

   .quote-subtitle,
   .schedule-description {
     font-size: 22px;
   }

 }

 @media (min-width: 1024px) {
   .header {
     padding: 16px 56px;
   }

   .hero-title {
     font-size: 72px;
     line-height: 80px;
   }

   .hero-subtitle {
     font-size: 24px;
     line-height: 32px;
   }

   .decorative-frame {
     max-width: 454px;
   }

   .hero-content {
     padding: 100px 16px;
   }

   .hero-banner {
     min-height: 70vh;
   }

   /* event  */
   .society-title {
     font-size: 48px;
     line-height: 54px;
   }

   .event-gallery {
     gap: 32px;
     overflow-x: visible;
   }

   .event-card {
     width: 582px;
     min-width: auto;
   }

   .gallery-grid {
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
   }

   /* academy */
   .vision-title,
   .mission-title,
   .section-title,
   .quote-title,
   .schedule-title {
     font-size: 48px;
   }

   .quote-subtitle,
   .schedule-description {
     font-size: 24px;
   }

   .vision-card,
   .mission-card {
     width: 400px;
   }

   .features-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 80px;
   }

   .age-groups-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 80px;
   }

   .filter-tabs {
     gap: 32px;
   }

   .filter-tab {
     font-size: 18px;
     padding: 14px 24px;
   }

   .footer-content {
     grid-template-columns: 2fr 1fr 1fr;
   }

   .dancer-image {
     width: 540px;
   }
 }

 @media (min-width: 1280px) {
   .gallery-grid {
     gap: 24px;
   }

   .features-grid {
     grid-template-columns: repeat(2, 1fr);
     max-width: 1200px;
     margin: 0 auto;
   }
 }

 /* Animation for smooth loading */
 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .hero-content>* {
   animation: fadeInUp 0.8s ease-out forwards;
 }

 .hero-title {
   animation-delay: 0.2s;
 }

 .hero-subtitle {
   animation-delay: 0.4s;
 }

 .decorative-frame {
   animation-delay: 0.6s;
 }

 /* Faq  */
 .achievements-title {
   font-size: 45px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   text-align: center;
   color: #f09928;
   width: auto;
 }

 .faq-section {
   max-width: 900px;
   margin: 0 auto 50px auto;
   padding: 20px;
   font-family: "Segoe UI", sans-serif;
 }

 .faq-item {
   border: 1px solid #ddd;
   padding: 2px;
   border-radius: 15px;
 }

 .faq-question {
   width: 100%;
   background: none;
   border: none;
   outline: none;
   text-align: left;
   font-size: 1.1rem;
   font-weight: 400;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px;
   color: #ffffff;
 }

 .faq-question .icon {
   transition: transform 0.3s ease;
   font-weight: bold;
   font-size: 1.2rem;
 }

 .faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease, padding 0.3s ease;
   padding: 0 0;
 }

 .faq-answer p {
   margin: 10px 0;
 }

 .faq-item.active .faq-answer {
   max-height: 200px;
   /* enough for content */
   padding: 10px 0;
 }

 .faq-item.active .faq-question .icon {
   transform: rotate(180deg);
   content: "–";
 }

 /* Sub Events  */
 .subevent-title {
   font-size: 48px;
   font-family: 'Monotype Corsiva', cursive;
   font-weight: 400;
   line-height: 30px;
   text-align: left;
   color: #ffffff;
   width: 100%;
   margin-bottom: 10px;
   margin-top: 20px;
 }

 .subevent-featured {
   font-weight: 400;
   font-size: 22px;
   opacity: 0.6;
   line-height: 40px;

 }

 .subevent-descrption {
   font-family: 'Plus Jakarta Sans', Arial, sans-serif;
   font-size: 20px;
   font-weight: 300;
   line-height: 1.5;
   color: #cccccc;
   margin-bottom: 40px;
   max-width: 80%px;
   margin-left: auto;
   margin-right: auto;
 }

 .custom-gallery {
   max-width: 1000px;
   margin: 40px auto;
   padding: 20px;
 }

 .gallery-row {
   display: grid;
   grid-template-columns: 2fr 1fr 2fr;
   gap: 20px;
   align-items: stretch;
   position: relative;
 }

 .big-image,
 .single-image,
 .small-images {
   height: 100%;
   position: relative;
 }

 .big-image img,
 .single-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 12px;
 }

 /* Two stacked small images */
 .small-images {
   display: grid;
   grid-template-rows: 1fr 1fr;
   gap: 20px;
   height: 100%;
   width: 350px;
 }

 .small-images img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 10px;
 }

 /* Event cards overlapping right-side image */
 .frame {
   position: absolute;
   right: -220px;
   width: 200px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 4px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
   text-align: center;
   cursor: pointer;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   z-index: 10;
   padding: 10px;
   color: #fff;
   backdrop-filter: blur(4px);
   display: flex;
 }

 .frame img {
   width: 80px;
   height: 60px;
   object-fit: cover;
   border-radius: 4px;
 }

 .frame p {
   font-size: 14px;
   font-weight: 300;
   margin-top: 16px;
   margin-left: 4px;
 }

 .frame:hover {
   transform: translateX(6px) scale(1.03);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
 }

 .prev-card {
   top: 20px;
 }

 .next-card {
   bottom: 300px;
 }

 /* Bottom three images */
 .gallery-row.three-images {
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin: 50px 0;
 }

 .gallery-row.three-images img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 10px;
 }

 @media (max-width: 992px) {
   .gallery-row {
     grid-template-columns: 1fr;
   }

   .frame {
     right: 10px;
     width: 150px;
   }
 }

 .event-prev {
   width: 45px;
   height: 45px;
   background-color: transparent;
   border: 1px solid #f09928;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
 }

 .event-prev:hover {
   background-color: #f09928;
   border-color: #f09928;
 }

 /* Mobile View  */
 @media (max-width: 767px) {

   /* Header  */
   .hamburger {
     display: block;
     order: 1;
   }

   .logo {
     order: 3;
     width: 30px;
   }

   .nav-menu {
     order: 3;
     display: none;
     flex-direction: column;
     width: 100%;
     background: rgba(0, 0, 0, 0.9);
     padding: 10px 0;
     text-align: center;
   }

   .nav-menu a {
     display: block;
     color: #fff;
     text-decoration: none;
   }

   .nav-menu a.active {
     color: #f59c22;
   }

   .nav-menu.show {
     display: flex;
   }

   .register-btn {
     order: 2;
     width: 140px;
   }

   /* Hero Image  */
   .hero-image-container {
     position: relative;
     width: 100%;
     overflow: hidden;
   }

   .hero-image {
     width: 100%;
    
   }




   /* Footer  */
   .dancer-image {
     position: absolute;
     right: 118px;
     top: -150px;
     width: 335px;
     height: 323;
     border-radius: 222px;
     object-fit: cover;
     z-index: 10;
   }

   .footer-section h3 {
     font-size: 20px;
     font-weight: 600;
     color: #000000;
     margin-top: 100px;
   }

   .contact-text {
     color: #000000;
     font-size: 16px;
     line-height: 1.6;
     word-wrap: break-word;
     font-weight: 500;
     width: 350;
   }

   .footer-bottom {
     flex-direction: column-reverse;
     align-items: center;
     gap: 10px;
     padding: 16px 13px;
     margin-top: -5px;
   }

   .footer-bottom .copyright {
     text-align: center;
     white-space: nowrap;
   }

   .footer-bottom .social-links {
     justify-content: center;
   }



 }