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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #f4f3f1;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

/* Header */
header {
  width: 100%;
  background-color: #F7F5ED;
  padding: 20px 0;
  overflow: auto;
  border-bottom: 2px solid #e0e0e0;
}

.header-content {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  width: 150px;
  height: 150px;
  display: block;
}

.welcome-message {
  text-align: right;
}

.welcome-message h1 {
  font-family: Georgia, serif;
  font-weight: normal;
  color: #2c2c2c;
  margin-bottom: 10px;
  line-height: 1.2;
}

.welcome-tagline {
  color: #555;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

/* Contact Bar */
.contact-bar {
  background-color: #ddeff8;
  padding: 15px 0;
  width: 100%;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-bar span{
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-style: normal;
  padding: 0 5px;
  flex-wrap: wrap;
}

.contact-bar em {
  text-align: center;
  font-style: normal;
}


/* Hero Section */
.hero {
  padding: 40px 10px;
  border-bottom: 1px solid #d0d0d0;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  text-align: center;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-content .lead {
  font-size: 1.3em;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-content p {
  font-size: 1.1em;
  color: #444;
  line-height: 1.8;
  margin: 15px 0;
}

/* Hours and map section */
.hours-and-map {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.opening-hours-container {
  flex: 1;
  min-width: 300px;
}

.opening-hours-container h3,
.map-container h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: normal;
  color: #2c2c2c;
  font-family: Georgia, serif;
}

#opening-hours {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#opening-hours li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

#opening-hours li:last-child {
  border-bottom: none;
}

#opening-hours .day {
  font-weight: bold;
  display: inline-block;
  width: 120px;
}

#opening-hours.loading {
  text-align: center;
  color: #666;
}

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

.map-container iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Main content */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Section Styling */

.gallery-section {
  margin: 10px 0;
  padding: 0px 0;
}

.hours-and-map-section {
  margin-top: 0px;
  padding: 0px 0;
}

.wrapper p {
  margin: 15px 0;
  line-height: 1.6;
}

/* Photo gallery */
#photos {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 1200px;
}

.photo-item {
  flex: 1 1 300px;
  max-width: 450px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
}



