/* ================================
   RESET
================================ */
body {
  margin: 0;
  padding: 0;
}

/* ================================
   NAVBAR
================================ */
.jewellery-navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.jewellery-navbar .nav-link {
  color: #222;
  font-weight: 500;
  margin-left: 15px;
}

.jewellery-navbar .nav-link:hover,
.jewellery-navbar .nav-link.active {
  color: #c9a24d; /* gold color */
}

/* ================================
   HERO BANNER
================================ */
#hero-banner {
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional full height banner */
@media (min-width: 768px) {
  .hero-image {
    height: 100vh;
    object-fit: cover;
  }
}

/* ================================
   CATALOGUE SECTION
================================ */

/* ── Catalogue Section ── */
#catalogue { background: #fafaf8; }

.catalogue-header { margin-bottom: 2.5rem; }

.catalogue-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a24d;
  margin-bottom: 0.5rem;
}

.catalogue-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #1c1a18;
  margin-bottom: 0.3rem;
}

.catalogue-subtitle {
  font-size: 0.88rem;
  color: #777;
  margin: 0;
}

.catalogue-rule {
  width: 40px;
  height: 1px;
  background: #c9a24d;
  margin: 1rem auto 0;
}

/* ── Cards ── */
.catalogue-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(201,162,77,.2);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.catalogue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}

/* Image wrapper — clips zoom and positions overlay */
.catalogue-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.catalogue-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.catalogue-card:hover .catalogue-card__img img {
  transform: scale(1.07);
}

/* "Shop Now" overlay */
.catalogue-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.6);
  margin: 14px;
  opacity: 0;
  transition: opacity .3s;
}

.catalogue-card:hover .catalogue-card__overlay { opacity: 1; }

/* Label row */
.catalogue-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(201,162,77,.15);
}

.catalogue-card__body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  color: #1c1a18;
}

.catalogue-card__arrow {
  color: #c9a24d;
  font-size: 1rem;
  transition: transform .25s;
  line-height: 1;
}

.catalogue-card:hover .catalogue-card__arrow { transform: translateX(4px); }


/* ================================
   OUR SHOWROOM SECTION
================================ */

/* ── Showroom Section ── */
#showroom { background: #fafaf8; }

.showroom-header { margin-bottom: 2.5rem; }

.showroom-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a24d;
  margin-bottom: 0.4rem;
}

.showroom-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #1c1a18;
  margin-bottom: 0.25rem;
}

.showroom-subtitle {
  font-size: 0.88rem;
  color: #777;
  margin: 0;
}

.showroom-rule {
  width: 40px;
  height: 1px;
  background: #c9a24d;
  margin: 0.9rem auto 0;
}

/* ── Image with decorative offset border ── */
.showroom-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.showroom-img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(201,162,77,.2);
}

/* The gold offset accent square behind the image */
.showroom-img-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid #c9a24d;
  z-index: -1;
  pointer-events: none;
}

/* ── Info rows ── */
.showroom-info-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: #1c1a18;
  margin-bottom: 1.6rem;
}

.showroom-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.25rem;
}

/* Small gold square icon box */
.showroom-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid rgba(201,162,77,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

.showroom-row-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a24d;
  font-weight: 500;
  margin: 0 0 3px;
}

.showroom-row-val {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
  line-height: 1.7;
}

.showroom-row-val a {
  color: #1c1a18;
  text-decoration: none;
  transition: color .2s;
}

.showroom-row-val a:hover { color: #c9a24d; }

/* ── Reuse .btn-gold from your main stylesheet ── */
.btn-gold {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #c9a24d;
  color: #fff;
  padding: 0.85rem 2.2rem;
  border: 1px solid #c9a24d;
  text-decoration: none;
  transition: background .25s, color .25s;
}

.btn-gold:hover {
  background: transparent;
  color: #c9a24d;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .showroom-img-accent { display: none; }
}


/* ================================
   HIGHLIGHTS SCROLL GALLERY
================================ */
#highlights {
  background-color: #fafafa;
}

/* Masonry Grid */
.masonry-gallery {
  columns: 4;
  column-gap: 16px;
}

