/* Body text - clean and readable */
body {
  font-family: 'Source Sans Pro', Arial, sans-serif; /* fallback to system sans-serif */
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

/* Headings using Goudy Old Style */
h1, h2, h3, h4, h5, h6, nav {
  font-family: 'ltc-goudy-oldstyle-pro', serif; /* Adobe font */
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: #111;
}

p, .carousel-caption-item, .btn, .btn-group {
  font-family: roboto, sans-serif;
  font-style: normal;
  font-weight: 200;
}

a {
  font-family: roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #007aff !important;
}

.nav-link, .nav-link.active {
  font-family: roboto, sans-serif;
  font-style: normal;
  font-weight: 200;
}

/* Dark background for header */
.navbar {
  background: linear-gradient(90deg, #0a0a0a 0%, #1e1e1e 50%, #2a2a2a 100%);
  padding: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

footer {
  background: linear-gradient(90deg, #000000 0%, #202020 50%, #1a1a1a 100%);
  padding: 1rem;
  text-align: center;
}

a, .navbar a, footer a {
  position: relative;
  text-decoration: none;
  color: inherit;
}

a::after, .navbar a::after, footer a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px; 
  width: 0;
  height: 2px; 
  background: currentColor;
  transition: width 0.3s ease;
}

a:hover::after, .navbar a:hover::after, footer a:hover::after {
  width: 100%;
}

/* Buttons (global) */
button,
.btn {
  background-color: #fff;
  color: transparent;
  background-image: linear-gradient(90deg, #3b3b3b 0%, #1e1e1e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border: black;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
}

button.active,
.btn.active {
  color: #fff;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #fff;
  transform: translateY(1px);
}

/* Navbar link colors */
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.55) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: rgba(255, 255, 255, 1) !important;
}

.navbar-brand {
  color: #fff !important;
}

/* Primary buttons */
button.btn-primary {
  background-color: #6c63ff;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
}

button.btn-primary:hover {
  background-color: #574bff;
}

/* Carousel container styling */
#featuredCarousel {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1rem;
}

/* Carousel captions below */
.carousel-captions {
  text-align: center;
}

.carousel-caption-item {
  display: none;
}

.carousel-caption-item.active {
  display: block;
}

.carousel-title {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.carousel-description {
  font-size: 1rem;
  margin-bottom: 0;
  color: #666;
}

.learn-more-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.learn-more-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Gallery Styles */
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.gallery-card {
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card .card {
  transition: all 0.3s ease;
  border-radius: 0.75rem;
}

.gallery-card:hover .card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-item:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Modal styling */
.modal-content {
  border: none;
}

.modal-body img {
  max-height: 70vh;
  object-fit: contain;
}

/* Lightbox tags styling */
#lightboxTags {
  min-width: 120px;
}

#lightboxTags .badge {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

/* Lightbox navigation arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-nav:hover {
  color: #007aff;
  transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .lightbox-nav {
    display: none;
  }
}

/* Carousel thumbnails */
#featuredCarousel .carousel-indicators {
  gap: 0.75rem;
}

#featuredCarousel .carousel-indicators [data-bs-target] {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  width: auto;
  height: auto;
  opacity: 0.6;
}

#featuredCarousel .carousel-indicators [data-bs-target].active,
#featuredCarousel .carousel-indicators [data-bs-target]:hover {
  opacity: 1;
}

#featuredCarousel .carousel-indicators img {
  display: block;
  width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  #featuredCarousel .carousel-inner img {
    height: auto;
    max-height: 600px;
    object-fit: contain;
  }
  #featuredCarousel .carousel-indicators img {
    width: 120px;
    height: 80px;
  }
}


