/* ==========================================================================
   Bohu. Custom Stylesheet - Luxury Wedding & Editorial Design
   ========================================================================== */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap");

/* Style Variables */
:root {
  --primary-font: "Jost", sans-serif;
  --display-font: "Playfair Display", serif;

  --bg-color: #ffffff;
  --text-dark: #111111;
  --text-muted: #666666;
  --accent-color: #c19b8c; /* Dusty rose / warm gold */
  --accent-hover: #b08778;
  --border-light: rgba(0, 0, 0, 0.08);
  --text-white: #ffffff;
  --rsvp-bg: #ffffff;
  --rsvp-text-dark: #6e6565;
  --rsvp-input-border: #b9cde3;
  --rsvp-btn-bg: #a38c8c;
  --rsvp-outer-border: #d0c2c2;
  --footer-bg: #fbf9f8;
  --brand-color: #7b756f;
  --link-color: #635d57;
  --dot-color: #d8c2b5;
  --icon-bg: #ffffff;
  --icon-color: #7b756f;
  --icon-border: #f0eae6;
  --accent-gold: #d8c2b5;
  --card-border: #f3ece8;
}

/* Global Reset & Base Styles */
body {
  font-family: var(--primary-font);
  background-color: var(--bg-color);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 122px;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--display-font);
  color: var(--text-dark);
}
.bohu-wrapper {
  /* min-height: 100vh; */
  position: relative;
  padding: 0 0 60px;
}

/* Navbar */

.bohu-logo {
  font-size: 60px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.bohu-logo span {
  font-weight: 700;
}

.bohu-nav .nav-link {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  margin: 0 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bohu-nav .nav-link:hover {
  color: #b9988d;
}

.search-icon {
  font-size: 20px;
  color: #222;
  cursor: pointer;
}
.navbar.sticky-header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  padding: 10px 60px;
}
.sticky-header.sticky {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.5s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 20px 60px 0;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: calc(100vh - 115px);
  overflow: hidden;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-text h1 {
  font-size: 13vw;
  line-height: 0.85;
  color: #000;
  font-weight: 300;
  letter-spacing: -5px;
  margin: 30px 0 0 0;
}

.hero-text .after {
  margin-left: 38%;
  margin-top: 55px;
}

/* Circle */
.invite-circle {
  width: 140px;
  height: 140px;
  /* border: 1px solid #c9c9c9; */
  border-radius: 50%;
  position: relative;
  margin: 80px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding-left: 80px;
}

.invite-circle::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #b49b8f;
  border-radius: 50%;
  position: absolute;
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 12s linear infinite;
}

.circle-text span {
  position: absolute;
  left: 50%;
  top: 0;
  font-size: 11px;
  color: #777;
  transform-origin: 0 70px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Bottom Text */
.welcome-text {
  max-width: 520px;
  margin-top: -140px;
}

.welcome-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #8c8c8c;
  margin-bottom: 0;
}

.welcome-text strong {
  color: #000;
  font-size: 22px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 12vw;
  }
}

@media (max-width: 991px) {
  .bohu-navbar,
  .hero-section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 40px;
  }

  .hero-text .after {
    margin-left: 0;
    margin-top: 20px;
  }

  .hero-text h1 {
    font-size: 18vw;
  }

  .welcome-text {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .bohu-logo {
    font-size: 42px;
  }

  .hero-text h1 {
    font-size: 20vw;
    letter-spacing: -2px;
  }

  .hero-image {
    height: 380px;
  }

  .welcome-text p {
    font-size: 16px;
  }
}

.wedding-section {
  position: relative;
  padding: 120px 0;
  min-height: 100vh;
}

/* CENTER CONTENT */
.quote-wrapper {
  text-align: center;
  position: relative;
  z-index: 2;
}

.quote-title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 4.2vw;
  line-height: 1;
  font-weight: 300;
  color: #000;
  max-width: 1100px;
  margin: auto;
  letter-spacing: -2px;
}