/* Each Item */
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.masonry-item img {
  width: 100%;
  height: auto;         /* key: let images keep natural height for masonry effect */
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.masonry-item img:hover {
  transform: scale(1.04);
}

/* Tablet */
@media (max-width: 992px) {
  .masonry-gallery {
    columns: 3;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .masonry-gallery {
    columns: 2;
    column-gap: 10px;
  }
  .masonry-item {
    margin-bottom: 10px;
  }
}


/* =============================
   INSTAGRAM SECTION — BASE
   ============================= */

/* ================================
   SECTION BASE
   ================================ */
#instagram-feed {
  background-color: #fff9f2;
  padding: 70px 0;
}

/* ================================
   SECTION TITLE
   ================================ */
#instagram-feed .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

#instagram-feed .section-subtitle {
  font-size: 1rem;
  color: #999;
  margin-bottom: 14px;
}

/* ================================
   PROFILE HANDLE
   ================================ */
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #c9a24d;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}

.insta-handle:hover {
  color: #a07830;
}

.insta-profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c9a24d;
}

/* ================================
   MANSION GRID
   ================================ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

/* ================================
   EVERY CARD
   ================================ */
.insta-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  background-color: #f0e6d3;   /* placeholder color when no image */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.insta-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

/* ================================
   IMAGE INSIDE EVERY CARD
   ================================ */
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.insta-item:hover img {
  transform: scale(1.07);
}

/* ================================
   HOVER OVERLAY
   ================================ */
.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(201, 162, 77, 0.50) 0%,
    rgba(0, 0, 0, 0.60) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 14px;
}

.insta-overlay i {
  font-size: 2rem;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.insta-overlay span {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* ================================
   BADGE (Featured / New)
   ================================ */
.insta-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c9a24d;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ================================
   SPECIAL SIZES
   ================================ */

/* Tall — spans 2 rows */
.insta-featured {
  grid-row: span 2;
}

/* Wide — spans 2 columns */
.insta-wide {
  grid-column: span 2;
}

/* ================================
   FOLLOW BUTTON
   ================================ */
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 38px;
  background: linear-gradient(135deg, #c9a24d 0%, #a07830 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(201, 162, 77, 0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-insta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 162, 77, 0.55);
  color: #fff;
}

/* ================================
   RESPONSIVE — TABLET
   ================================ */
@media (max-width: 992px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}

/* ================================
   RESPONSIVE — MOBILE
   ================================ */
@media (max-width: 576px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 165px;
    gap: 8px;
  }

  .insta-featured {
    grid-row: span 1;
  }

  .insta-wide {
    grid-column: span 2;
  }

  .insta-overlay span {
    display: none;
  }

  .insta-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }
}
/* ================================
  exhibition starts
================================ */


/* ── Exhibition Section ── */

  /* ── Exhibition Section ── */
#exhibition {
  background: #111;
  padding: 90px 0 70px;
  overflow: hidden;
}

/* Header */
.exhibition-header {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

.exh-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #c9a24d;
  margin-bottom: 0.6rem;
}

.exh-rule {
  width: 40px;
  height: 1px;
  background: #c9a24d;
  margin: 0 auto 1rem;
  opacity: 0.6;
}

.exh-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 0.9rem;
}

.exh-title em {
  font-style: italic;
  color: #e2c060;
}

.exh-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 auto;
  max-width: 420px;
}

/* ── Grid ── */
.exh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 3px;
  padding: 0 3px;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

/* ── Tile ── */
.exh-item {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 3 / 4;
}

/* Featured tile spans 2 rows */
.exh-item--featured {
  grid-row: span 2;
  aspect-ratio: unset;
}

/* Image */
.exh-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.exh-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.exh-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exh-item:hover .exh-overlay {
  opacity: 1;
}

.exh-likes {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}

.exh-caption {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin: 0;
  max-width: 180px;
}

/* Gold bottom border on hover */
.exh-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c9a24d;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.exh-item:hover::after {
  transform: scaleX(1);
}

/* ── Instagram CTA ── */
.exh-cta {
  text-align: center;
  padding: 0 1.5rem;
}

.exh-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111;
  background: #c9a24d;
  padding: 0.85rem 2rem;
  border: 1px solid #c9a24d;
  text-decoration: none;
  transition: background 0.28s ease, color 0.28s ease;
}

.exh-ig-btn:hover {
  background: transparent;
  color: #c9a24d;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .exh-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
  }
}

