
@import url('https://fonts.googleapis.com/css2?family=Satisfy&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --ice-blue-light: #eaf5fd;   
  --ice-blue:       #cce4f5;  
  --ice-blue-mid:   #8bbedd;   
  --ice-blue-deep:  #3a6b8a;   
  --blush:          #fadadd;   
  --pink-mid:       #f0a8b0;   
  --charcoal:       #2c2c34;   
  --charcoal-mid:   #4a5460;  
  --charcoal-light: #7a8fa0;   
  --white:          #ffffff;
  --shadow:         0 4px 24px rgba(44, 44, 52, 0.10);
  --radius-pill:    50px;
  --radius-sm:      8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--ice-blue-light);
  color: var(--charcoal);
  overflow-x: hidden;
  min-height: 100vh;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(234, 245, 253, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 190, 221, 0.30);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 18px rgba(44, 44, 52, 0.07);
}


.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  font-family: 'Satisfy', cursive;
  font-size: 18px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}


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

.nav-links a {
  display: inline-block;
  text-decoration: none;
  color: var(--charcoal-mid);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--blush);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: var(--blush);
  color: var(--charcoal);
  font-weight: 600;
}


.hero {
  display: flex;
  height: 100vh;
  min-height: 500px;
  padding-top: 76px;
}


.hero-left {
  flex: 1;
  background-color: var(--ice-blue);
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(240, 168, 176, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 10%, rgba(139, 190, 221, 0.25) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 56px;
  position: relative;
  overflow: hidden;
}


.hero-left::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1.5px solid rgba(240, 168, 176, 0.35);
  border-radius: 50%;
  top: -90px;
  right: -70px;
  z-index: 0;
}


.hero-left::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(58, 107, 138, 0.20);
  border-radius: 50%;
  bottom: 30px;
  left: -55px;
  z-index: 0;
}


.hero-text {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  text-align: center;
}


.hero-text .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--pink-mid);
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}


.hero-text h1 {
  font-family: 'Satisfy', cursive;
  font-size: clamp(38px, 4.5vw, 66px);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}


.retro-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.retro-rule::before,
.retro-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--pink-mid);
  opacity: 0.5;
  max-width: 36px;
}

.retro-rule span {
  font-size: 11px;
  color: var(--pink-mid);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal-mid);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-text p.bio {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 38px;
}


.btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  background: var(--charcoal);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 14px 38px;
  border-radius: var(--radius-pill);
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(44, 44, 52, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(44, 44, 52, 0.30);
  background: var(--ice-blue-deep);
}


.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-color: var(--ice-blue-light);
}

.slide.active {
  opacity: 1;
}


.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.70);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: rgba(255, 255, 255, 0.92);
  transform: scale(1.35);
}


footer {
  text-align: center;
  padding: 18px 40px;
  background: var(--ice-blue);
  border-top: 1px solid rgba(139, 190, 221, 0.30);
  font-size: 13px;
  color: var(--charcoal-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.5px;
}


@media (min-width: 1400px) {
  .navbar {
    padding: 18px 80px;
  }

  .hero-left {
    padding: 60px 80px;
  }

  .hero-text {
    max-width: 480px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 14px 32px;
  }

  .hero-left {
    padding: 50px 40px;
  }

  .hero-text {
    max-width: 360px;
  }

  .hero-text h1 {
    font-size: clamp(34px, 4vw, 52px);
  }
}


@media (max-width: 768px) {
  .navbar {
    padding: 12px 24px;
  }

  .nav-links a {
    padding: 6px 14px;
    font-size: 13px;
  }

  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding-top: 68px;
  }

  .hero-left {
    flex: none;
    width: 100%;
    min-height: 55vh;
    padding: 48px 32px 44px;
    align-items: center;
    text-align: center;
  }

  .retro-rule {
    justify-content: center;
  }

  .hero-right {
    flex: none;
    width: 100%;
    height: 45vh;
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .nav-links a {
    padding: 5px 10px;
    font-size: 12px;
  }

  .logo-box {
    height: 38px;
    padding: 0 14px;
    font-size: 16px;
  }

  .hero-left {
    padding: 40px 24px 36px;
    min-height: 52vh;
  }

  .hero-text h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero-text h2 {
    font-size: 17px;
  }

  .hero-text p.bio {
    font-size: 14px;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 12px;
  }

  .hero-right {
    height: 40vh;
    min-height: 240px;
  }

  footer {
    padding: 14px 20px;
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 4px 8px;
    font-size: 11px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-left {
    padding: 36px 18px 32px;
  }

  .hero-right {
    min-height: 220px;
  }
}