.quote-title span {
  display: block;
}

.quote-text {
  max-width: 860px;
  margin: 50px auto 0;
  font-size: 20px;
  line-height: 2;
  color: #444;
  font-weight: 400;
}

/* FLOWER ICON */
.flower-icon {
  margin-top: 70px;
}

.flower-icon img {
  width: 110px;
  opacity: 0.9;
}

/* SIDE IMAGES */
.floating-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.floating-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LEFT TOP */
.img-left-top {
  width: 400px;
  height: 480px;
  top: 145px;
  left: 0;
}

/* LEFT BOTTOM */
.img-left-bottom {
  width: 250px;
  height: 300px;
  left: 215px;
  bottom: 120px;
  z-index: 3;
}

/* RIGHT TOP */
.img-right-top {
  width: 200px;
  height: 245px;
  top: 90px;
  right: 20px;
}

/* RIGHT BOTTOM */
.img-right-bottom {
  width: 345px;
  height: 380px;
  right: 40px;
  bottom: 100px;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .img-left-top {
    width: 320px;
    height: 400px;
  }

  .img-left-bottom {
    width: 220px;
    height: 270px;
    left: 160px;
  }

  .img-right-bottom {
    width: 300px;
    height: 340px;
  }
}

@media (max-width: 1199px) {
  .quote-title {
    font-size: 8vw;
  }

  .quote-text {
    max-width: 720px;
    font-size: 18px;
  }

  .img-left-top,
  .img-left-bottom,
  .img-right-top,
  .img-right-bottom {
    opacity: 0.25;
  }
}

@media (max-width: 991px) {
  .wedding-section {
    padding: 60px 20px;
  }

  .quote-title {
    font-size: 10vw;
    line-height: 1.1;
  }

  .quote-text {
    font-size: 17px;
    line-height: 1.9;
    margin-top: 35px;
  }

  .floating-img {
    position: relative;
    width: 100% !important;
    height: 350px !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-bottom: 20px;
    opacity: 1 !important;
  }

  .image-grid {
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .quote-title {
    font-size: 15vw;
  }

  .quote-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .floating-img {
    height: 280px !important;
  }

  .flower-icon img {
    width: 80px;
  }
}

.about-section {
  padding:160px 0 130px 0;
}

/* IMAGE SIDE */
.about-image-wrapper {
  border: 1px solid #e5ddd8;
  padding: 28px;
  background: transparent;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT SIDE */
.about-content {
  padding-left: 70px;
}

.about-subtitle {
  font-family: "Parisienne", cursive;
  font-size: 78px;
  color: #a6a38c;
  line-height: 1;
  margin-bottom: 30px;
}

.about-title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 70px;
  line-height: 1.2;
  color: #1d1d1d;
  font-weight: 400;
  margin-bottom: 35px;
}

.about-text {
  font-size: 20px;
  line-height: 2;
  color: #7c7c7c;
  margin-bottom: 45px;
}

/* BUTTON */
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 68px;
  background: #d6b8ad;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.about-btn:hover {
  background: #b9988d;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1399px) {
  .about-title {
    font-size: 52px;
  }

  .about-subtitle {
    font-size: 66px;
  }

  .about-content {
    padding-left: 50px;
  }
}

@media (max-width: 1199px) {
  .about-title {
    font-size: 46px;
  }

  .about-subtitle {
    font-size: 58px;
  }

  .about-text {
    font-size: 18px;
  }

  .about-content {
    padding-left: 35px;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }

  .about-content {
    padding-left: 0;
    padding-top: 50px;
    text-align: center;
  }

  .about-title {
    font-size: 42px;
  }

  .about-subtitle {
    font-size: 54px;
  }

  .about-text {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 50px 0;
  }

  .about-image-wrapper {
    padding: 15px;
  }

  .about-subtitle {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .about-title {
    margin-bottom: 25px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
  }

  .about-btn {
    min-width: 180px;
    height: 58px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .about-subtitle {
    font-size: 36px;
  }


  .about-text {
    font-size: 15px;
  }
}

.wedding-banner {
  position: relative;
  min-height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
/* .wedding-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1600&auto=format&fit=crop")
    center center/cover no-repeat;
  transform: scale(1.03);
} */

/* DARK OVERLAY */
.wedding-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 20, 20, 0.45);
}

/* CONTENT */
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.banner-title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.1;
  color: var(--text-white);
}

