/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #f7f3e9;
    color: #c8a882;
}

.btn-primary:hover {
    background-color: #f0e6d2;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f7f3e9;
    color: #c8a882;
}

.btn-secondary:hover {
    background-color: #f0e6d2;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #666;
}



.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 50px;
    background-color: #ffffff;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.25rem;
    color: #000;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.375rem;
    color: #000;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/5;
}

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

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-social-links {
    display: flex;
    gap: 0.75rem;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #f7f3e9;
    color: #c8a882;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-social-link:hover {
    background-color: #c8a882;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 168, 130, 0.3);
}

.hero-social-link svg {
    width: 20px;
    height: 20px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f5faf5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.about-text::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 60px;
    width: 50px;
    height: 3px;
    background-color: #c8a882;
}

.about-description {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.6;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 3/4;
}

.about-image img {
    width: 105%;
    height: 105%;
    object-fit: cover;
    object-position: center center;
    margin: -2.5%;
}

/* Classes Section */
.classes {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.classes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.class-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.class-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c8a882 0%, #b8956f 100%);
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.class-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f7f3e9 0%, #f0e6d2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #c8a882;
}

.class-title {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.class-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.class-benefits {
    text-align: left;
    margin-bottom: 1rem;
}

.class-benefits strong {
    color: #000;
    font-weight: 600;
}

.class-vibe {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

/* Schedule Section */
.schedule {
    padding: 100px 0;
    background-color: #f5faf5;
}

.schedule-container {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c8a882 0%, #b8956f 100%);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.schedule-header {
    margin-bottom: 2rem;
}

.schedule-info h3 {
    font-size: 1.75rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.schedule-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(200, 168, 130, 0.15);
    border-radius: 10px;
    border-left: 4px solid #c8a882;
}

.location-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.address {
    flex: 1;
}

.maps-link {
    color: #c8a882;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.maps-link:hover {
    color: #b8956f;
    text-decoration: underline;
}

.class-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.class-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.class-details {
    flex: 1;
}

.schedule-type {
    display: inline-block;
    background: #f7f3e9;
    color: #c8a882;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.schedule-type.upcoming {
    background: #f7f3e9;
    color: #c8a882;
}

.class-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.class-meta {
    font-size: 0.9rem;
    color: #666;
}

.schedule-time {
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 100px;
    flex-shrink: 0;
}

.schedule-actions {
    text-align: center;
    margin-top: 3rem;
}

/* Instructors Section */
.instructors {
    padding: 100px 0;
    background-color: #ffffff;
}

.instructor-container {
    max-width: 1000px;
    margin: 0 auto;
}

.instructor-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c8a882 0%, #b8956f 100%);
    z-index: 2;
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.instructor-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
}

.instructor-info {
    padding: 3rem;
}

.instructor-name {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.instructor-title {
    font-size: 1.125rem;
    color: #c8a882;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructor-bio {
    font-size: 1.125rem;
    color: #333;
    line-height: 1.7;
}

.instructor-bio::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c8a882 0%, #b8956f 100%);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.instructor-bio p {
    margin-bottom: 1rem;
}

.instructor-bio p:last-child {
    margin-bottom: 0;
}

.instructor-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f5faf5;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c8a882 0%, #b8956f 100%);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a7d1ab;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .classes-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 700px;
    }

    .class-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 350px;
    }
}

@media (max-width: 980px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }



    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        aspect-ratio: 3/4;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding: 40px;
    }

    .schedule-card {
        padding: 2rem;
    }

    .class-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .schedule-time {
        align-self: center;
        margin-top: 1rem;
    }

    .schedule-location {
        text-align: center;
    }

    .location-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .address {
        margin-bottom: 0.5rem;
    }

    .instructor-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .instructor-info {
        padding: 2rem;
    }

    .instructor-name {
        font-size: 2rem;
    }

    .instructor-image {
        height: 400px;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .about,
    .classes,
    .instructors,
    .contact {
        padding: 70px 0;
    }

    .schedule {
        padding: 70px 0;
    }

    .about-text {
        padding: 30px;
    }

    .classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .class-card:nth-child(3) {
        grid-column: 1;
        max-width: none;
    }

    .class-card {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid #a7d1ab;
    outline-offset: 2px;
}
/* F
ooter */
.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand {
    text-align: left;
}

.footer-title {
    font-size: 1.75rem;
    color: #c8a882;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-tagline {
    font-size: 1rem;
    color: #ccc;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #f7f3e9;
    color: #c8a882;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #c8a882;
    color: #f7f3e9;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.back-to-top {
    background-color: #f7f3e9;
    color: #c8a882;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid #f7f3e9;
    border-radius: 20px;
}

.back-to-top:hover {
    background-color: #f0e6d2;
    color: #c8a882;
    transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 980px) {
    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-main {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-title {
        font-size: 1.75rem;
    }

    .footer-links {
        gap: 1.5rem;
    }
}/* Soci
al Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f7f3e9;
    color: #c8a882;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #c8a882;
    color: #f7f3e9;
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .social-links {
        justify-content: center;
    }
}/* Contac
t Info */
.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(200, 168, 130, 0.1);
    border-radius: 15px;
    border-left: 4px solid #c8a882;
    text-align: center;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #666;
}

.contact-info p:first-child {
    color: #c8a882;
    font-weight: 600;
}

@media (max-width: 640px) {
    .contact-info {
        margin-top: 1.5rem;
        padding: 1rem;
    }
}/* Co
ntact Social Links */
.contact-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #f7f3e9;
    color: #c8a882;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-social-link:hover {
    background-color: #c8a882;
    color: #f7f3e9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 168, 130, 0.3);
}

.contact-social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .contact-social {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-social-link {
        width: 200px;
        justify-content: center;
    }
}