/* 
* Vintotree Boxing Studio - Main Stylesheet
* Author: Claude
* Version: 1.0
*/

/* ===============
   Base Styles
   =============== */
:root {
    --background: #1A1A1A;
    --accent: #FF3D00;
    --secondary-accent: #B71C1C;
    --text: #FFFFFF;
    --dark-gray: #222222;
    --medium-gray: #333333;
    --light-gray: #555555;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-accent);
}

ul {
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
}

button, .cta-button, .pricing-cta, .submit-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

section {
    padding: 80px 0;
    position: relative;
}

/* ===============
   Header & Navigation
   =============== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    height: 50px;
    display: block;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

/* ===============
   Hero Section
   =============== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('../images/img00.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.headline {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text);
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.3);
}

.cta-button:hover {
    background-color: var(--secondary-accent);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
}

/* ===============
   Section Titles
   =============== */
.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    text-transform: uppercase;
    font-weight: 900;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

/* ===============
   About Section
   =============== */
.about {
    background-color: var(--dark-gray);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border: 5px solid var(--accent);
    box-shadow: 10px 10px 0 rgba(183, 28, 28, 0.3);
    overflow: hidden;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    color: var(--accent);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.about-text li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.about-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ===============
   Classes Section
   =============== */
.classes {
    background-color: var(--background);
}

.classes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.class-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.class-image {
    height: 200px;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.class-card:hover .class-image img {
    transform: scale(1.1);
}

.class-content {
    padding: 20px;
}

.class-content h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.class-details {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.class-details li {
    margin-bottom: 8px;
}

.schedule-container {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.schedule-container h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--accent);
}

.schedule-table-wrapper {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.schedule-table th, .schedule-table td {
    padding: 15px 10px;
    border-bottom: 1px solid var(--light-gray);
}

.schedule-table th {
    background-color: var(--medium-gray);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table td:first-child {
    font-weight: bold;
    text-align: left;
}

/* ===============
   Trainers Section
   =============== */
.trainers {
    background-color: var(--dark-gray);
}

.trainers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trainer-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
}

.trainer-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.trainer-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--background), transparent);
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainer-info {
    padding: 20px;
}

.trainer-info h3 {
    color: var(--accent);
    margin-bottom: 5px;
}

.trainer-title {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-bio {
    margin-bottom: 20px;
}

.trainer-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trainer-credentials span {
    background-color: var(--medium-gray);
    color: var(--text);
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
}

/* ===============
   Facilities Section
   =============== */
.facilities {
    background-color: var(--background);
}

.facilities-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.facilities-text {
    flex: 1;
    min-width: 300px;
}

.facilities-text h3 {
    color: var(--accent);
    margin-bottom: 15px;
    margin-top: 30px;
}

.facilities-text h3:first-child {
    margin-top: 0;
}

.facilities-list {
    margin-top: 20px;
}

.facilities-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.facilities-list .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
}

.facilities-gallery {
    flex: 1;
    min-width: 300px;
}

.gallery-main {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
}

.gallery-thumbs img {
    width: calc(33.33% - 7px);
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-thumbs img:hover, .gallery-thumbs img.active {
    opacity: 1;
}

/* ===============
   Testimonials Section
   =============== */
.testimonials {
    background-color: var(--dark-gray);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: var(--background);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.rating {
    display: flex;
    margin-bottom: 20px;
}

.star {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--light-gray);
    padding-top: 15px;
}

.author-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-testimonial, .next-testimonial {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.prev-testimonial:hover, .next-testimonial:hover {
    transform: scale(1.2);
}

.prev-testimonial svg, .next-testimonial svg {
    width: 24px;
    height: 24px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
}

/* ===============
   Pricing Section
   =============== */
.pricing {
    background-color: var(--background);
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    background-color: var(--medium-gray);
    position: relative;
}

.pricing-header h3 {
    margin-bottom: 10px;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.period {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.pricing-features {
    padding: 30px 20px;
}

.pricing-features ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.pricing-features .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    background-color: var(--accent);
    color: var(--text);
    text-align: center;
    padding: 15px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.pricing-cta:hover {
    background-color: var(--secondary-accent);
    color: var(--text);
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--dark-gray);
    border-radius: 8px;
}

/* ===============
   Contact Section
   =============== */
.contact {
    background-color: var(--dark-gray);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: var(--accent);
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-details .icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details li div {
    flex: 1;
}

.contact-details strong {
    display: block;
    margin-bottom: 5px;
}

.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h3 {
    color: var(--accent);
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 0 calc(50% - 10px);
    position: relative;
}

.form-group.full-width {
    flex: 1 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}

.checkbox-container label {
    margin-bottom: 0;
    text-transform: none;
    font-weight: normal;
    letter-spacing: 0;
}

.submit-button {
    background-color: var(--accent);
    color: var(--text);
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-accent);
}

/* ===============
   Footer
   =============== */
.footer {
    background-color: var(--background);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo .tagline {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* ===============
   Back to Top Button
   =============== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-accent);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===============
   Policy Pages
   =============== */
.page-content {
    padding: 150px 0 80px;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 900;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.policy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ===============
   Success Page
   =============== */
.success-page {
    padding: 150px 0 80px;
    text-align: center;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--dark-gray);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 61, 0, 0.1);
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-title {
    margin-bottom: 30px;
    color: var(--accent);
}

.success-message {
    margin-bottom: 40px;
}

.success-message p {
    margin-bottom: 15px;
}

.success-message .personalized-message {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 20px 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-button:hover {
    background-color: var(--secondary-accent);
    color: var(--text);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--text);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent);
}

.secondary-button:hover {
    background-color: var(--accent);
    color: var(--text);
}

/* ===============
   Media Queries
   =============== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .headline {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-content,
    .facilities-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--background);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .headline {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .about-image,
    .about-text,
    .facilities-text,
    .facilities-gallery {
        flex: 1 0 100%;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo,
    .footer-links {
        flex: 1 0 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .headline {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .class-card,
    .trainer-card {
        min-width: 100%;
    }
    
    .form-group {
        flex: 1 0 100%;
    }
    
    .gallery-thumbs {
        display: none;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}