body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #000;
  color: #fff;
}

p {font-size: 14px;}

h1 {
  font-size: 28px;
  margin-top: 20px;

}

h2 {
  font-size: 22px;
  margin-top: 30px;
  text-align: center;
  color: #ffffff;
}

.header {
  height: 30px;
  background: url('_media/header.png') repeat-x;
}

.content {
  padding: 20px;
  max-width: 960px;
  margin: auto;
}

/* ===== TOP INFO FLEX LAYOUT ===== */
.top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  gap: 10px;
}

.facebook-link {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.logo-link {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact {
  flex: 1;
  color: #0e76bc;
  font-weight: bold;
  text-align: right;
}

.facebook-logo {
  width: 40px;
  height: auto;
}

.logo {
  max-width: 150px;
  height: auto;
}

.phone-number {
  font-size: 1.2em;
  color: #0e76bc;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.4;
}

/* ===== PLATE TAGLINE ===== */
.plate {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: 15px 0;
}

.highlight-plate {
  font-size: 22px;
  font-style: italic;
  color: #ffffff;
  background-color: #000;
  padding: 15px 25px;
  border-radius: 10px;
  display: block;
  margin: 30px auto;
  text-shadow: 1px 1px 2px #000;
  max-width: 700px;
  text-align: center;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.nav a {
  color: #000;
  background: #fff;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.nav a:hover {
  background: #0e76bc;
  color: #fff;
}

/* ===== BOOK NOW BUTTON ===== */
.booking {
  text-align: center;
  margin: 30px 0;
}

.booking-button {
  background: #0e76bc;
  color: white;
  padding: 18px 60px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  display: inline-block;
  min-width: 200px;
}

.booking-button:hover {
  background: #fff;
  color: #0e76bc;
  border: 2px solid #0e76bc;
}

/* ===== SLIDER ===== */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 40px auto;
  overflow: hidden;
}

.slider-image {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
  display: block;
}


/* ===== ABOUT PAGE CUSTOM STYLES ===== */

.about-wrapper {
  overflow: hidden;
}

.about-image {
  float: left;

  height: auto;
  border-radius: 5px;
  margin: 0 20px 20px 0;
}

.hours {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  margin: 40px auto 20px auto;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(14, 118, 188, 0.3);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  font-size: 16px;
  line-height: 1.6;
}

.hours-grid div {
  color: #fff;
}


/* ===== SERVICES PAGE STYLES ===== */

.services-intro {
  overflow: hidden;
  margin-bottom: 30px;
}

.tabs {
  text-align: center;
  margin-bottom: 30px;
}

.tabs button {
  background-color: #aaaaaa;
  border: none;
  color: white;
  padding: 10px 20px;
  margin: 0 5px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.tabs button:hover {
  background-color: #fff;
  color: #0e76bc;
  border: 2px solid #0e76bc;
}

.services-section {
  margin-bottom: 40px;
}

.services-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 20px auto;
}

.services-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #111;
  margin-bottom: 5px;
  border-radius: 5px;
}

.services-list li span:last-child {
  color: #0e76bc;
  font-weight: bold;
}

/* reuse about-image style */
.about-image {
  float: left;
  width: 300px;
  border-radius: 5px;
  margin: 0 20px 20px 0;
  height: auto;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .facebook-logo {
    width: 30px;
  }

  .logo {
    max-width: 120px;
  }

  .phone-number {
    font-size: 1em;
  }

  .booking-button {
    font-size: 18px;
    padding: 15px 40px;
    min-width: unset;
    width: 60%;
  }

  .highlight-plate {
    font-size: 18px;
    padding: 10px 15px;
  }

  .top-info {
    flex-wrap: nowrap;
    gap: 0;
  }

  .facebook-link,
  .logo-link,
  .contact {
    flex: 1;
  }

  .contact {
    text-align: right;
  }
  
    .about-image {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    width: 80%;
   
  }

  .hours {
    margin-left: 10px;
    margin-right: 10px;
  }
  
    .services-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .services-list li span {
    margin: 4px 0;
  }
  
  
}
