:root {
  --bg-main: #fdf6f2;
  --bg-soft: #f7ebe5;
  --text-main: #2e2e2e;
  --accent: #b08968;
}

img{
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

.cover {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #fff, var(--bg-main));
  transition: opacity 0.8s ease-in-out;
}

.cover.fade-out {
  opacity: 0;
}

.letter {
  width: 200px;
  height: 140px;
  border: 2px solid var(--accent);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.letter:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.hidden {
  display: none;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.8;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to bottom, #fff, var(--bg-main));
  padding: 2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
}

.section {
  max-width: 900px;
  margin: auto;
  padding: 4rem 2rem;
}

.section2 {
  max-width: 900px;
  margin: auto;
  padding: 4rem 2rem;
}

.section2 img{
  height: 30px;
  width: 30px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.section p {
  margin-bottom: 1rem;
}

.soft-bg {
  background-color: var(--bg-soft);
}

.list {
  list-style: none;
}

.list li {
  padding-left: 1.2rem;
  margin-bottom: 0.7rem;
  position: relative;
}

.list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.story {
  margin-bottom: 2.5rem;
}

.story h3 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.emphasis {
  font-style: italic;
  color: var(--accent);
}

.cvz{
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #fff, var(--bg-main));
    transition: opacity 0.8s ease;
}

.cvz.fade-out {
  opacity: 0;
}

.ltr{
  width: 200px;
  height: 140px;
  border: 2px solid var(--accent);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.footer {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--bg-soft);
  font-family: 'Playfair Display', serif;
}

.footer img {
  height: 100px;
  width: 100px;
}




