* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 200vh;
  max-height: 200vh;
  scroll-behavior: smooth;
  /* font-family: "Helvetica Neue", sans-serif; */
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #d6cdb9;
  overflow-x: hidden;
}

.logo-container {
  position: relative;
  text-align: center;
  /* margin-top: 50vh; */
  height: 100%;
  width: 100%;
}

.main-logo {
  position: fixed; /* CHANGED from absolute */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1); /* center origin */
  transition: transform 0.3s ease-out, top 0.3s ease-out;
  z-index: 2;

  /* transition: all 1s ease-in-out; */
}
@keyframes logo-rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.small-svg-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  transform: translate(-50%, -75%);
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

@keyframes gentle-rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.small-svg {
  width: auto;
  position: absolute;
  z-index: 1;
  transition: transform 0.5s ease-in-out;
  animation: gentle-rotate 3s infinite ease-in-out;
}
.corner-svg {
  position: absolute;
  bottom: -3%;
  right: -25%;
  width: 110%;
  z-index: 3;
  transition: all 0.8s ease;
  height: auto;
  pointer-events: none;
}
.corner-svg-wrapper {
  position: absolute; /* Positioned relative to scrollable content */
  bottom: 0;
  right: 0;
  width: 100%; /* or whatever you need */
  height: 100%;
  overflow: hidden; /* hides part of the svg */
  pointer-events: none;
  z-index: 3;
}

.corner-svg.move-top {
  /* top: 40%; */
  /* left: 20%; */
  /* bottom: auto;
    right: auto; */
  position: fixed;
  z-index: 3;
  transform: translate(-20%, -70%) scale(0.15);
}

.center-text {
  position: fixed;
  top: 40%;
  left: 25%;
  transform: translate(-50%, -50%);
  font-family: "Afacad", sans-serif;
  font-style: normal;
  font-size: 2rem;
  color: #0d3862; /* Or white depending on bg */
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
  text-align: left;
  pointer-events: none;
  line-height: 1.5;
}

.contact-svg {
  position: fixed;
  top: 60%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  /* pointer-events: none; */
}

.contact-svg.visible {
  opacity: 1;
}

.location-wrapper {
  margin-top: 20vh;
  display: flex;
  align-items: center;
  gap: 2px;
}
.location-text {
  font-size: small;
  text-decoration: underline;
  color: #0d3862;
}
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: #0d3862;
}
.days-svg {
  margin-top: 3vh;
  width: 70%;
}

.corner-svg.transitioning {
  transition: all 0.3s ease;
}
.back-icon {
  position: fixed;
  top: 5%;
  left: 20px;
  width: 30px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.back-icon.visible {
  opacity: 1;
}

.main-logo {
  transition: opacity 0.5s ease;
}

.center-text {
  transition: opacity 0.5s ease;
}

.contact-us-button {
  position: absolute;
  font-family: "Afacad", sans-serif;
  /* font-size: 2; */
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background-color: transparent;
  padding: 10px 10px;
  text-align: center;
  text-decoration: underline;
  display: inline-block;
  margin: 4px, 2px;
  cursor: pointer;
  z-index: 3;
  font-size: larger;
  font-weight: bolder;
  color: #0d3862;
}
.small-svg:nth-child(1) {
  top: 41%;
  left: 15%;
}
.small-svg:nth-child(2) {
  top: 53%;
  left: 80%;
}
.small-svg:nth-child(3) {
  top: 43%;
  left: 74%;
}
.small-svg:nth-child(4) {
  top: 57%;
  left: 60%;
}
.small-svg:nth-child(5) {
  top: 50%;
  left: 6%;
}
.small-svg:nth-child(6) {
  top: 55%;
  left: 25%;
}
.small-svg:nth-child(7) {
  top: 41%;
  left: 45%;
}
/* Background Parallax */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  background: url("../assets/splatter.svg") no-repeat border-box fixed;
  background-size: auto;
  z-index: 0;
  transform: translateZ(0);
}

/* Sections */
.section {
  position: relative;
  height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Splash */
.splash-logo {
  width: 160px;
  transition: transform 1.5s ease-in-out;
  z-index: 2;
}

.floating-decor {
  position: absolute;
  top: 55%;
  width: 90%;
  z-index: 1;
  pointer-events: none;
  transition: transform 2s ease-in-out;
}

/* Main */
.main-face {
  width: 70%;
  margin-bottom: 2rem;
  transition: transform 1.5s ease-in-out, opacity 1.2s ease-in-out;
}

.main-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s ease-in-out;
  text-align: center;
}

.main-content h1 {
  font-size: 1.6rem;
  color: #1a2b47;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.contact-btn {
  background: none;
  border: none;
  color: #1a2b47;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

/* Fixed Elements */
.fixed-logo {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 10;
}

.fixed-face {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 50px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 10;
}

/* About Section */
.about-section {
  padding: 2rem;
  background-color: #d4c7ad;
  text-align: center;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1a2b47;
}

/* Responsive */
@media (min-width: 768px) {
  .main-content h1 {
    font-size: 2rem;
  }
}