@media (max-width: 600px) {
  #exhibition {
    padding: 60px 0 50px;
  }

  .exh-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    padding: 0 2px;
  }

  .exh-item--featured {
    grid-row: span 1;
    aspect-ratio: 3 / 4;
  }

  .exh-caption {
    display: none;
  }
}


/* ================================
  exhibition starts
================================ */







/* ================================
   FOOTER
================================ */

#footer {
  background-color: #111;
  color: #ccc;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #c9a24d; /* gold accent */
}

#footer a {
  color: #c9a24d;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #aaa;
}


/* Category Title Bar */


/* Category Title Bar */
.category-title-bar {
  padding: 60px 0;
  background: #000000; /* Pure black background */
}

/* Gold Gradient Title */
.category-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;

  background: linear-gradient(
    90deg,
    #b8860b,
    #ffd700,
    #fff1a8,
    #ffd700,
    #b8860b
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.category-subtitle {
  font-size: 1.1rem;
  color: #e5e5e5;
}

/* Responsive */
@media (max-width: 768px) {
  .category-title {
    font-size: 2rem;
  }

  .category-subtitle {
    font-size: 1rem;
  }
}


/* Product Section */
.product-section {
  padding: 60px 0;
  background: #f5eded;
}

/* Product Card */
/* Product Card */
.product-card {
  position: relative;
  background: linear-gradient(145deg, #b09945, #9c8538);
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  height: 100%;
  overflow: hidden;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

/* 3D Lift + Glow */
.product-card:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow:
    0 25px 45px rgba(255, 215, 0, 0.35),
    0 0 20px rgba(255, 215, 0, 0.25);
}

/* Shine Effect */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-25deg);
}

.product-card:hover::before {
  left: 130%;
  transition: left 0.8s ease;
}

/* Image Wrapper */
.product-img {
  overflow: hidden;
  border-radius: 12px;
}

/* Image Animation */
.product-img img {
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover img {
  transform: scale(1.15);
}

/* Product Name */
.product-name {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(
    90deg,
    #ffd700,
    #fff2b0,
    #ffd700
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile */
@media (max-width: 576px) {
  .product-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}
.product-section {
  padding: 60px 0;
  background: #f5eded;
}

/* Product Card */
.product-card {
  position: relative;
  background: #000000; /* BLACK BOX */
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  height: 100%;
  overflow: hidden;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

/* 3D Lift + Gold Glow */
.product-card:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow:
    0 25px 45px rgba(255, 215, 0, 0.45),
    0 0 25px rgba(255, 215, 0, 0.35);
}

/* Gold Shine Effect */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 0, 0.35),
    transparent
  );
  transform: skewX(-25deg);
}

.product-card:hover::before {
  left: 130%;
  transition: left 0.8s ease;
}

/* Image Wrapper */
.product-img {
  overflow: hidden;
  border-radius: 12px;
}

/* Image Animation */
.product-img img {
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover img {
  transform: scale(1.15);
}

/* Product Name (Gold Gradient Text) */
.product-name {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(
    90deg,
    #b8860b,
    #ffd700,
    #fff2b0,
    #ffd700,
    #b8860b
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile */
@media (max-width: 576px) {
  .product-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}


<!-- Instagram Feed Section -->


/* Instagram Section */
.instagram-section {
  padding: 70px 0;
  background: #f7f5f2; /* Off-white */
}

/* Title */
.insta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

.insta-subtitle {
  font-size: 1rem;
  color: #777;
}

/* Card */
.insta-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease;
}

/* Image */
.insta-card img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
}

/* Hover Effect */
.insta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.insta-card:hover img {
  transform: scale(1.12);
  filter: brightness(0.85);
}

/* Soft overlay */
.insta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insta-card:hover::after {
  opacity: 1;
}

/* Mobile */
@media (max-width: 576px) {
  .insta-title {
    font-size: 1.6rem;
  }
}


.insta-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.insta-link:hover {
  color: #c9a24d; /* subtle gold accent */
}

.spacer-sm {
  height: 16px; /* between 10–20px */
}


/* Background Gradient */
.about-section {
  background: linear-gradient(135deg, #d4af37, #ffffff);
}

/* Title Styling */
.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
}

/* Paragraph */
.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* Image Styling */
.about-img {
  transition: 0.4s;
}

.about-img:hover {
  transform: scale(1.05);
}