/* --- UPDATED STYLE.CSS --- */

:root {
    --soft-blue: #e3f2fd;   /* Backgrounds */
    --sage-green: #8fb9a8;  /* Accents/Buttons */
    --muted-rose: #f1d1d1;  /* Highlights/Small details */
    --deep-blue: #2c3e50;   /* Professional Text */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.section-philosophy, .pathway-section, .testimonials-section {
    padding: 100px 0;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%; 
}

blockquote, .quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--deep-blue);
    line-height: 1.5;
}

nav a, .btn-main, .bubble {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
}

nav .logo { font-weight: 800; color: var(--sage-green); letter-spacing: 1px; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { text-decoration: none; color: var(--deep-blue); font-weight: 500; transition: 0.3s; }
nav a:hover { color: var(--sage-green); }

/* UPDATED HERO SECTION */
.hero {
    /* Image with semi-transparent white overlay for readability */
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), 
                url('https://images.unsplash.com/photo-1651598792240-75127d440b81?q=80&w=687&auto=format&fit=crop');
    
    background-size: cover;       /* Forces image to fill container */
    background-position: center;  /* Centers the focus of the photo */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: adds a premium parallax feel */
    
    padding: 160px 10%;           /* Increased padding for more visual impact */
    text-align: center;
    border-radius: 0 0 50px 50px;
    min-height: 70vh;             /* Ensures the image has height to show up */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; color: var(--deep-blue); }

/* The rest of your styles remain unchanged... */
.bubble-wrap { display: flex; gap: 12px; justify-content: center; margin-top: 25px; }
.bubble {
    background: var(--muted-rose);
    color: var(--deep-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.bubble.alt { background: var(--sage-green); color: white; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
.card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }

.btn-main {
    background: var(--sage-green);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.pathway-section {
    background-color: #fff;
    padding: 100px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.path-item {
    padding: 20px;
}

.number-circle {
    width: 60px;
    height: 60px;
    background: var(--sage-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.footer-gradient {
    height: 150px;
    background: linear-gradient(to bottom, #fff, var(--soft-blue));
}

.testimonials-section {
    background-color: var(--white);
    background-image: radial-gradient(var(--soft-blue) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 80px 0;
}

/* Ensure this is at the very bottom of your style.css */
@media (max-width: 768px) {
    nav { flex-direction: column; }
    .hero h1 { font-size: 2.2rem; }
    .testimonial-card { min-width: 85%; }
}