/* Navbar */
.custom-navbar {
  background: linear-gradient(90deg, #f8c6d7, #d8b7f8); /* pink to light purple */
  padding: 0.8rem 1rem;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #4a235a !important; /* deep purple for logo */
  letter-spacing: 1px;
}

.nav-link {
  font-weight: 500;
  color: #4a235a !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #000 !important;
}

.navbar-nav .nav-item {
  margin: 0 0.4rem;
}

.navbar .fab {
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  height: 80vh;
  overflow: hidden;
}
.hero .carousel-item {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero .hero-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,.6);
}
.hero .hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* Categories */
.category-card .card {
  transition: transform 0.3s ease;
}
.category-card .card:hover {
  transform: translateY(-5px);
}

/* Featured Gallery */
.featured-gallery img {
  transition: transform 0.3s ease;
}
.featured-gallery img:hover {
  transform: scale(1.05);
}

/* Why Choose Us */
.why-choose .card {
  border: none;
  background: #fff;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #d8b7f8, #f8c6d7);
}
.footer .social-icons a {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.footer .social-icons a:hover {
  transform: scale(1.2);
  color: #000 !important;
}
/* Mobile Bottom Nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #6c4ef2; /* purple */
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
}

.mobile-bottom-nav .nav-item i {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 3px;
}

.mobile-bottom-nav .nav-item.active {
  color: #fff;
  background: #4527a0;
  border-radius: 10px;
  padding: 4px 0;
}


/* Section Titles */
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5e35b1; /* purple shade */
}
.section-subtitle {
  font-size: 1rem;
  color: #777;
  margin-bottom: 2rem;
}

/* Category Circles */
.category-circle {
  transition: transform 0.3s ease;
}
.category-circle:hover {
  transform: scale(1.05);
}
.category-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #eee;
  transition: border-color 0.3s;
}
.category-circle:hover .category-img {
  border-color: #6c4ef2;
}
.category-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #eee;
  transition: border-color 0.3s, transform 0.3s;
  border-radius: 50%;
}
.category-circle:hover .category-img {
  border-color: #6c4ef2;
  transform: scale(1.05);
}
.category-block h3 {
  color: #333;
}

.gallery-thumb img {
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-thumb img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* WhatsApp Share Button */
.whatsapp-share-btn {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px !important;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-share-btn:hover {
  background-color: #1ead52 !important;
  border-color: #1ead52 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  color: #ffffff !important;
}

.whatsapp-share-btn i {
  font-size: 1rem;
}

/* ===== GALLERY GRID LAYOUTS ===== */

/* HORIZONTAL IMAGES - 5 columns on desktop, 90% width on mobile */
.gallery-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.gallery-item-horizontal {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.gallery-item-horizontal:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

/* VERTICAL IMAGES - Adjusted for portrait orientation */
.gallery-grid-vertical {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.gallery-item-vertical {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.gallery-item-vertical:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

/* Gallery Card - Common styles */
.gallery-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-card a {
  display: block;
  flex: 1;
  overflow: hidden;
  min-height: 200px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-card a:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-button-wrapper {
  padding: 12px;
  text-align: center;
  background: white;
  border-top: 1px solid #e9ecef;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet/iPad */
@media (max-width: 1200px) {
  .gallery-grid-horizontal {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .gallery-grid-vertical {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}

@media (max-width: 992px) {
  .gallery-grid-horizontal {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .gallery-grid-vertical {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

/* Tablet (iPad) */
@media (max-width: 768px) {
  .gallery-grid-horizontal {
    grid-template-columns: 1fr;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .gallery-grid-vertical {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .gallery-card a {
    min-height: 160px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .gallery-grid-horizontal {
    grid-template-columns: 1fr;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }

  .gallery-grid-vertical {
    grid-template-columns: 1fr;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }

  .gallery-card a {
    min-height: 140px;
  }

  .gallery-button-wrapper {
    padding: 8px;
  }

  .whatsapp-share-btn {
    font-size: 0.75rem !important;
    padding: 4px 8px !important;
  }

  .whatsapp-share-btn i {
    font-size: 0.9rem;
    margin-right: 3px;
  }
}

/* Small Phone */
@media (max-width: 360px) {
  .gallery-grid-horizontal {
    width: 90%;
    gap: 8px;
  }

  .gallery-grid-vertical {
    width: 90%;
    gap: 8px;
  }

  .gallery-card a {
    min-height: 120px;
  }
}
