/* Eid ul-Adha 2025 Theme - Warm, soft, and inviting */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff9f4;
  color: #333;
  margin: 0;
  padding: 0;
}

.site-header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #fff3e6;
  color: #4d2c19;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.25rem;
  color: #7a4e36;
}

.content-section {
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  border-top: 1px solid #f0e0d6;
}

ul {
  padding-left: 1.5rem;
  line-height: 1.7;
}

.cta-section {
  background-color: #fef0e7;
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 800px;
}

.cta-button {
  display: inline-block;
  background-color: #e3a768;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 1rem;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #c98547;
}

.site-footer {
  background-color: #f9ede2;
  color: #5c3b2b;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: #a86c4b;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Eid Icons as section embellishments (optional) */
.content-section::before {
  content: '🌙';
  font-size: 2rem;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.cta-section::before {
  content: '🕋';
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

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

/* Navbar Styling */
.navbar {
  background-color: #7a4e36; /* Blue accent color */
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.navbar li {
  display: inline;
}

.navbar a {
  text-decoration: none;
  color: #fff; /* White text */
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ffdd57; /* Yellow hover effect */
}

/* Places Page Styling */
h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #7a4e36; /* Blue accent color */
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555; /* Subtle text color */
}

.items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.item {
  background-color: #fff; /* White background */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px;
  width: 300px;
  text-align: center;
}

.item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #7a4e36; /* Blue accent color */
}

.item-description {
  font-size: 1rem;
  color: #555; /* Subtle text color */
}

.item-images {
  margin-top: 15px;
}

.item-images img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.item-images-carousel {
  position: relative;
}

.carousel-container {
  display: flex;
  overflow: hidden;
}

.carousel-image {
  display: block;
  width: 100%;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

.availability {
  margin-top: 10px;
  font-size: 1rem;
}

.available-yes {
  color: #28a745; /* Green for available */
}

.available-no {
  color: #dc3545; /* Red for not available */
}

/* Button Styling */
button {
  background-color: #7a4e36; /* Blue accent color */
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #6f391d; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .items-container {
    flex-direction: column;
    align-items: center;
  }

  .item {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }
}
