@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@400;500;700&display=swap");

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

body {
  font-family: "Roboto", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/background.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
  color: #cccccc;
}

.nft-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 1rem 2.5rem;
  margin: 1.5rem 0 2rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nft-badge:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.nft-count {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.nft-label {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: #cccccc;
  letter-spacing: 2px;
  font-weight: 500;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: transparent;
  color: #ffffff;
}

.btn-secondary {
  background: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
}

.mint-section {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/dq14hzf2ql.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.mint-content {
  max-width: 800px;
}

.mint-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.mint-section p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
  color: #cccccc;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.overlay p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #cccccc;
  max-width: 400px;
}

.cta-section {
  min-height: 80vh;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-content {
  max-width: 800px;
}

.cta-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.cta-section p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 3rem;
  color: #cccccc;
}

.button-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  background: #000000;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #222222;
}

footer p {
  color: #666666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
