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

:root {
  --bg-color: #fdf8f5;
  --accent-color: #ebc7b9;
  --text-color: #2d2d2d;
  --gold-color: #d4af37;
  --white: #ffffff;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  padding-bottom: 8rem; /* Shift content upwards */
  z-index: 10;
}

.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  top: -100px;
  right: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background: #f3e5f5;
  bottom: -50px;
  left: -50px;
}

.logo-wrapper {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.logo {
  height: 160px; /* Increased logo size */
  width: auto;
  object-fit: contain;
}

.content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.headline {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-color);
  opacity: 0;
  transform: translateY(30px);
}

.subtext {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
}

.footer-text {
  position: absolute;
  bottom: 3rem;
  font-size: 0.85rem;
  color: #a0a0a0;
  letter-spacing: 0.15em;
  opacity: 0;
  font-weight: 300;
}

.floating-img {
  position: absolute;
  width: 15vw;
  max-width: 200px;
  opacity: 0.15;
  filter: grayscale(100%) opacity(0.5);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.img-1 { top: 15%; left: 8%; transform: rotate(-12deg); }
.img-2 { bottom: 15%; right: 8%; transform: rotate(12deg); }

@media (max-width: 768px) {
  .headline {
    font-size: 2.25rem;
  }
  .subtext {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
  .logo {
    height: 70px;
  }
  .main-container {
    padding: 1.5rem;
  }
  .footer-text {
    bottom: 1.5rem;
    font-size: 0.7rem;
  }
}
