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

body {
  background-color: floralwhite;
  font-family: Roboto, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: #1b1c1a;
  font-family: Roboto, sans-serif;
}

/* Header and Navigation */
header {
  background-color: floralwhite;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: #1b1c1a;
  text-decoration: none;
}

/* Contact Info Styles */
.contact-info {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1b1c1a;
  text-decoration: none;
  font-weight: bold;
}

.contact-item-text {
  color: #1b1c1a;
  
}

.contact-item span:hover {
  color: #e9630a;
}

.icon {
  width: 20px;
  height: 20px;
}

/* Main Content */
main {
  padding-top: 0
}

/* Banner Section */
.banner-container {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Container for regular content */
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-container {
  padding: 0;
}

.hero-container h1 {
  font-size: 2.5rem;
  text-align: center;
}

.hero-container h3 {
  color: #e9630a;
  font-size: 2.0rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Cards Section */
.service-container {
  padding: 1rem 0;
  text-align: center;
}

.service-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: #fce9d9;
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1;
  text-align: left;
  min-width: 400px;
  min-height: 600px;
  max-width: 560px;
}

.card h2 {
  color: #e9630a;
  margin-bottom: 1rem;
}

.card-content-image{
  width: 100%;
  height: 300px;
}

.card-content-image img {
  border-radius: 8px;
  object-fit: fill;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* Reviews Section */
.reviews-container {
  padding: 1rem 0;
  text-align: center;
}

.reviews-container h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.reviews {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.review-card {
  background: #fce9d9;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(242, 215, 215, 0.1);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

.reviewer-info {
  text-align: left;
}

.reviewer-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.review-text {
  text-align: left;
  color: #666;
  font-style: italic;
  line-height: 1.6;
}

.reviews-suggest-text {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.review-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #e9630a;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.review-button:hover {
  background-color: #1b1c1a;
}

.total-reviews-number {
  font-weight: bold;
  font-size: 1.2rem;
  color: #e9630a;
}

/* Map Section */
.map-section {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  min-height: 400px;
}

.map-container {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 2;
  min-height: 400px;
}

#google-map {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.contact-details {
  flex: 1;
  padding: 1rem;
  background-color: #fce9d9;
  border-radius: 8px;
}

.contact-details h2 {
  margin-bottom: 1.5rem;
  color: #1b1c1a;
}

.address, .telephone, .mail, .contact-hours {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.address .icon {
  width: 24px;
  height: 24px;
  color: #e9630a;
}

.telephone .icon {
  width: 24px;
  height: 24px;
  color: #e9630a;
}

.telephone a {
  color: #1b1c1a;
}

.mail .icon {
  width: 24px;
  height: 24px;
  color: #e9630a;
}

.contact-hours-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-hours {
  border-top: 1px solid #ddd;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.contact-hours .icon {
  width: 24px;
  height: 24px;
  color: #e9630a;
}

.contact-hours h3 {
  margin-bottom: 1rem;
  color: #333;
}

.contact-hours p {
  margin-bottom: 0.5rem;
}

.contact-hours-text-item p span {
  margin-left: 10px;
}

.contact-hours-text-item p:last-child span {
  margin-left: 10px;
}

.emergency {
  margin-top: 1rem;
  color: #4285f4;
  font-weight: bold;
}

.reviews-header {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.reviews-header-item {
  background: #fce9d9;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 360px;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.rating-details {
  text-align: left;
  position: relative;
}

.google-logo {
  font-family: Roboto, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: -3px;
}

.google-blue {
  color: #4285F4;
}

.google-red {
  color: #EA4335;
}

.google-yellow {
  color: #FBBC05;
}

.google-green {
  color: #34A853;
}

.google-icon {
  margin-bottom: 0.5rem;
}

.google-icon svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.rating-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.review-count {
  color: #666;
  font-size: 0.9rem;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* Gallery Styles */
.gallery-container {
  padding: 1rem 0;
  border-radius: 8px;
}

.gallery-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1b1c1a;
  font-size: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-height: 287px;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  right: 35px;
  top: 15px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.modal-close:hover,
.modal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: floralwhite;
  color: #1b1c1a;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .header-container {
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
  }

  .banner-container {
      height: 323px;
  }

  .contact-info {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      text-align: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
  }

  .contact-info {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      text-align: center;
  }

  .contact-item {
      justify-content: center;
  }

  .nav-links {
      margin-top: 1rem;
      flex-direction: column;
  }

  .nav-links li {
      margin: 0.5rem 0;
  }

  .cards {
      flex-direction: column;
  }

  .card {
      min-width: 100%;
  }

  .review-card {
      min-width: 100%;
  }

  .content-container {
      padding: 0 1rem;
  }

  .reviews-container {
      padding: 0;
  }

  .reviews-container h2 {
      font-size: 1.5rem;
      text-align: left;
  }

  .reviews-header-item {
      min-width: 390px;
  }

  .map-section {
      flex-direction: column;
      padding: 0;
  }

  .map-container {
      height: 400px;
      width: 100%;
  }

  .gallery {
      grid-template-columns: repeat(2, 1fr);
  }

  .modal-content {
      max-width: 95%;
  }
  
  .modal {
      padding: 10px;
  }
  
  .modal-close {
      right: 25px;
      top: 10px;
      font-size: 30px;
  }
}

@media (max-width: 1920px) and (min-width: 1024px) {
  .banner-container {
      height: 550px;
  }
}

@media (min-width: 1920px) {
  .banner-container {
      height: 650px;
  }
}

@media (min-width: 1921px) {
  .banner-container {
      height: 700px;
  }
}