* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: url("images/background.jpg") center/cover;
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-title {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  color: #ddd;
  filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 1));
}

.logo-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(20px 20px 5px rgba(0, 0, 0, 0.3));
}

.hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  display: block;
}

.content {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
  padding: 3rem ;
  text-align: center;
  border-radius: 5px;
  margin: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.welcome-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #fff;
}

.welcome-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.welcome-section, .hours-section, .contact-section {
  margin: 2rem 0;
}

.hours-section h2, .contact-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.info-section {
  margin: 2rem 0;
  padding: 2rem;
  background-color: rgba(249, 249, 249, 0.2);
  border-radius: 5px;
}

.opening-hours {
  font-size: 1.1rem;
  margin: 1rem 0;
}

.contact-info {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
  margin-top: 2rem;
  color: #FF2A7F;
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 1.0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #eee;
}

.contact-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.map-container {
  flex: 1;
  max-width: 300px;
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.contact-details {
  flex: 1;
}

.contact-info h3 {
  margin-bottom: 0,5rem;
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info a {
    color: #FF2A7F;
  /* text-shadow: 3px 3px 2px rgba(255, 255, 255, 1.0); */
  text-decoration: underline;
}

.footer {
  display: none;
}

@media (max-width: 768px) {
  .header-title {
    font-size: 1rem;
  }

  .welcome-text {
    font-size: 1rem;
  }

  .info-section {
    padding: 1rem;
  }

  .contact-content {
    flex-direction: column;
    gap: 1rem;
  }

  .map-container {
    max-width: 100%;
  }
}
