/* QAOCJOR INC - Yoga & Wellness Studio Styles */
/* Color Palette: Sage Green, Earth Tones, Cream, White */
/* Navigation: Minimal Centered */

:root {
    --sage: #87a878;
    --sage-dark: #6b8f5e;
    --sage-light: #a8c99b;
    --earth: #8b7355;
    --cream: #f5f2eb;
    --white: #ffffff;
    --dark: #3d3d3d;
    --gray: #6b6b6b;
    --light: #fafaf8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* Centered Minimal Navigation */
.nav-center {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--sage-dark);
    text-decoration: none;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sage-dark);
}

/* Hero Section */
.hero-wellness {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(245,242,235,0.7), rgba(168,201,155,0.3)),
                url('https://images.pexels.com/photos/4057865/pexels-photo-4057865.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    text-align: center;
    padding: 120px 40px 80px;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 58px;
    color: var(--sage-dark);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content .tagline {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--earth);
    margin-bottom: 30px;
}

.hero-content .description {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: var(--gray);
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: var(--sage);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(135, 168, 120, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    color: var(--sage-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--sage);
    border-radius: 50px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--sage);
    color: var(--white);
}

/* Section Styles */
.section {
    padding: 120px 40px;
}

.section-white {
    background: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-sage {
    background: var(--sage-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--sage-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Class Cards */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.class-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.class-image {
    height: 220px;
    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.08);
}

.class-content {
    padding: 30px;
}

.class-content h3 {
    font-size: 22px;
    color: var(--sage-dark);
    margin-bottom: 12px;
}

.class-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.class-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--cream);
    font-size: 13px;
    color: var(--earth);
}

/* About Section */
.about-balance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h3 {
    font-size: 36px;
    color: var(--sage-dark);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--gray);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 5px;
}

.value-text p {
    font-size: 13px;
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h4 {
    font-size: 17px;
    color: var(--sage-dark);
    margin-bottom: 8px;
}

.product-info .price {
    font-size: 15px;
    font-weight: 600;
    color: var(--earth);
}

/* Cases Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover img {
    transform: scale(1.08);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(107, 143, 94, 0.9));
    color: var(--white);
}

.case-overlay h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 5px;
}

.case-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

/* Contact Section */
.contact-wellness {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    background: var(--sage);
    padding: 60px;
    border-radius: 25px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sage-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--cream);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--white);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

/* Footer */
.footer-wellness {
    background: var(--dark);
    color: var(--white);
    padding: 80px 40px 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--sage-light);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer h4 {
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--sage-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sage-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1000px) {
    .classes-grid,
    .products-grid,
    .cases-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-balance,
    .contact-wellness {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
}
