:root {
  --bg: #120c4a;
  --card: #1d1380;
  --card-soft: #2620a3;
  --accent: #ff7fbf;
  --accent-soft: #ffd7ef;
  --text: #ffffff;
  --muted: #cfd3ff;
  --danger: #ff4d4d;
  --success: #3ecf8e;
  --warning: #ffcc33;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top, #1a1040 0, var(--bg-color) 55%, #020010 100%);
  color: var(--text-color);
}

.site-header {
  background: var(--nav-bg);
}

.hero-card {
  background: linear-gradient(135deg, var(--card-bg), rgba(0,0,0,0.7));
}

.btn.primary {
  background: var(--button-primary);
}

.accent {
  color: var(--accent-color);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background: rgba(3, 1, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.logo {
  margin: 0;
  font-size: 1.4rem;
}

.accent {
  color: var(--accent);
}

.nav a {
  margin-left: 1rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent-soft);
}

main.container {
  padding: 1.5rem 1rem 3rem;
}

/* Pawprints */
.paw {
  position: fixed;
  font-size: 2.4rem;
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.paw-1 { top: 8%; left: 5%; transform: rotate(-20deg); }
.paw-2 { top: 75%; left: 10%; transform: rotate(15deg); }
.paw-3 { top: 20%; right: 8%; transform: rotate(25deg); }
.paw-4 { top: 70%; right: 12%; transform: rotate(-10deg); }

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-text h2 {
  font-size: 2rem;
  margin-top: 0;
}

.hero-text p {
  color: var(--muted);
}

.hero-list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(145deg, var(--card), var(--card-soft));
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Info cards */

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

.info-card {
  background: rgba(17, 12, 84, 0.9);
  padding: 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  background: var(--card-soft);
  color: var(--text);
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #ffa7e4);
  color: #220016;
}

.btn.small {
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
}

.btn:hover {
  filter: brightness(1.06);
}

/* Forms */

.form {
  max-width: 600px;
  margin-top: 1rem;
}

.small-form {
  max-width: 340px;
}

.form-row {
  margin-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
}

.form-row.inline {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

label {
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.6rem;
  background: rgba(0, 0, 40, 0.4);
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
}

/* Calendar */

.day-block {
  background: rgba(14, 9, 74, 0.92);
  border-radius: 1rem;
  padding: 0.75rem 0.9rem 0.9rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.day-block h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.slot-card {
  background: rgba(29, 19, 128, 0.9);
  border-radius: 0.7rem;
  padding: 0.4rem 0.6rem;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.slot-time {
  font-weight: 600;
  font-size: 0.9rem;
}

.slot-booked {
  opacity: 0.6;
}

.badge {
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.75rem;
}

.badge.booked {
  background: rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.badge.available {
  background: rgba(62, 207, 142, 0.2);
  color: var(--success);
}

.badge.unavailable {
  background: rgba(255, 204, 51, 0.18);
  color: var(--warning);
}

/* Table */

.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.table th,
.table td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

/* Flash messages */

.flash-wrapper {
  margin-bottom: 1rem;
}

.flash {
  padding: 0.5rem 0.75rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.flash-success { background: rgba(62, 207, 142, 0.18); }
.flash-danger  { background: rgba(255, 77, 77, 0.25); }
.flash-warning { background: rgba(255, 204, 51, 0.22); }
.flash-info    { background: rgba(146, 185, 255, 0.2); }

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0 2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.gallery {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery h2 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.gallery-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.gallery-frame {
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 640px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.under-construction {
    color: #ff5e8a;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 100, 150, 0.8);
    animation: pulseFlash 1.2s infinite alternate ease-in-out;
}

@keyframes pulseFlash {
    0% {
        opacity: 0.3;
        transform: scale(0.98);
        text-shadow: 0 0 5px rgba(255, 100, 150, 0.4);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
        text-shadow: 0 0 18px rgba(255, 100, 150, 1);
    }
}
