:root {
  --bg-main: #f8efe7;
  --text-main: #2d1f1a;
  --text-soft: #6e554b;
  --accent: #b85c38;
  --accent-dark: #8f4324;
}

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

body {
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  background: linear-gradient(135deg, #fdf7f2 0%, #f5e7db 100%);
  padding-bottom: 42px;
}

.welcome-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.welcome-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
}

.brand-name {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
}

.headline-text {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.visual-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.visual-item {
  position: absolute;
  font-size: 3.5rem;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.item-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.item-2 {
  top: 45%;
  right: 12%;
  font-size: 3rem;
  animation-delay: 1s;
}

.item-3 {
  bottom: 25%;
  left: 15%;
  font-size: 3rem;
  animation-delay: 0.5s;
}

.item-4 {
  top: 30%;
  right: 8%;
  font-size: 2.5rem;
  animation-delay: 1.5s;
}

.item-5 {
  bottom: 15%;
  right: 20%;
  font-size: 2.5rem;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

.welcome-container {
  position: relative;
  z-index: 2;
}

.cta-button {
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #a85133 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(184, 92, 56, 0.25);
  transition: all 0.3s ease;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
  margin-top: 16px;
  position: relative;
  z-index: 10;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(184, 92, 56, 0.35);
  background: linear-gradient(135deg, #a85133 0%, #8f4324 100%);
}

.cta-button:active {
  transform: translateY(-1px);
}

.site-credit-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 9px 16px;
  border-top: 1px solid rgba(108, 74, 57, 0.08);
  background: #8e4b31;
  backdrop-filter: blur(10px);
  color: #fff7f2;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  pointer-events: none;
}

@media (max-width: 768px) {
  .welcome-container {
    gap: 24px;
  }

  .brand-name {
    font-size: 2.5rem;
  }

  .headline-text {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 14px 40px;
    font-size: 0.95rem;
  }
}

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

  .welcome-container {
    gap: 20px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .headline-text {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 12px 32px;
    font-size: 0.9rem;
  }
}
