/* Inspired by editorial layouts and your new palette */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

:root {
  --bg: #eaf3ec;              /* Smoky light moss green (main background) */
  --panel: #F2F4F4;           /* Very light gray (top panel/nav) */
  --panel-border: #E7B0B6;    /* Soft rose (panel border) */
  --section-alt: #F9DEDB;     /* Pale pink (alt section) */
  --card-bg: #F6D3CE;         /* Light blush (cards) */
  --card-border: #E7B0B6;     /* Soft rose (card border) */
  --primary: #425554;         /* Deep teal green (main text/buttons) */
  --primary-dark: #2F3B3C;    /* Charcoal teal (headings/strong) */
  --accent: #B46F6B;          /* Muted clay (buttons/accents) */
  --radius: 22px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  min-height: 100vh;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Top Panel/Strip */
.top-panel {
  width: 100vw;
  background: var(--panel);
  border-bottom: 2.5px solid var(--panel-border);
  min-height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

/* Header/Logo/Nav inside Panel */
nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(231,176,182,0.07);
  padding: 0.6rem 2.5rem;
  z-index: 210;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  transition: background .18s, color .18s;
  font-family: 'Montserrat', Arial, sans-serif;
}
nav a:hover, nav a.active {
  background: var(--primary);
  color: #fff;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  min-height: 100vh;
  padding: 0 2rem;
  position: relative;
  gap: 3rem;
  padding-top: 120px; /* space for fixed panel/nav */
}
.hero-content {
  flex: 2;
  max-width: 900px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 4vw;
}

.hero .subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  line-height: 1.18;
  letter-spacing: -1px;
  max-width: 900px;
}
.hero .headline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 900px;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background .18s, color .18s;
  text-align: center;
  min-width: 180px;
}
.cta-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* Hero Image - Circle Frame */
.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  z-index: 1;
  position: relative;
}
.hero-image img,
.hero-image svg {
  width: 320px;
  height: 320px;
  max-width: 90vw;
  max-height: 90vw;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--card-border);
  box-shadow: 0 4px 32px rgba(180,111,107,0.10);
  background: #fff;
  display: block;
}

/* Alternate Section (Panel/Card) */
.section-alt {
  background: var(--section-alt);
  border-radius: var(--radius);
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  max-width: 1100px;
}

/* Card Example */
.card {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(180,111,107,0.07);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
  padding: 2.2rem 1rem 1.2rem 1rem;
  margin-top: auto;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    padding: 2.5rem 1rem 1.5rem 1rem;
    min-height: 80vh;
    gap: 2rem;
    padding-top: 100px;
  }
  .hero-content, .hero-image {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-left: 0;
    align-items: center;
  }
  .hero-image img,
  .hero-image svg {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 700px) {
  nav {
    padding: 0.4rem 0.7rem;
    gap: 0.7rem;
    font-size: 0.98rem;
    top: 8px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subtitle {
    font-size: 1.3rem;
  }
  .hero .headline {
    font-size: 1.05rem;
  }
  .hero-image img,
  .hero-image svg {
    width: 200px;
    height: 200px;
  }
  .top-panel {
    min-height: 44px;
  }
}