/* ==========================================================================
   I.Confidence - Editorial Lavender & Charcoal Brand Theme
   ========================================================================== */

:root {
  --bg-lavender-mist: #F7F5FA; 
  --text-charcoal: #2A363B;     
  --accent-lavender: #8E75A6;   
  --accent-lilac: #E3DBFA;      
  --font-headings: 'Quicksand', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background-color: var(--bg-lavender-mist);
  color: var(--text-charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  padding: 0 3rem;
}

a {
  text-decoration: none;
  color: var(--text-charcoal);
  transition: all 0.3s ease;
}

/* Navigation Layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(142, 117, 166, 0.15); /* Sleek structural line divider */
}

/* Logo image safety settings so a raw .jpg doesn't blow out the header layout */
.logo-img {
  height: 50px; 
  width: auto;
  display: block;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
}

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

/* ==========================================================================
   Asymmetric Editorial Hero Design
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr; /* Gives the copy a dramatic, wider footprint */
  align-items: center;
  gap: 6rem;
  max-width: 1200px;
  margin: 6rem auto;
}

.hero-badge {
  display: inline-block;
  background-color: var(--accent-lilac);
  color: #3B2A4A; 
  padding: 0.4rem 1.2rem;
  border-radius: 4px; /* Crisp, architectural edge instead of bubbly pill shapes */
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

/* Distinctive Left Border typography architecture */
.headline-container {
  border-left: 5px solid var(--accent-lavender);
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-charcoal);
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  margin-left: 2.3rem; /* Aligns body beautifully underneath the bordered text grid */
  margin-bottom: 3rem;
  opacity: 0.85;
  max-width: 550px;
}

.hero-action-row {
  margin-left: 2.3rem;
}

/* Clean Editorial Button Format */
.btn-lavender {
  background-color: var(--text-charcoal);
  color: white !important;
  padding: 1rem 2.2rem;
  border-radius: 4px; /* Matches badge aesthetic shape */
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-lavender:hover {
  background-color: var(--accent-lavender);
}

/* ==========================================================================
   Graphic Pane Layout (With background overlapping shape layers)
   ========================================================================== */

.hero-image-pane {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Soft color backdrop layer to frame her picture layout */
.accent-bg-blob {
  position: absolute;
  background-color: var(--accent-lilac);
  width: 110%;
  height: 90%;
  border-radius: 100px 20px 100px 20px; /* Highly distinct architectural soft curves */
  z-index: 1;
  opacity: 0.5;
  transform: rotate(-3deg);
}

.teacher-photo-frame {
  position: relative;
  z-index: 2; /* Forces image layer to sit cleanly on top of background shape */
  background-color: #E3DBFA;
  width: 100%;
  height: 480px;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(42, 54, 59, 0.1);
  overflow: hidden;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fits cleanly inside the box layout container framework */
  display: block;
}

/* Mobile Adaptation layer rules */
@media (max-width: 950px) {
  body { padding: 0 1.5rem; }
  .hero { grid-template-columns: 1fr; gap: 4rem; text-align: left; }
  .headline-container { padding-left: 1.5rem; }
  .hero h1 { font-size: 2.6rem; }
  .hero p, .hero-action-row { margin-left: 0; }
  .teacher-photo-frame { height: 400px; max-width: 350px; margin: 0 auto; }
  .accent-bg-blob { display: none; }
  .nav-links { display: none; }
}