/* === LOCAL FONT DEFINITIONS === */

/* ANTON */
@font-face {
  font-display: swap;
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/anton-v25-latin-regular.woff2') format('woff2');
}

/* BEBAS NEUE */
@font-face {
  font-display: swap;
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bebas-neue-v14-latin-regular.woff2') format('woff2');
}

/* BARLOW CONDENSED */
@font-face {
  font-display: swap;
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400; /* For body text, .hero-text */
  src: url('../fonts/barlow-condensed-v12-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500; /* For .nav-link, .dropdown-menu a */
  src: url('../fonts/barlow-condensed-v12-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600; /* For .btn-primary, .btn-outline etc. */
  src: url('../fonts/barlow-condensed-v12-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow-condensed-v12-latin-700.woff2') format('woff2');
}

/* Barlow Condensed 800 - Removed as it does not appear to be actively used. */

/* === END LOCAL FONT DEFINITIONS === */

/* === HERO SECTION ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-element-animation {
  animation-name: fadeInUp;
  animation-duration: 0.8s; /* Duration of the animation */
  animation-fill-mode: both; /* Keeps the element in its final state (visible) */
  animation-timing-function: ease-out; /* Smooth easing */
  opacity: 0; /* Start hidden */
}

/* Staggered delays */
.animate-hero-button {
  animation-delay: 0.2s;
}

.animate-hero-subheading { /* .hero-text is used for the subheading */
  animation-delay: 0.4s;
}

.animate-hero-description { /* Assuming there's a separate description element or we target a specific p within hero-text */
  animation-delay: 0.4s;
}

.animate-hero-title {
  animation-delay: 0.5s;
}
/* === END HERO SECTION ANIMATIONS === */

/* Custom CSS for CombatZone Template */

/* Base Styles */
:root {
    --primary: #b87333; /* Bronze/copper tone */
    --primary-dark: #8c572b;
    --primary-light: #d49a6a;
    --primary-rgb: 184, 115, 51; /* Added for event card gradient */
    --dark: #111111;
    --dark-alt: #222222;
    --light: #f8f8f8;
    --gray: #949494;
    --light-gray: #f2f2f2;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark);
    color: var(--light);
}

/* Custom Font Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.number-font {
    font-family: 'Bebas Neue', sans-serif;
}

/* Text highlights */
.text-highlight, .highlight {
    color: var(--primary);
}

/* Section styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 2rem;
    color: var(--gray);
}





.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 640px) {
    #home {
        background-position: 65% center !important; /* Shift image to the right */
    }
    .hero-buttons a {
        width: auto; /* Override Tailwind's default full width for buttons in flex column */
        padding-left: 1.5rem; /* Adjust padding as needed */
        padding-right: 1.5rem; /* Adjust padding as needed */
    }
    .hero-buttons {
        align-items: center; /* Center buttons in the flex container */
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 2px solid var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Large Buttons */
.btn-primary-large {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--primary);
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-secondary-large {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 2px solid var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.btn-secondary-large:hover {
    background-color: var(--primary);
    color: white;
}

/* Navigation Styles */
#main-nav {
    background-color: transparent;
    transition: all 0.4s ease;
}

#main-nav.scrolled {
    background-color: var(--dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background-color: var(--dark-alt);
    border: 1px solid rgba(184, 115, 51, 0.3);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    transform: translateY(10px) translateX(-50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--dark-alt);
    border-left: 1px solid rgba(184, 115, 51, 0.3);
    border-top: 1px solid rgba(184, 115, 51, 0.3);
    transform: rotate(45deg) translateX(-50%);
    z-index: -1;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-icon,
.nav-item.dropdown:focus-within .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-menu {
    background-color: var(--dark);
    overflow-y: auto; /* Enable scrolling if needed */
}

.mobile-menu ul {
    padding: 1rem 0;
}

/* Mobile Link Styles - optimized for direct links */
.mobile-menu .nav-link {
    padding: 0.5rem 1rem;
    display: block;
    text-align: center;
    transition: color 0.3s, transform 0.2s;
}

.mobile-menu .nav-link:hover {
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section Styles */
.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    transform: translateY(50%);
}

/* Stats Section Styles */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(184, 115, 51, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.2);
}

/* Classes Section Styles */
.class-card {
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.class-image-container {
    position: relative;
    overflow: hidden;
}

.class-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.class-card:hover .class-image {
    transform: scale(1.1);
}

.class-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.class-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    color: white;
}

.class-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.class-info {
    display: flex;
    gap: 1rem;
}

.class-meta-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.class-meta-icon {
    margin-right: 0.5rem;
    color: var(--primary);
}

.class-difficulty {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
}

.class-description {
    padding: 1.5rem;
    background-color: var(--dark-alt);
    color: var(--light);
}

/* Trainer Cards */
.trainer-card {
    background-color: var(--dark-alt);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.trainer-image-container {
    position: relative;
    overflow: hidden;
}

.trainer-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top; /* Add this line */
    transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-image {
    transform: scale(1.1);
}

.trainer-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.trainer-card:hover .trainer-social {
    opacity: 1;
    transform: translateY(0);
}

.trainer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.trainer-social-icon:hover {
    background-color: white;
    color: var(--primary);
}

.trainer-info {
    padding: 1.5rem;
    text-align: center;
}

.trainer-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.trainer-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.trainer-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Schedule Styles */
.schedule-nav {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(184, 115, 51, 0.2);
}

.schedule-nav-item {
    padding: 1rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: var(--gray);
}

.schedule-nav-item:hover {
    color: var(--primary);
}

.schedule-nav-item.active {
    color: var(--primary);
}

.schedule-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

.schedule-pane {
    display: none;
}

.schedule-pane.active {
    display: block;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background-color: var(--primary);
    color: white;
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.schedule-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.schedule-table tr:hover td {
    background-color: rgba(184, 115, 51, 0.1);
}

.schedule-time {
    font-weight: 600;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
}

.schedule-class h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.schedule-level {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--dark-alt);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.pricing-price {
    font-size: 1rem;
    color: white;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 0.25rem;
    color: var(--primary);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary);
}

.price-duration {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    padding: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--light);
}

.pricing-feature.inactive {
    color: var(--gray);
}

.pricing-feature-icon {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--primary);
}

