/* Minimalistic Yoga Instructor Design */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --primary: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-mid: #666;
    --text-light: #999;
    --bg-white: #ffffff;
    --bg-off-white: #fafafa;
    --accent: #4a4a4a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Containers */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

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

/* Hero Full Width */
.hero-full {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    margin-top: 73px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-intro h2 {
    font-size: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--primary);
}

/* About Section */
.about-minimal {
    padding: 8rem 0;
    background: var(--bg-white);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

/* Photo Break */
.photo-break {
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1);
}

/* Services Minimal */
.services-minimal {
    padding: 8rem 0;
    background: var(--bg-off-white);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 600px;
}

.service-item.featured {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Photo Grid */
.photo-grid {
    background: var(--bg-white);
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.grid-item {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1);
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* Contact Minimal */
.contact-minimal {
    padding: 8rem 0;
    background: var(--bg-off-white);
}

.contact-box {
    text-align: center;
    margin-top: 3rem;
}

.contact-box p {
    font-size: 1.2rem;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-minimal {
    padding: 3rem 0;
    background: var(--primary);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-minimal p {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-location {
    margin-top: 0.5rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .about-minimal,
    .services-minimal,
    .contact-minimal {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-content {
        padding: 1.2rem 1rem;
    }
    
    .container-narrow {
        padding: 0 1.5rem;
    }
    
    .service-item.featured {
        padding: 2rem 1.5rem;
    }
}
