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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.content {
  text-align: center;
  z-index: 10;
  height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 50vw;
  font-weight: 400;
  color: #a0a0a0;
  margin-bottom: 4rem;
}

/* Showcase Section */
.showcase-section {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto 6rem;
  padding: 0 2rem;
}

.showcase-header {
  text-align: center;
  margin-bottom: 4rem;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #6366f1;
  color: #ffffff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
}

.showcase-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.showcase-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 500px;
}

.showcase-card {
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.showcase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.showcase-card.large {
  grid-row: span 2;
}

.showcase-card.portrait {
  grid-row: span 2;
}

.showcase-card.small {
  /* Default single row */
}

.showcase-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-nav {
  width: 100%;
  position: absolute;
  padding-left: 4rem;
  padding-right: 4rem;
  bottom: 2rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  color: #a0a0a0;
  text-decoration: underline;
  text-decoration-color: #a0a0a0;
  text-underline-offset: 4px;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 4rem;
    max-width: 80vw;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .bottom-nav {
    bottom: 2rem;
  }

  .showcase-section {
    margin: 3rem auto 4rem;
    padding: 0 1rem;
  }

  .showcase-title {
    font-size: 1.8rem;
  }

  .showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
    max-width: 350px;
    margin: 0 auto;
  }

  .showcase-card {
    width: 100%;
  }

  .showcase-card.large {
    aspect-ratio: 1/1;
  }

  .showcase-card.portrait {
    aspect-ratio: 9/16;
  }

  .showcase-card.small {
    aspect-ratio: 1/1;
  }
} /* Footer styles */
.footer {
  background-color: #0a0a0a;
  padding: 4rem 0 2rem;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  width: 100%;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-title {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.contact-button {
  display: inline-block;
  background-color: #6366f1;
  color: #ffffff;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-radius: 100px;
  transition: all 0.2s ease;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.contact-button:hover {
  background-color: #c0392b;
  transform: translateY(-1px);
}

.footer-info {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.address {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
}

.copyright {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
}

.copyright .heart {
  color: #e74c3c;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-title {
    font-size: 1.75rem;
  }

  .contact-button {
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
  }

  .footer-info {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .container {
    padding: 1rem;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .contact-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }
}
