
:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #555555;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hero */
.hero-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

/* Desktop full image without crop */
.hero-img {
  width: 100%;
  height: auto;
  object-fit: contain; /* Show full image */
  background-color: #fff; /* White bars if needed */
  border-radius: 0;
}

/* LOGO + TEXT as one block (absolute) */
.logo-block {
  position: absolute;
  top: clamp(40px, 6vw, 80px);
  left: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px; /* space between logo and text */
}

.logo-overlay {
  width: min(260px, 22vw);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
}

.logo-text {
  color: #fff;
  font-size: clamp(28px, 1.5vw, 20px);
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Gallery */
.gallery {
  padding: 16px 16px 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.grid img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #ffffff;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding: 22px 0;
  text-align: center;
  color: var(--muted);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  /* Gallery: 2 columns */
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero: crop to fill */
  .hero-img {
    object-fit: cover;
    background-color: transparent;
  }

  /* Center logo block for mobile */
  .logo-block {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    gap: 40px;
  }

  .logo-overlay {
    width: 80%;
  }

  .logo-text {
    font-size: clamp(26px, 4vw, 22px);
  }
}

