/* Global resets and basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Hero section */
header.hero {
  position: relative;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

header.hero .hero-image {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  filter: brightness(60%);
}

header.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

header.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

header.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

a.btn {
  background-color: #e07a5f;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

a.btn:hover {
  background-color: #d25a3b;
}

/* Generic section styling */
section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e07a5f;
  text-align: center;
}

/* About section */
.about p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Events section */
.events .event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.event-card {
  background-color: #fafafa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-card h3 {
  margin-bottom: 0.3rem;
  color: #3d405b;
}

.event-card .price {
  font-weight: bold;
  color: #e07a5f;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Menu section */
.menu {
  text-align: center;
}

.menu .menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  margin-bottom: 0.5rem;
  color: #3d405b;
}

.menu-category img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.menu-category ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.menu-category li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Contact section */
.contact ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.contact ul li {
  margin-bottom: 0.5rem;
}

.contact a {
  color: #e07a5f;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #3d405b;
  color: #ffffff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  header.hero h1 {
    font-size: 2.3rem;
  }
  header.hero .hero-image {
    height: 50vh;
  }
  a.btn {
    padding: 0.6rem 1.2rem;
  }
}
