/* style.css - Main Stylesheet for Nueva Vida */
:root {
    --stone: #F8F6F2;
    --charcoal: #2A2A2A;
    --terracotta: #C44536;
    --sage: #8A9B8A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--stone);
    color: var(--charcoal);
    line-height: 1.6;
    padding-top: 80px; /* Prevents content from hiding under fixed header */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: rgba(248, 246, 242, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--charcoal);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.book-btn {
    background: var(--terracotta);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
}

/* ===== COMMON COMPONENTS ===== */
.page-header {
    text-align: center;
    padding: 4rem 0 2rem;
}
.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--terracotta);
}

.btn:hover {
    background: transparent;
    color: var(--terracotta);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.btn-secondary:hover {
    background: var(--terracotta);
    color: white;
}

/* ===== HERO SECTION (Homepage only) ===== */
.hero {
    background: linear-gradient(135deg, rgba(248, 246, 242, 0.9), rgba(138, 155, 138, 0.1));
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy {
    padding: 5rem 0;
    background: white;
}
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.science-side, .wisdom-side {
    padding: 3rem;
    border-radius: 10px;
}
.science-side {
    background: rgba(138, 155, 138, 0.1);
    border-left: 4px solid var(--sage);
}
.wisdom-side {
    background: rgba(196, 69, 54, 0.05);
    border-left: 4px solid var(--terracotta);
}
.science-side h3, .wisdom-side h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
}
.philosophy ul {
    list-style: none;
}
.philosophy li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
    font-size: 1.1rem;
}
.philosophy li:last-child {
    border-bottom: none;
}

/* ===== SERVICES GRID ===== */
.services {
    padding: 5rem 0;
    background: var(--stone);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--terracotta);
    margin: 1rem 0;
}

/* ===== CONTACT & FOOTER ===== */
.contact-info {
    padding: 4rem 0;
    background: white;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}
.info-item {
    text-align: center;
    padding: 2rem;
}
.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--terracotta);
}

footer {
    background: var(--charcoal);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--terracotta);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .nav-links {
        display: none; /* For simplicity. A mobile menu would be the next upgrade. */
    }
} 