/* DIVIDER */
.divider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 35px;
  max-width: 280px;
  margin: 0 auto 0;
}

.divider-line {
  width: 170px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.divider-icon {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
}

.banner-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 20px 0 0 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .wedding-banner {
    min-height: 360px;
  }

  .banner-title {
    font-size: 54px;
  }

  .divider-line {
    width: 120px;
  }

  .banner-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .wedding-banner {
    min-height: 320px;
  }

  .banner-title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .divider-wrapper {
    gap: 10px;
    margin-bottom: 25px;
  }

  .divider-line {
    width: 70px;
  }

  .banner-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {

  .divider-line {
    width: 45px;
  }

}

.story-section {
  padding: 90px 0;
  background: #f7f7f7;
}

/* SECTION HEADING */
.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading h2 {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 70px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #000;
}

.section-heading h2 em {
  font-style: italic;
  font-weight: 500;
}

.section-heading p {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  margin: 0;
  color: #000;
}

/* STORY CARD */
.story-card {
  text-align: center;
  height: 100%;
}

.story-image {
  overflow: hidden;
  margin-bottom: 25px;
  background: #eee;
}

.story-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 22px;
  font-weight: 400;
  color: #000;
}

.story-desc {
  /* font-family: "Playfair Display", serif; */
  font-size: 18px;
  /* line-height: 2; */
  color: #000;
  margin: 0 auto;
  max-width: 95%;
}

/* RESPONSIVE */
@media (max-width: 1399px) {
  .section-heading h2 {
    font-size: 72px;
  }

  .story-image img {
    height: 420px;
  }
}

@media (max-width: 1199px) {
  .section-heading h2 {
    font-size: 60px;
  }

  .section-heading p {
    font-size: 20px;
  }

  .story-title {
    font-size: 30px;
  }

  .story-desc {
    font-size: 16px;
  }

  .story-image img {
    height: 380px;
  }
}

@media (max-width: 991px) {
  .story-section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: 52px;
  }

  .story-card {
    margin-bottom: 50px;
  }

  .story-image img {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .story-section {
    padding: 55px 0;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading p {
    font-size: 17px;
    line-height: 1.7;
  }

  .story-title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .story-desc {
    font-size: 15px;
    line-height: 1.9;
  }

  .story-image img {
    height: 420px;
  }
}

@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 34px;
  }

  .story-image img {
    height: 320px;
  }

}

.gallery-wrapper {
  position: relative;
  padding: 0 40px;
}

/* Horizontal Scroll Container */
.gallery-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 60px 0 0;
  scrollbar-width: none;
}
.gallery-img-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

/* Gallery Item Card Styling */
.gallery-item {
  flex: 0 0 auto;
  width: 280px; /* Default width on mobile */
  position: relative;
  background: #fff;
  padding: 12px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5; /* Keeps uniform vertical alignment */
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Label Badge Styling */
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: #fff;
  color: #333;
  padding: 8px 16px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  z-index: 10;
}

/* Control Arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: #f8f9fa;
}

.nav-btn.prev {
  left: 0;
}
.nav-btn.next {
  right: 0;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .gallery-item {
    width: 320px; /* Slightly wider on desktop */
  }
}

.video-sec {
  padding: 90px 0 150px;
}
.video-sec .section-heading {
  margin-bottom: 0;
}

