:root {
  --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --color-black: #000;
  --color-white: #fff;
  --color-gray-500: #8c8c9a; /* Approximate from oklch */
  --color-link: #1100ff;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-black);
  height: 100vh;
  margin: 0;
  overflow: hidden; /* h-screen overflow-hidden */
}

.app-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* HEADER */
.header {
  position: relative;
  width: 100%;
  height: 40vh; /* h-[40vh] */
  overflow: hidden;
  flex-shrink: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.9;
  display: block;
}

.overlay-vector {
  position: absolute;
  top: 5%;
  right: -15%;
  width: 110%;
  height: 110%;
  pointer-events: none;
  opacity: 0.4;
}

.overlay-vector svg {
  width: 100%;
  height: 100%;
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 2rem 1.5rem; /* py-8 px-6 */
  z-index: 10;
  animation: fadeIn 0.8s ease-out forwards;
}

.logo-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  margin-bottom: 2rem; /* mb-8 */
}

.logo-icon {
  width: 45px;
  height: auto;
  object-fit: contain;
}

.logo-text-svg {
  width: 140px;
}

.main-title {
  font-size: 22px;
  line-height: 1.5; /* leading-tight */
  color: var(--color-black);
  max-width: 800px;
  font-weight: 400; /* font-normal */
}

/* CONTACT SECTION */
.contact-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem; /* pb-4 */
}

.contact-info {
  margin-bottom: 1.5rem; /* mb-6 */
}

.contact-label {
  font-size: 12px;
  color: var(--color-gray-500);
  margin-bottom: 0.25rem; /* mb-1 */
}

.contact-email {
  font-size: 24px;
  color: var(--color-link);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.15s;
}

.contact-email:hover {
  text-decoration: underline;
}

.social-icons-svg {
  width: 75px;
}

/* FOOTER */
.footer {
  height: 12px;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.footer-image {
  position: absolute;
  bottom: 0;
  width: 100%;
  object-fit: cover;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
