/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
  background: #8A5D3B;
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 40px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.shop-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.shop-status-badge.open {
  background: rgba(76, 175, 80, 0.3);
}

.shop-status-badge.closed {
  background: rgba(244, 67, 54, 0.3);
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.status-indicator.open {
  background: #4CAF50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
}

.status-indicator.closed {
  background: #F44336;
  box-shadow: 0 0 10px rgba(244, 67, 54, 0.6);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Home Header */
.home-header {
  background: #BCCEA0;
  border-radius: 20px;
  padding: 20px 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.home-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.dashboard-access-btn {
  background: rgba(139, 94, 60, 0.1);
  border: 2px solid #8B5E3C;
  color: #8B5E3C;
}

.dashboard-access-btn:hover {
  background: #8B5E3C;
  color: #FFFFFF;
}

/* Sections */
.home-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #8B5E3C;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 4px;
  background: #BCCEA0;
  border-radius: 2px;
}

/* About Section */
.about-section {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #212121;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

/* Gallery Carousel Section */
.gallery-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.gallery-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: none;
}

.gallery-slide.active {
  opacity: 1;
  display: block;
}

.gallery-slide .placeholder-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  font-size: 24px;
}

.gallery-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.gallery-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  color: #8B5E3C;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-nav-btn:hover {
  background: #8B5E3C;
  color: #FFFFFF;
  transform: scale(1.1);
}

.gallery-nav-btn.prev {
  right: 20px;
}

.gallery-nav-btn.next {
  left: 20px;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 20px 20px;
}

.gallery-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #8B5E3C;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.gallery-indicator:hover {
  background: rgba(139, 94, 60, 0.5);
  transform: scale(1.2);
}

.gallery-indicator.active {
  background: #8B5E3C;
  transform: scale(1.3);
}

/* Gallery Section */
.gallery-section {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Contact Section */
.contact-section {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info,
.hours-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.instagram-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.instagram-icon-link:hover {
  transform: scale(1.1);
}

.instagram-icon {
  width: 32px;
  height: 32px;
  color: #8B5E3C;
  transition: color 0.3s ease;
}

.instagram-icon-link:hover .instagram-icon {
  color: #E4405F;
}

.contact-details h3 {
  font-size: 20px;
  font-weight: 600;
  color: #8B5E3C;
  margin-bottom: 8px;
}

.contact-details a {
  font-size: 18px;
  color: #212121;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #8B5E3C;
}

.contact-details p {
  font-size: 18px;
  color: #212121;
  margin: 0;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #F5F5F5;
  border-radius: 10px;
  border-right: 4px solid #BCCEA0;
}

.hours-item .day {
  font-size: 18px;
  font-weight: 600;
  color: #212121;
}

.hours-item .time {
  font-size: 18px;
  color: #8B5E3C;
  font-weight: 600;
}

/* Placeholder Images */
.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E0E0E0 0%, #BDBDBD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #757575;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
}

.placeholder-image.small {
  font-size: 14px;
  min-height: 150px;
}

/* Footer */
.home-footer {
  background: #8B5E3C;
  color: #FFFFFF;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  border-radius: 20px 20px 0 0;
}

.home-footer p {
  margin: 0;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-slide .placeholder-image,
  .gallery-slide img {
    height: 400px;
  }

  .home-header .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-section,
  .gallery-section,
  .contact-section {
    padding: 30px 20px;
  }

  .gallery-slide .placeholder-image,
  .gallery-slide img {
    height: 300px;
  }
  
  .gallery-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}
