/* styles.css */

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff7f9;
  color: #333;
}

header {
  background: #f68cb3;
  padding: 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
  color: #fff;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.carousel-img {
  width: 100%;
  max-width: 400px;
  height: 250px;       /* Set a fixed height for consistent cropping */
  object-fit: cover;   /* Fill container, crop excess */
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 1rem;
}

.carousel {
  position: relative;
  width: 95%;
  margin: 2rem auto;
  overflow-x: auto;
  border-radius: 10px;
  background: #ffe9ef;
  padding: 2rem 1rem;
}




.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: #f68cb3;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.3rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

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

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 80%;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-align: center;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 650px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-align: center;
}


.close {
  color: #aaa;
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.feedbacks {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.feedback-entry {
  background: #ffe3ec;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-style: italic;
}

.contact {
  padding: 2rem;
  max-width: 600px;
  margin: auto;
}

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

.contact input,
.contact textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact button {
  background: #f68cb3;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .carousel-track {
    flex-direction: column;
    align-items: center;
  }

  .carousel-btn {
    display: none;
  }
}

.site-footer {
  background-color: #f68cb3;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-locations h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #fff;
}

.footer-locations p,
.footer-contact p {
  margin: 0.5rem auto;
  max-width: 900px;
  line-height: 1.6;
}

.footer-contact a {
  color: white;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-locations p {
    font-size: 0.85rem;
  }

  .footer-contact p {
    font-size: 0.85rem;
  }
}

