/* General Styling */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #cc0033, #990026);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeInDown 1s ease-out;
}

h1 {
  margin: 0;
  font-size: 2.8rem;
  letter-spacing: 1px;
}

h2 {
  color: #cc0033;
  border-bottom: 2px solid #cc0033;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 1rem;
}

section {
  padding: 2rem 1.5rem;
  max-width: 1000px;
  margin: auto;
  animation: fadeInUp 1s ease both;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #222;
  color: white;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Buttons */
.reserve-button {
  display: inline-block;
  background: linear-gradient(135deg, #cc0000, #a30000); /* Rutgers red gradient */
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.reserve-button:hover {
  background: linear-gradient(135deg, #e00000, #b30000);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
