body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

header {
  background: #000;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}

nav {
  background: #222;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.8rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

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

section {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.services,
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  display: block;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing .card h3 {
  margin-top: 0;
  color: #000;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.contact-info {
  text-align: center;
  margin-top: 1rem;
}

.contact-info a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
.availability {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.availability table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.availability th,
.availability td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.availability th {
  background: #000;
  color: #fff;
  font-size: 1.1rem;
}

.availability tr:last-child td {
  border-bottom: none;
}

.availability tr:nth-child(even) {
  background: #f8f9fa;
}
.booking-container, .admin-container {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input, select, textarea, button {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.3rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background: #000;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  transition: 0.2s;
}

button:hover {
  background: #333;
}
nav {
  text-align:center;
  margin:1rem 0;
}
nav a {
  margin:0 0.5rem;
  text-decoration:none;
  color:#0078ff;
}
.card {
  border:1px solid #ccc;
  border-radius:10px;
  padding:1rem;
  transition:transform .2s;
  cursor:pointer;
}
.card:hover { transform:scale(1.05); }
.form-section { max-width:500px; margin:auto; padding:1rem; }
form { display:flex; flex-direction:column; gap:.5rem; }
button { padding:.6rem; border:none; border-radius:6px; background:#0078ff; color:white; cursor:pointer; }
button:hover { background:#005fd1; }
textarea { width:100%; font-family:monospace; }
