@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Inter:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

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

/* ---------------- HERO SECTION ---------------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom right, #fce8e6, #fbdada);
  font-family: "Inter", sans-serif;
  position: relative;
  width: 100%;
}

.navbar {
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #612020;
  z-index: 10;
}

.logo {
  font-size: 1.6rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.nav-links li:hover {
  opacity: 0.6;
}

.hero-content {
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  padding: 4rem 6rem;
  min-height: calc(100vh - 100px);
}

.hero-text {
  flex: 1;
  color: #612020;
  max-width: 500px;
  font-family: "Playfair Display", serif;
}
.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #814848;
}

.hero-images {
  flex: 1;
  position: relative;
  height: 500px;
}
.hero-images img {
  position: absolute;
  max-width: 100%;
  pointer-events: none;
}

.splash {
  bottom: 120;
  left: -35%;
  transform: translateX(-50%);
  width: 550px;
  opacity: 0.5;
}
.flower {
  width: 120px;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
}
.leaf1 { top: 10px; left: 30%; width: 200px; }
.leaf2 { bottom: 40px; right: 20%; width: 190px; transform: rotate(65deg); }
.leaf3 { top: 120px; right: 10%; width: 110px; }

/* ---------------- SECTION 1 ---------------- */
.section1 {
  min-height: 600px;
  background: #fceeee;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 6rem;
}
.section1-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  gap: 3rem;
}
.section1-text {
  flex: 1;
  font-family: "Playfair Display", serif;
  color: #612020;
}
.section1-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section1-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #814848;
}

.section1-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.kettle {
  width: 360px;
  z-index: 2;
}

.pour-stream {
  width: 230px;
  height: 280px;
  position: absolute;
  top: 150%;  /* adjust to spout position */
  left: 8%;
  transform: translateX(-50%);
  opacity: 0;    /* start hidden, show with animation */
  object-fit: cover;
  z-index: 1;
}


.shadow1 {
  position: absolute;
  top: -40%;        /* near the very top */
  left: -120%;       /* near the very left */
  width: 300px;
  height: 350px;
  transform: rotate(320deg);
  opacity: 0.4;
  z-index: 0;
}

.shadow2 {
  position: absolute;
  bottom: -45%;     /* push to bottom */
  right: -23%;      /* push to right */
  width: 320px;
  height: 380px;
  transform: rotate(-65deg);
  opacity: 0.4;
  z-index: 0;
}






/* ---------------- SECTION 2 ---------------- */
.section2 {
  min-height: 800px;
  background: linear-gradient(to bottom, #fbdada, #fceaea);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  flex-direction: column;
  text-align: center;
}

.cup {
  width: 680px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15));
}
.sip-text {
  font-family: "Bebas Neue", cursive;
  font-size: 4.5rem;
  letter-spacing: 3px;
  color: #5a1f1f;
  margin-top: 1rem;
}
