/* ===============================================
   GLOBAL STYLES & RESET
   =============================================== */

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

:root {
    --primary-color: #8b7355;
    --secondary-color: #d4af37;
    --accent-color: #a8956f;
    --dark-bg: #2c2416;
    --light-bg: #faf8f5;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===============================================
   CONTAINER & LAYOUT
   =============================================== */

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

/* ===============================================
   NAVIGATION
   =============================================== */

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-nav:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ===============================================
   BUTTONS
   =============================================== */

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
}

/* ===============================================
   HERO SECTION
   =============================================== */

.hero {
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.75), rgba(139, 115, 85, 0.65)),
                url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1600') center/cover no-repeat;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 0;
}

.hero-content {
    z-index: 2;
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
}

.hero .btn-primary:hover {
    background-color: var(--light-bg);
    color: var(--dark-bg);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

/* ===============================================
   SECTIONS
   =============================================== */

.features,
.classes-overview,
.about-content,
.certifications,
.values {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* ===============================================
   FEATURES SECTION
   =============================================== */

.features {
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===============================================
   CLASSES SECTION
   =============================================== */

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.class-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

.class-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.class-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.class-duration {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===============================================
   CTA SECTION
   =============================================== */

.cta-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-section .btn-light {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-section .btn-light:hover {
    background-color: var(--accent-color);
}

/* ===============================================
   ABOUT PAGE
   =============================================== */

.about-hero,
.booking-hero {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.95), rgba(168, 149, 111, 0.95));
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 8rem;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ===============================================
   CERTIFICATIONS
   =============================================== */

.certifications {
    background-color: var(--light-bg);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow);
}

.cert-item h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: var(--text-light);
}

/* ===============================================
   VALUES SECTION
   =============================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, var(--light-bg), #ffffff);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===============================================
   BOOKING PAGE
   =============================================== */

.booking-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
    min-height: 80vh;
}

.booking-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
}

.booking-sidebar {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.booking-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.class-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.class-option {
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.class-option:hover {
    border-color: var(--primary-color);
    background-color: var(--light-bg);
}

.class-option.selected {
    border-color: var(--primary-color);
    background-color: var(--light-bg);
    box-shadow: 0 3px 15px rgba(139, 115, 85, 0.2);
}

.class-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.class-option h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.class-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.class-option p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.class-time {
    font-size: 0.85rem !important;
    font-style: italic;
}

/* ===============================================
   BOOKING FORM
   =============================================== */

.booking-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.booking-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group input[readonly] {
    background-color: var(--light-bg);
    cursor: not-allowed;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.payment-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.total-price {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* ===============================================
   CONFIRMATION MESSAGE
   =============================================== */

.confirmation-message {
    text-align: center;
    padding: 4rem 2rem;
}

.confirmation-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 2rem;
}

.confirmation-message h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.confirmation-message p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* ===============================================
   FOOTER
   =============================================== */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2.5rem 0 1.5rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.8rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.9rem;
}
}

.footer-section h3,
.footer-section hwhite
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    opacity: 0.9;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 0.85rem;
}
    color: var(--secondary-color);
}
.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.8;
    font-size: 0.95remcenter;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 968px) {
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image {
        display: none;
    }
    
    .about-text {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        order: 2;
    }
    
    .about-text p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .booking-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        position: relative;
        top: 0;
    }
}

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

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

    .hamburger {
        display: flex;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        padding: 2rem 1.5rem;
    }
}.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .features-grid,
    .classes-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
