/* =======================
   RESET & VARIABLES
======================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

:root {
  --gold-primary: #c9a227;
  --gold-dark: #b8961e;
}

/* =======================
   BASE TYPOGRAPHY
======================= */
body {
  font-family: 'Libre Baskerville', serif;
  background-color: #fffdf8;
  color: #2b2620;
  line-height: 1.8;
}

h1, h2, h3, .navbar-brand {
  font-family: 'Libre Baskerville', serif;
  letter-spacing: 0.9px;
}

/* =======================
   HERO SECTION
======================= */
.hero h1 {
  font-family: "Times New Roman", Times, serif !important;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1.25;
}

.hero p {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.1rem;
  color: #6b5e4a;
  letter-spacing: 0.4px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
}

/* =======================
   NAVBAR
======================= */
.nav-link.active {
  color: var(--gold-primary) !important;
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
  margin-top: 4px;
}

/* =======================
   BUTTONS (LUXURY FINAL)
======================= */

/* Shared CTA behavior */
.btn-call,
.btn-whatsapp {
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

/* GOLD CALL BUTTON */
.btn-call {
  background-color: var(--gold-primary);
  color: #000;

  /* subtle luxury shadow */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.btn-call:hover {
  background-color: var(--gold-dark);

  /* micro lift */
  transform: translateY(-2px);

  /* slightly stronger shadow */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* WHITE WHATSAPP BUTTON */
.btn-whatsapp {
  background-color: #fff;
  color: #000;

  /* subtle luxury shadow */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.btn-whatsapp:hover {
  background-color: #fff;

  /* micro lift */
  transform: translateY(-2px);

  /* slightly stronger shadow */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

/* WhatsApp icon color */
.btn-whatsapp i {
  color: #c9a227;
}

/* =======================
   MOBILE CTA PERFECTION
======================= */
@media (max-width: 768px) {
  .hero .btn-call,
  .hero .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .hero .d-flex {
    gap: 14px;
  }

  /* Disable lift on touch devices */
  .btn-call:hover,
  .btn-whatsapp:hover {
    transform: none;
  }
}


/* =======================
   FULL-WIDTH LUXURY FOOTER
======================= */
.lux-footer {
  background-color: #000;
  color: #e6e6e6;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer-inner {
  padding: 80px 0 35px;
}

/* Left alignment enforced */
.footer-left-align {
  text-align: left;
}

/* Brand */
.footer-brand {
  font-family: "Times New Roman", Times, serif;
  color: var(--gold-primary);
  letter-spacing: 2px;
  font-size: 1.9rem;
  margin-bottom: 15px;
}

/* Section titles */
.footer-title {
  font-family: "Times New Roman", Times, serif;
  color: var(--gold-primary);
  margin-bottom: 22px;
  letter-spacing: 1px;
}

/* Description */
.footer-text {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Links */
.footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #e6e6e6;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.footer-link:hover {
  color: var(--gold-primary);
  transform: translateX(5px);
}

/* Business hours */
.footer-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-item i {
  color: var(--gold-primary);
  margin-top: 3px;
}

/* Divider */
.footer-divider {
  border-color: #333;
  margin: 45px 0 20px;
}

/* Copyright */
.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* =======================
   MOBILE FOOTER
======================= */
@media (max-width: 768px) {
  .footer-left-align {
    text-align: left;
  }

  .footer-link,
  .footer-item {
    justify-content: flex-start;
  }

  .footer-link:hover {
    transform: none;
  }

  .footer-copy {
    text-align: center;
  }
}

/* =======================
   JEWELLERY CARD FINAL
======================= */

.jewel-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.jewel-img {
  width: 100%;
  display: block;
}

/* CTA bar */
.jewel-cta {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 55px;

  background-color: #d6b13c;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.5px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transition: bottom 0.3s ease;
}

/* Desktop hover */
@media (hover: hover) {
  .jewel-card:hover .jewel-cta {
    bottom: 0;
  }
}

/* Mobile tap active */
.jewel-card.active .jewel-cta {
  bottom: 0;
}
/* =======================
   JEWELLERY SLIDER
======================= */

.jewel-slider {
  position: relative;
  overflow: hidden;
  height: 380px;          /* 🔑 FIXED HEIGHT */
  background: #f8f8f8;   /* prevents white flash */
}

.jewel-card {
  height: 420px;
  width: 320px;
  display: flex;
  flex-direction: column;
}
.jewel-img {
  width: 100%;
  height: 100%;          /* 🔑 MATCH CONTAINER */
  object-fit: cover;    /* 🔥 KEY LINE */
  display: none;
}


.jewel-img.active {
  display: block;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow.left {
  left: 8px;
}

.slider-arrow.right {
  right: 8px;
}

/* Show arrows only on hover (desktop) */
@media (hover: hover) {
  .slider-arrow {
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .jewel-card:hover .slider-arrow {
    opacity: 1;
  }
}

/* Always visible on mobile */
@media (hover: none) {
  .slider-arrow {
    opacity: 1;
  }
}

/* =======================
   HERO BACKGROUND SECTION
   (LUXE STYLE)
======================= */

.hero-bg {
  position: relative;
  min-height: 85vh;
  background: url("/static/images/rings.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-bg .container {
  position: relative;
  z-index: 2;
}

.hero-bg h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 3.4rem;
  color: #fff;
  line-height: 1.2;
}

.hero-bg p {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.1rem;
  color: #e6e6e6;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero-bg h1 {
    font-size: 2.3rem;
  }
}

/* =======================
   RECOMMENDATION CARDS
======================= */

.recommend-section {
  margin-top: 80px; /* pulls cards closer to hero */
  
}

.recommend-card {
  background: #fff;
  padding: 42px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recommend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

.recommend-card h4 {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.recommend-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 22px;
}

.recommend-card a {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--gold-primary);
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.recommend-card a:hover {
  background-color: var(--gold-dark);
}
/* =======================
   HOME CATEGORY CARDS
======================= */

.luxe-card {
  background: #fff;
  padding: 42px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.luxe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

.luxe-card h4 {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #2b2620;
}

.luxe-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 22px;
}

.lux-btn {
  display: inline-block;
  padding: 10px 26px;
  background-color: var(--gold-primary);
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.4px;
}

.luxe-card:hover .lux-btn {
  background-color: var(--gold-dark);
}

/* =======================
   IMAGE CATEGORY CARDS
======================= */

.luxe-image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.luxe-card-body {
  padding: 28px 24px;
  text-align: center;
}

.luxe-card-body h4 {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #2b2620;
}

.luxe-card-body p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

/* =======================
   OUR JOURNEY – TIMELINE
======================= */

.journey-timeline {
  max-width: 1000px;
  margin: 0 auto;
}

.journey-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 60px;
  padding: 40px 0;
}

.journey-year {
  font-family: "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: #c9a227;
  text-align: right;
}

.journey-content h4 {
  font-family: "Times New Roman", serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.journey-content p {
  max-width: 620px;
  line-height: 1.8;
  color: #444;
}

/* Mobile */
@media (max-width: 768px) {
  .journey-item {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .journey-year {
    text-align: left;
    font-size: 2.1rem;
  }
}
/* =======================
   ABOUT – VALUES SECTION
======================= */

.value-card {
  background: #fff;
  padding: 40px 28px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.14);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.value-icon i {
  font-size: 28px;
  color: #000;
}

.value-card h5 {
  font-family: "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}
/* =======================
   COLLECTIONS – FINAL FIX
======================= */

/* Grid safety */
.collection-showcase-lg {
  display: block;              /* CRITICAL */
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;            /* CRITICAL */
  background: #000;
}

/* Image containment */
.collection-showcase-lg img {
  display: block;              /* CRITICAL */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.collection-overlay-lg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.15) 100%
  );

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
}

/* Text */
.collection-overlay-lg h3 {
  font-family: "Times New Roman", serif;
  font-size: 1.7rem;
  margin: 0 0 6px;
}

.collection-overlay-lg small {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Desktop */
@media (min-width: 992px) {
  .collection-showcase-lg {
    height: 560px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .collection-showcase-lg {
    height: 360px;
  }

  .collection-overlay-lg {
    padding: 22px;
  }
}
