html {
  scroll-behavior: smooth;
}

:root {
  --primary: #5a2a83;        /* Deep purple */
  --accent1: #f1f0f9;        /* Light lavender gray */
  --accent2: #f9d6e5;        /* Muted coral pink */
  --accent3: #aac8e4;        /* Soft light blue */
  --bg: #ffffff;             /* Neutral white background */
  --text: #111111;           /* Neutral dark text */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--accent);
}
nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s;
}
nav a:hover {
  color: var(--primary);
}
.hero {
  padding: 5rem 2rem;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.button {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}
.button:hover {
  background: #421d60;
}
.logo-strip {
  overflow: hidden;
  background: #f7f7f7;
  padding: 1.5rem 0;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scrollInfinite 70s linear infinite;
}

.logo-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin: 0;
  padding: 0;
  box-shadow: none !important;
  filter: none !important;
  transition: none !important;
}


.logo-set {
  display: flex;
  gap: 3rem; /* adjust spacing between logos */
}

.logo-track img {
  height: 90px;
  object-fit: contain;
}
  
@keyframes scrollInfinite {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



.site-footer {
  background-color: #f3f3f3;
  color: #333;
  padding: 3rem 2rem;
  font-size: 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.footer-left h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.footer-left p {
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-left a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-icons a {
  font-size: 1.4rem;
  margin-right: 1.2rem;
  color: #333;
  transition: color 0.3s;
}

.footer-icons a:hover {
  color: var(--primary);
}

.footer-right .back-to-top {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 2px solid #333;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.footer-right .back-to-top:hover {
  background-color: #333;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}


.about {
  background: var(--accent1);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  gap: 2rem;
  align-items: center;
}

.profile-pic {
  width: 400px;
  height: 400px;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
}

.about-text .button {
  background: var(--accent2);
  color: var(--text);
  border-radius: 30px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: background 0.3s;
}

.about-text .button:hover {
  background: var(--accent3);
}

.gallery {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

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


/* --- Gallery grid (keeps your layout) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* Optional: same-size tiles; comment out if you want natural heights */
.gallery-item { aspect-ratio: 4 / 3; }
.gallery-item--large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }

/* --- Link becomes the hover container --- */
.gallery-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

/* Image fits inside without cropping */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* prevent cropping */
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
  background: #f7f7f9;       /* subtle backdrop behind transparent PNGs */
}

/* Dim layer on hover */
.gallery-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

/* Title overlay pulled from data-title */
.gallery-item a::after {
  content: attr(data-title);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(to top, rgba(17,17,17,0.6), rgba(17,17,17,0));
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

/* Hover state */
.gallery-item a:hover::before { opacity: 1; }
.gallery-item a:hover::after  { opacity: 1; transform: translateY(0); }
.gallery-item a:hover img     { opacity: 0.9; transform: scale(1.02); }

/* Nice rounded corners + shadow like the rest of your site */
.gallery-item,
.gallery-item img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


/* --- GLightbox caption overrides --- */

/* Position the caption above the bottom edge */
.glightbox-clean .gdesc-inner {
  background: rgba(17, 17, 17, 0.6); /* semi-transparent dark background */
  padding: 0.75rem 1rem;
  border-radius: 8px;
  max-width: 85%;
  margin: 0 auto 1rem auto; /* center and space from bottom */
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

/* Remove excessive white box look */
.glightbox-desc {
  background: none !important;
  box-shadow: none !important;
}

/* Smooth fade-in */
.gdesc-inner {
  animation: fadeInCaption 0.3s ease;
}

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

/* ---------- Floating caption overlay ---------- */
.glightbox-container.pd-skin .gdesc {           /* the caption wrapper */
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: calc(100% - 80px);                     /* breathing room at edges */
  pointer-events: none;                          /* clicks pass through */
  background: transparent !important;            /* remove default bar */
  box-shadow: none !important;
}

.glightbox-container.pd-skin .gdesc-inner {     /* the pill itself */
  display: inline-block;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.55);           /* semi‑transparent */
  color: #fff;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(2px);                    /* subtle glassiness */
  pointer-events: auto;                          /* allow text selection if needed */
  animation: pd-caption-in 220ms ease-out;
}

/* Tighter layout for portrait images so the pill doesn’t overlap too much */
.glightbox-container.pd-skin .gslide-image img {
  border-radius: 14px;                           /* match your rounded look */
}

/* Caption fade/slide */
@keyframes pd-caption-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Mobile fallback: convert to compact bar ---------- */
@media (max-width: 640px) {
  .glightbox-container.pd-skin .gdesc {
    position: static;
    transform: none;
    width: 100%;
    padding: 8px 16px;
  }
  .glightbox-container.pd-skin .gdesc-inner {
    width: 100%;
    max-width: none;
    border-radius: 10px;
    margin-top: 8px;
  }
}


