/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font Face Definition */
@font-face {
  font-family: 'CustomFont';
  src: url('fonts/Francesco-Regular.otf') format('truetype'); /* Use the correct path to your font file */
  font-weight: normal;
  font-style: normal;
}

/* Apply the font */
body {
  font-family: 'CustomFont', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.5rem;
}

/* Section Styling */
section {
  padding: 3rem;
  text-align: center;
}

/* Event Info Styling */
.event {
  margin: 1em;
}

.event-info {
  background: #f4f4f4;
}

.event-info h2, .contact-info h2, .opening-hours h2 {
  margin-bottom: 2rem;
}

.event h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Contact Info Styling */
.contact-info {
  background: #fff;
  padding: 2rem;
  border-top: 1px solid #ddd;
}

.social-media {
  margin-top: 1rem;
}

.social-media a {
  color: #333;
  text-decoration: none;
  font-size: 1.2rem;
}

.social-media a i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

.social-media a:hover {
  color: #ff4081;
}

/* Opening Hours Styling */
.opening-hours {
  background: #f4f4f4;
  padding: 2rem;
}

.opening-hours ul {
  list-style: none;
}

.opening-hours li {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}


/* Media Queries for Responsiveness */
@media only screen and (max-width: 768px) {
  .hero h1 {
      font-size: 2.5rem;
  }

  .hero p {
      font-size: 1.2rem;
  }

  section {
      padding: 2rem;
  }
}
