/* ===========================
   Slideshow Styles
   =========================== */

/* Gallery SEO Text */
.gallery-seo-text {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.gallery-seo-text .container {
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-seo-text p {
  color: #6e6456;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0 auto;
  background: none;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(201, 152, 62, 0.1);
  overflow: hidden;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #c9983e;
  border: 2px solid #c9983e;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(201, 152, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border 0.2s;
  z-index: 2;
  opacity: 0.92;
}

.slide-btn:hover {
  background: #c9983e;
  color: #fff;
  border-color: #e8b85c;
  opacity: 1;
}

.slide-btn.prev {
  left: 18px;
}

.slide-btn.next {
  right: 18px;
}

/* ===========================
   Gallery Page Styles
   =========================== */

.gallery-section {
  padding: 60px 0 80px;
  background: #eceeef;
}

/* Gallery Filter */

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #c9983e;
  background: white;
  color: #c9983e;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #c9983e, #e8b85c);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 152, 62, 0.3);
  border-color: #e8b85c;
}

/* ===========================
   Gallery Grid Items
   =========================== */

.gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(201, 152, 62, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #f5e6d3;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(232, 184, 92, 0.2);
  border-color: #f5e6d3;
}

.gallery-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.15);
}

/* ===========================
   Placeholder Images
   =========================== */

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9983e, #e8b85c);
  color: white;
  transition: all 0.3s ease;
}

.placeholder-image span {
  display: none;
}

.placeholder-image p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* Category Colors */

.breakfast-img {
  background: linear-gradient(135deg, #1abc9c, #48c9b0);
}

.lunch-img {
  background: linear-gradient(135deg, #16a085, #138d75);
}

.dinner-img {
  background: linear-gradient(135deg, #117a65, #0e6655);
}

.event-img {
  background: linear-gradient(135deg, #ec407a, #e91e63);
}

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

/* ===========================
   Gallery Caption
   =========================== */

.gallery-caption {
  padding: 20px;
  text-align: center;
}

.gallery-caption h3 {
  color: #333;
  font-size: 1.2rem;
  margin: 0;
}

/* ===========================
   CTA Section
   =========================== */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f766e 0%, #16a085 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 800;
  background: transparent !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
  color: #ffffff;
  font-weight: 500;
  background: transparent !important;
}

/* Responsive Styles */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-section ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 0;
    justify-items: center;
    padding-left: 0;
    margin: 0;
  }
  .footer-section ul li {
    list-style: none;
    margin: 0;
    text-align: center;
    padding: 0;
  }
  .footer-section ul li a {
    display: block;
    padding: 6px 2px;
    font-size: 1em;
    word-break: break-word;
  }
}