/* Floral Background Placement handles */
.floral-bg-left,
.floral-bg-right {
  position: absolute;
  /* z-index: 1; */
  pointer-events: none;
  width: 350px; /* Adjust size based on your asset dimensions */
  opacity: 0.9;
}
.floral-bg-left {
  bottom: -20px;
  left: -110px;
}

.floral-bg-right {
  top: -55px;
  right: -140px;
}

/* Outer Container to hold layout stack safely */
.rsvp-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  margin: 0 auto 100px;
}

/* The Double-Border Arch Card */
.rsvp-card {
  background-color: var(--rsvp-bg);
  border-radius: 350px;
  padding: 60px 80px 50px 80px;
  /* border: 1px solid var(--rsvp-outer-border); */
  box-shadow: 0 5px 33px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* Inner Accent Border Ring */
.rsvp-card::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(208, 194, 194, 0.5);
  border-radius: 350px;
  pointer-events: none;
}

/* Typography Styling */
.rsvp-title {
  font-family: "Playfair Display", serif;
  color: var(--rsvp-text-dark);
  font-size: 2.3rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.decorative-leaf {
  width: 45px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.divider-line {
  width: 120px;
  height: 1px;
  background-color: #e2d9d9;
  margin: 15px auto;
}

/* Minimalist Form Inputs */
.rsvp-form .form-control,
.rsvp-form .form-select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--rsvp-input-border);
  border-radius: 0;
  padding: 12px 4px;
  color: #555;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

/* Custom Input Placeholders */
.rsvp-form .form-control::placeholder {
  color: #8fa1b4;
  opacity: 0.8;
}

/* Remove default blue high-contrast focus styling */
.rsvp-form .form-control:focus,
.rsvp-form .form-select:focus {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border-bottom-color: var(--rsvp-text-dark);
}

/* Subtle style refinement for the select dropdown arrow */
.rsvp-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238fa1b4' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-size: 14px 12px;
  color: #8fa1b4;
}

.rsvp-form .form-select:valid {
  color: #555;
}

/* Elegant Pill Button */
.btn-rsvp {
  background-color: var(--rsvp-btn-bg);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 40px;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(163, 140, 140, 0.2);
}

.btn-rsvp:hover {
  background-color: #8e7878;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(163, 140, 140, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  .rsvp-card {
    border-radius: 180px 180px 60px 60px;
    padding: 45px 25px 40px 25px;
  }
  .rsvp-card::before {
    border-radius: 170px 170px 52px 52px;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .rsvp-title {
    font-size: 1.8rem;
  }
  .floral-bg-left,
  .floral-bg-right {
    width: 220px;
  }
}
.wedding-banner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wedding-banner.forever-stories {
  position: relative;
}
.wedding-banner.forever-stories img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-slider-section {
  background-color: #f5f5f5;
  padding: 60px 0;
  overflow: hidden;
}

.logo-slider-container {
  padding: 0 10px;
}

/* Target individual slide wrappers */
.partner-logo-item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  outline: none; /* Focus ring cleanup */
}

/* Enforce uniform layout bounds on logo shapes */
.partner-logo-item img {
  max-width: 140px;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  opacity: 0.75;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  filter: grayscale(20%); /* Softens image punch matching image tone */
}

.partner-logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.03);
}

.slick-track {
  display: flex !important;
  align-items: center;
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.testimonial-slider-container {
  max-width: 1220px;
  margin: 100px auto 120px;
  position: relative;
  width: 100%;
  /* overflow: hidden; */
}

/* Slide Structural Layout */
.testimonial-slide {
  outline: none;
  padding: 20px;
}

.testimonial-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Image Frame wrapper */
.testimonial-img-wrapper {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}

.testimonial-img-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* Overlapping Testimonial Content Box */
.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  padding: 50px 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Inner Accent Border Line Ring */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(243, 236, 232, 0.6);
  pointer-events: none;
}

/* Quote Icon Frame Styling */
.quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-gold);
  font-family: "Playfair Display", serif;
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 15px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 25px;
}