.pricing-feature.inactive .pricing-feature-icon {
    color: var(--gray);
}

.pricing-action {
    padding: 0 2rem 2rem;
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0; /* Or your desired border-radius */
    height: 280px; /* Adjust as needed */
    display: block; /* Ensure the anchor tag behaves like a block for dimensions */
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6); /* Slightly darker overlay for better icon visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i { /* Style for the icon if needed */
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2); /* Optional: slight zoom effect on icon */
}

/* Testimonial Styles */
.testimonial-card {
    background-color: var(--dark-alt);
    border-radius: 0;
    padding: 2rem;
    position: relative;
    margin-top: 3rem;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.testimonial-content {
    margin-top: 2rem;
    text-align: center;
}



.testimonial-author {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.testimonial-role {
    color: var(--primary);
    font-size: 0.875rem;
}

/* Contact Section Styles */
.contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.contact-info-content p {
    color: var(--gray);
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

/* Footer Styles */
.footer {
    background-color: var(--dark);
    color: var(--gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-about {
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--primary);
    margin-right: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: var(--primary);
}

/* Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Event Card Styles */
.event-card {
    background-color: var(--dark-alt);
    border: 2px solid transparent;
    border-image: linear-gradient(to bottom right, var(--primary-dark), var(--primary-light)) 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 1.5rem; /* Replicates Tailwind p-6 */
    border-radius: 0.5rem; /* Replicates Tailwind rounded-lg */
}

.event-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 40%);
    transform: rotate(0deg);
    transition: transform 0.8s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: 0;
}

.event-card:hover::before {
    transform: rotate(180deg);
    opacity: 1;
}

.event-card > * {
    position: relative;
    z-index: 1;
}

.event-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.2), 0 5px 10px rgba(0,0,0,0.4);
    border-image: linear-gradient(to top left, var(--primary-light), var(--primary-dark)) 1;
}

/* Ensuring text within event cards has good contrast */
.event-card h3 {
    color: var(--primary-light); /* Or var(--light) if --primary-light is too much */
}

.event-card p {
    color: var(--light-alt); /* Lighter than default text for better readability on dark-alt */
}

.event-card p i {
    color: var(--primary); /* Keep icons in primary color */
}

/* Media Queries */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem; /* Adjusted from 3rem to 2.5rem for smaller screens */
    }
    
    .about-image-wrapper {
        margin-bottom: 3rem;
    }
    
    .experience-badge {
        right: 1rem;
    }
    
    .class-image {
        height: 200px;
    }
    
    .trainer-image {
        height: 300px;
    }

    .gallery-item {
        height: 200px; /* Adjust gallery item height for smaller screens */
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .pricing-featured:hover {
        transform: translateY(-10px);
    }
}
