/* Global */
body {
  	margin: 0;
  	line-height: normal;
}

/* Base styles */
.dl-coming-soon-page {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: #0e0c0a;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-family: VT323, monospace;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mbaliyekhethelo-08-1-icon {
  width: 100%;
  max-width: 898px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: none;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header.dl-coming-soon-page-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 128px;
  padding: 96px 0 56px;
}

.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  padding: 0 96px;
  font-family: VT323, monospace;
  font-weight: 300;
}

.logo-image-icon {
  width: 300px;
  position: relative;
  max-height: 100%;
  object-fit: cover;
}

.text-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

h1.main-heading {
  width: 100%;
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 72px;
}

.subheading {
  width: 100%;
  position: relative;
  font-size: 32px;
  margin: 0 auto;
}

.image-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  grid-template-areas:
    "video video video large-image large-image large-image"
    "small-left small-left medium-center medium-center small-right small-right";
  gap: 40px;
}

.image-gallery .image:nth-child(1) {
  grid-area: video;
}

.image-gallery .image:nth-child(2) {
  grid-area: large-image;
}

.image-gallery .image:nth-child(3) {
  grid-area: small-left;
}

.image-gallery .image:nth-child(4) {
  grid-area: medium-center;
}

.image-gallery .image:nth-child(5) {
  grid-area: small-right;
}

.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.2s;
  text-decoration: none;
  z-index: 2;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .image-wrapper:hover .overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

.rounded-video {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rounded-image {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rounded-image:hover {
  transform: scale(1.02);
}

.about-us-text {
  width: 100%;
  position: relative;
  font-size: 32px;
  line-height: 125%;
  padding: 0 96px;
  box-sizing: border-box;
}

.follow-us-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 64px;
}

h2.garden-route-locals {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(24px, 4vw, 20px);
  line-height: 32px;
}

p.getting-ready {
  width: 100%;
  position: relative;
  font-size: 20px;
  line-height: 125%;
  margin: 0;
}

nav.social-media-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.social-media-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-media-links a:hover {
  transform: translateY(-2px);
}

.social-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(1);
}

footer.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #33ff33;
}

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

.footer-child {
  width: 100%;
  max-width: 1024px;
  height: 1px;
  background: #ff00ff;
  border: none;
  border-top: 1px dashed #ff00ff;
}

a:-webkit-any-link {
  color: #ff00ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lucastudio {
  text-decoration: underline;
  transition: color 0.2s ease;
}

.lucastudio:hover {
  color: #ff00ff;
}

/* Desktop styles */
@media screen and (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }

  /* .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  } */
}

/* Tablet styles */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 40px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .subheading {
    font-size: 24px;
  }

  /* .image-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
    "video video video large-image large-image large-image"
    "small-left small-left medium-center medium-center small-right small-right";
  } */
}

/* Mobile styles */
@media screen and (max-width: 767px) {
  .logo-image-icon {
    width: 200px;
  }

  .container {
    padding: 0 24px;
    max-width: 100%;
    box-sizing: border-box;
  }

  header.dl-coming-soon-page-container {
    gap: 64px;
    padding: 72px 0 24px;
  }

  .main-content {
    padding: 0;
  }

  .text-container {
    gap: 40px;
  }

  h1.main-heading {
    font-size: 32px;
    line-height: 48px;
  }

  .subheading {
    font-size: 24px;
  }

  .image-gallery {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "video"
      "large-image"
      "small-left"
      "medium-center"
      "small-right";
    gap: 40px;
  }

  .image-wrapper {
    box-sizing: border-box;
    overflow: hidden;
  }

  .image-wrapper.large {
    height: 500px;
  }

  .image-wrapper.small {
    height: 262px;
  }

  .rounded-video {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    /* max-height: none; */
  }

  .rounded-image {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    /* max-height: fit-content; */
  }

  .about-us-text {
    font-size: 24px;
    line-height: 125%;
    padding: 0;
  }

  .social-media-links {
    gap: 24px;
  }
}
