
body {
  margin: 0;
  font-family: 'Averia Serif Libre', serif;
  background-color: #00637b;
  color: #fff8cc;
  text-align: center;
}

.banner {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  display: block;
  margin-top: 1rem;
}

header {
  margin-bottom: 0;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.description {
  text-align: center;
  max-width: 800px;
  margin: 30px auto 60px; /* more top + bottom spacing */
  line-height: 1.6;
  font-size: 1.05rem;
  padding: 0 1rem;
  color: #fff8cc; /* soft yellow font color */
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.card {
  width: 220px;
  height: 330px;
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-back {
  background-color: #fff8cc;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 0.85rem;
  line-height: 1.3rem;
  color: #000;
}

footer {
  background-color: #fff;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #333;
}

footer a {
  color: #0066cc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.disclaimer {
  margin-bottom: 0.5rem;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .divider {
    background-position: center;
    height: 60px;
    margin: 1rem auto;
  }
}

  .card {
    width: 180px;
    height: 270px;
  }

  .card-back {
    font-size: 0.75rem;
  }
  
.divider {
  width: 100%;
  height: 80px;
  background: url('divider.jpg') no-repeat center;
  background-size: contain;
  margin: 0 auto 1rem;
}

.mint-button-container {
  text-align: center;
  margin: 30px auto;
}

.mint-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1.2rem;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.mint-button:hover {
  background-color: #e6b800;
}
