html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@font-face {
  font-family: 'TAN Meringue';
  src: url('fonts/TAN MERINGUE.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Darker Grotesque', sans-serif;
  background-color: #C26F83;
  color: #fceef2;
  overflow-x: hidden;
  text-align: center;
  position: relative;
}

/* Top pink banner */
.banner {
  background-color: #fcdbe1;
  color: #4e2c34;
  padding: 12px;
  font-weight: normal;
  font-size: 16px;
  border-bottom: 2px solid #ffffff33;
  z-index: 2;
  position: relative;
  letter-spacing: 1.2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
}

.banner-icon {
  height: 20px;
  width: auto;
  transform: scale(3.5);
  transform-origin: center;
}

/* Logo */
.logo-text {
  font-family: 'TAN Meringue';
  font-size: 56px;
  color: #772C41;
  margin: 40px 0 10px;
  z-index: 2;
  position: relative;
}

/* Tagline */
.tagline {
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}

/* Volume section */
.volumes {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-bottom: 80px;
  z-index: 2;
  position: relative;
}

/* Shared volume card styles */
.volume-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #592a3a;
  padding: 24px;
  border-radius: 12px;
  width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
  color: #fcdbe1;
  transition: transform 0.3s ease;
  border: none;
  cursor: default;
}

.volume-card img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.volume-card p {
  font-family: 'TAN Meringue', serif;
  font-size: 15px;
  color: #fcdbe1;
  margin: 0;
}

/* Available (clickable) volume card */
.volume-card.available {
  background-color: #592a3a;
  cursor: pointer;
}

.volume-card.available:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Disabled volume card */
.volume-card.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Tortoise images */
.tortoise {
  position: absolute;
  max-width: 100%;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}
.tortoise-left {
  width: 500px;
  left: -70px;
  top: -10px;
}
.tortoise-right {
  width: 800px;
  right: -250px;
  top: 10px;
}

.bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #4e2c34;
  color: #fcdbe1;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  padding: 12px 0;
  border-top: 2px solid #ffffff33;
  z-index: 3;
  white-space: nowrap;
  overflow: hidden;
}

/* Mobile styling */
@media (max-width: 768px) {
  .tagline-wrapper {
    background-color: rgba(252, 219, 225, 0.25);
    padding: 12px;
    margin: 0 auto 30px;
    max-width: 90%;
    border-radius: 10px;
    z-index: 3;
    position: relative;
  }
  .tortoise-left {
    width: 350px;
    left: -90px;
    top: 240px; 
  }
  .tortoise-right {
    width: 500px;
    right: -150px;
    bottom: 0;
    top: auto;
    position: fixed;
    transform: translateY(40%);
    z-index: 1;
  }
  .volumes {
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 12px 30px;
  }
  .volume-card {
    width: 31%;
    min-width: 80px;
    padding: 14px;
    box-sizing: border-box;
  }
  .volume-card p {
    font-size: 13px;
  }
  .tagline {
    margin-bottom: 30px;
  }
  .banner {
    width: 100%;
    box-sizing: border-box;
  }
}


