:root {
  --scene-max-width: 1900px;
  --scene-aspect-ratio: 16/9;
  --bg-color-left: #d3a271;
  --bg-color-right: #f2cfa1;
  --title-top: 17%;
  --title-left: 50%;
  --title-font-size: 66px;
  --about-top: 35%;
  --about-left: 15%;
  --about-title-font-size: 36px;
  --about-text-font-size: 22px;
  --extra-top: 56%;
  --extra-left: 15%;
  --extra-font-size: 15px;
  --extra-max-width: 380px;
  --hero-img-width: 1000px;
  --hero-img-bottom: 12%;
  --hero-img-right: 0%;
  --social-bottom: 200px;
  --social-left: 18px;
  --social-font-size: 25px;
  --social-gap: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(90deg, var(--bg-color-left), var(--bg-color-right));
  height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.scene {
  position: relative;
  width: 100%;
  max-width: var(--scene-max-width);
  aspect-ratio: var(--scene-aspect-ratio);
  border-radius: 0px;
  overflow: hidden;
  box-shadow:none;
}

.site-title {
  position: absolute;
  top: var(--title-top);
  left: var(--title-left);
  transform: translate(-50%, -50%);
  font-family: "Montserrat Subrayada", system-ui, sans-serif;
  font-size: var(--title-font-size);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #151515;
  animation: titleFadeUp 1.2s ease-out forwards;
}

.about-block {
  position: absolute;
  top: var(--about-top);
  left: var(--about-left);
  transform: translateY(-50%);
  max-width: 380px;
  animation: contentFade 1.3s ease-out forwards;
}

.about-title {
  font-size: var(--about-title-font-size);
  font-weight: 600;
  margin-bottom: 6px;
}

.about-text {
  font-size: var(--about-text-font-size);
  font-weight: 400;
  line-height: 1.5;
}

.extra-text {
  position: absolute;
  top: var(--extra-top);
  left: var(--extra-left);
  max-width: var(--extra-max-width);
  font-size: var(--extra-font-size);
  line-height: 1.5;
  color: #222;
  animation: contentFade 1.5s ease-out forwards;
}

.hero-image-wrapper {
  position: absolute;
  right: var(--hero-img-right);
  bottom: var(--hero-img-bottom);
  width: var(--hero-img-width);
  pointer-events: none;
  animation: floatSlow 6s ease-in-out infinite;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.social-buttons {
  position: absolute;
  left: var(--social-left);
  bottom: var(--social-bottom);
  display: flex;
  gap: 18px; 
}

.social-btn {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: var(--social-font-size);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #111;
  transition: opacity 0.2s ease;
}

.social-btn:hover {
  opacity: 0.6;
}

.social-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}

.social-btn:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: none;
}

@keyframes titleFadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -20%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes contentFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  :root {
    --scene-aspect-ratio: 9/16;
    --title-top: 12%;
    --title-left: 50%;
    --title-font-size: 26px;
    --about-top: 32%;
    --about-left: 10%;
    --about-title-font-size: 22px;
    --about-text-font-size: 14px;
    --extra-top: 52%;
    --extra-left: 10%;
    --extra-font-size: 13px;
    --extra-max-width: 80%;
    --hero-img-width: 260px;
    --hero-img-bottom: -4%;
    --hero-img-right: -10%;
    --social-bottom: 14px;
    --social-left: 50%;
    --social-font-size: 14px;
  }

  .about-block {
    transform: none;
  }

  .site-title {
    letter-spacing: 0.12em;
  }

  .social-buttons {
    transform: translateX(-50%);
  }
}
