/* Reset and Base Styles */
@font-face {
  font-family: "Londrina Solid";
  src: url("/fonts/LondrinaSolid-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-color: #fffaf3;
  --text-color: #37352f;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
  --font-display: "Londrina Solid", var(--font-sans);

  /* Brand Colors */
  --color-pink: #C74767;
  --color-blue: #4A5899;
  --color-yellow: #F4962A;
  --color-cyan: #0FA3B1;
  --color-green: #11A322;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout Containers */
#content {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

#main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px; /* Space between elements */
}

/* Image Styles */
.sticker-root {
  display: block;
  transition: transform 0.1s ease-out; /* Fast transition for mouse movement */
  transform-style: preserve-3d;
  will-change: transform;
  touch-action: none; /* Prevent browser scrolling/zooming */
}

.logo-link {
  width: 240px; /* Increased significantly */
  margin: 0 auto; /* Ensure it centers if block */
}

.logo-img {
  /* width is handled by the sticker component style now, but we can keep this as a backup or specific override */
  width: 100%;
  height: auto;
  display: block;
}

.banner-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 4px; /* Slight rounding for a softer look */
}

.contact-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

/* Typography */
.coming-soon-text {
  font-family: var(--font-display);
  font-size: 4rem; /* Increased slightly for the display font */
  font-weight: 400; /* Londrina Solid is naturally bold/thick */
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  margin: 0;
  color: var(--text-color);
  text-transform: uppercase; /* Often looks better with this font */
}

/* Contact Section */
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  line-height: 1.2;
}

.contact-heading {
  color: var(--color-blue);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-email {
  margin-bottom: 2rem;
}

.social-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem; /* Tighter spacing for socials */
}

.contact-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.8;
}

.text-pink { color: var(--color-pink); }
.text-cyan { color: var(--color-cyan); }
.text-green { color: var(--color-green); }
.text-yellow { color: var(--color-yellow); }

/* Responsive Adjustments */
@media (max-width: 640px) {
  #content {
    padding: 40px 20px;
  }

  #main-content {
    gap: 40px;
  }

  .logo-link {
    width: 200px; /* Significantly larger on mobile */
  }

  .coming-soon-text {
    font-size: 2.25rem;
  }
}

/* Footer Credit */
.footer-credit {
  margin-top: 4rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-color);
  opacity: 0.4;
  text-align: center;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.footer-credit a:hover {
  border-bottom-color: currentColor;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0; /* Start hidden */
}

body.loaded .fade-in-up {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
