/* ===== BASE ===== */

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

/* 🐆 Cheetah background */
html {
  min-height: 70%;
  background-image: url('cheetah.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 3rem;
  background: rgba(0, 0, 0, 0.4); /* slight dark overlay so cheetah isn’t too loud */
}

/* ===== CENTERED BLACK BOX (MAIN SHELL) ===== */

.wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #000000;
  border-radius: 30px;
  box-shadow: 2px 2px 10px #ffffff;
  border-left: 4px solid #ff00c8;   /* neon pink sides */
  border-right: 4px solid #ff00c8;  /* neon pink sides */
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Keep cards but make them blend into the black box */
.card {
  background: transparent;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 0, 200, 0.4);
  box-shadow: 0 0 15px rgba(255, 0, 200, 0.25);
  text-align: center;
}

/* ===== HEADER / NAV LOOK ===== */

.site-header {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000000;
  border-radius: 30px;
  box-shadow: 2px 2px 10px #ffffff;
  border-left: 4px solid #ff00c8;
  border-right: 4px solid #ff00c8;
  padding: 1rem 1.5rem;
  color: rgb(255, 68, 204);
}

.site-header h1 {
  font-family: "Lobster", "Pacifico", "Great Vibes", cursive;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: -5px;
}

/* Use nav similar to your .nav ul style */
.site-header nav {
  margin-top: 20px;
}

.site-header nav a {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  margin-right: 15px;
  color: rgb(255, 68, 204);
  text-decoration: none;
}

.site-header nav a:last-child {
  margin-right: 0;
}

.site-header nav a:hover {
  text-decoration: underline;
}

/* Links */

a:link,
a:visited {
  color: rgb(255, 68, 204);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== HERO BANNER ===== */

.hero-card {
  text-align: center;
  padding: 1rem 1rem 0.75rem; /* less padding so it’s shorter overall */
}

/* 🔑 any hero image is forced into this rectangle */
.hero-card .hero-image {
  width: 100%;
  max-width: 1200px;
  height: 220px;       /* fixed rectangle height */
  object-fit: cover;   /* crop to fit if image is too tall/wide */
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  border: 2px solid #ff00c8;
  box-shadow: 0 0 12px rgba(255, 0, 200, 0.35);
}

/* ===== TYPOGRAPHY ===== */

h2 {
  margin-bottom: 0.5rem;
}

h3 {
  margin-bottom: 0.4rem;
}

.small {
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* ===== BUTTONS ===== */

.btn,
button {
  display: inline-block;
  border-radius: 999px;
  border: 2px solid #ff00c8;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  cursor: pointer;
  background: #000000;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn:hover,
button:hover {
  background: #ff00c8;
  color: #000000;
  text-decoration: none;
}

/* ===== FORMS (BRING BACK THE BOXES) ===== */

.field {
  margin-bottom: 0.9rem;
  text-align: left; /* keeps labels left so forms are usable */
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #ff00c8;
  font-size: 0.95rem;
  background: #000000;
  color: #ffffff;
}

/* Placeholder color */
input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

/* ===== NOTICES ===== */

.notice {
  padding: 0.7rem 1rem;
  border-radius: 0.55rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #ffffff;
  text-align: center;
}

.notice.success {
  background: rgba(22, 101, 52, 0.7);
  color: #ecfdf3;
}

.notice.error {
  background: rgba(185, 28, 28, 0.7);
  color: #fef2f2;
}

/* ===== GALLERY ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  max-height: 260px;
  border: 2px solid #ff00c8;
}

/* ===== PRODUCT GRID ===== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-card {
  background: #000000;
  border-radius: 0.9rem;
  padding: 1rem;
  border: 2px solid #ff00c8;
  box-shadow: 0 0 15px rgba(255, 0, 200, 0.35);
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  max-height: 260px;
  margin-bottom: 0.6rem;
  border: 2px solid #ff00c8;
}

.product-card h3 {
  margin-bottom: 0.25rem;
}

.product-card .price {
  font-weight: 700;
  margin-bottom: 0.7rem;
}

/* ===== DANGER BUTTON (admin delete) ===== */

.danger-btn {
  display: inline-block;
  border: none;
  background: #b91c1c;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  cursor: pointer;
  margin-top: 0.25rem;
}

.danger-btn:hover {
  background: #7f1d1d;
}

/* HR override */
hr {
  border: none;
  border-top: 1px solid #ff00c8;
  margin: 1.5rem 0;
}

/* PayPal button container spacing */
#paypal-button-container {
  margin-top: 0.75rem;
}

/* ===== MOBILE ===== */

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .site-header nav a {
    font-size: 1rem;
    margin-right: 10px;
  }

  .wrap {
    width: 94%;
    padding: 1.5rem 1rem 2rem;
  }
}