.testimonial-author {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2.2rem;
  color: #4a4440;
  margin-bottom: 4px;
}

.testimonial-date {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a8a09b;
}

/* 1. Reset standard list styling from the carousel container */
.testimonial-slider-container .slick-dots {
  position: absolute;
  bottom: -40px; /* Adjust distance below the content */
  display: flex !important;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  gap: 8px; /* Balanced spacing between dots */
}

/* 2. Hide default numbers/text inside the buttons if you just want clean dots */
.testimonial-slider-container .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #cccbca; /* Inactive dot color */
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* 3. Style the active dot status */
.testimonial-slider-container .slick-dots li.slick-active button {
  background: #d8c2b5; /* Active gold/rose accent color */
  transform: scale(1.1);
}

/* 4. Ensure container overflow doesn't clip the dots */
.testimonial-slider-container {
  margin-bottom: 150px; /* Creates safe container space for dots below */
}

/* Desktop specific positioning matrix for overlap logic */
@media (min-width: 992px) {
  .testimonial-img-col {
    width: 55%;
  }
  .testimonial-card-col {
    width: 45%;
    margin-left: -10%; /* Creates the elegant offset split overlap over image */
  }
  .testimonial-card {
    padding: 80px;
  }
}

/* Mobile Layout Refinements */
@media (max-width: 991px) {
  .testimonial-img-col,
  .testimonial-card-col {
    width: 100%;
  }
  .testimonial-card {
    margin-top: -30px; /* Pulls the card slightly up over the image on mobile stacks */
    margin-left: 15px;
    margin-right: 15px;
    padding: 40px 25px;
    text-align: center;
  }
  .testimonial-img-wrapper {
    max-height: 350px;
  }
}

.custom-footer {
  background-color: var(--footer-bg);
  /* font-family: "Montserrat", sans-serif; */
  color: var(--link-color);
  padding: 60px 20px;
}

/* Brand / Logo Text Frame */
.footer-logo {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--brand-color);
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Decorative flourishes flanking the text (Optional fallback if not using image) */
.footer-logo::before,
.footer-logo::after {
  content: "~~~"; /* Replace with actual background image flourishes if desired */
  font-size: 1rem;
  letter-spacing: -2px;
  color: var(--dot-color);
  opacity: 0.7;
  font-family: Arial, sans-serif;
}

/* Navigation Links Structure */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Wraps cleanly onto multiple lines on small devices */
  gap: 15px 0;
}

.footer-nav li {
  display: flex;
  align-items: center;
}

.footer-nav a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--link-color);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  font-weight: 400;
  padding: 0 15px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--brand-color);
}

/* Add separating dots dynamically using pseudo-selectors */
.footer-nav li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--dot-color);
  border-radius: 50%;
}

/* Circular Social Circles Framework */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
}

.social-circle {
  width: 38px;
  height: 38px;
  background-color: var(--icon-bg);
  border: 1px solid var(--icon-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color);
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.social-circle:hover {
  color: #ffffff;
  background-color: var(--rsvp-btn-bg);
  border-color: var(--rsvp-btn-bg);
  transform: translateY(-2px);
}

/* Copyright Notice Element */
.footer-copyright {
  font-size: 0.85rem;
  color: #9a938c;
  letter-spacing: 0.5px;
}
.footer-logo img {
  border-radius: 100%;
}
/* Mobile specific spacing improvements */
@media (max-width: 576px) {
  .custom-footer {
    padding: 45px 15px;
  }
  .footer-nav {
    display: block; /* Changes to vertical layout stack on tiny mobile browsers */
    text-align: center;
  }
  .footer-nav li {
    display: inline-block;
  }
  .footer-nav li:not(:last-child)::after {
    display: none; /* Hide dots when elements stack tightly on mobile viewports */
  }
  .footer-nav a {
    display: block;
    padding: 6px 12px;
  }
}
