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

/* SCROLL SNAP */
html, body {
  height: 100vh;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2d2d2d;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 400;
}

/* SECTIONS */
.section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.section.light {
  background: #f7f5f2;
}

/* CONTENT WRAPPER */
.content {
  max-width: 600px;
}

/* TYPOGRAPHY */
h1, h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTONS */
.btn {
  background: #6b8e23;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #6b8e23;
  color: #6b8e23;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #2d2d2d;
  color: white;
}

/* Oval image */
  .oval {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50% / 60%;
    position: relative;
  }

  .oval img {
    width: 440%;
    height: auto;
    position: absolute;
    top: -30%;
    left: -170%;
    object-fit: cover;
  }

  /* Curved text using SVG */
  .curve-text {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
  }

  svg {
    width: 100%;
    height: 100%;
  }

  text {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    fill: #2d2d2d;
    font-weight: bold;
    letter-spacing: 2px;
  }

.container {
    position: relative;
    width: 320px;
    height: 400px;
    margin: 0 auto;
  }
