/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Color Variables & Font Defaults */
:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --color-primary: #b59367; /* Adjusted bronze gold for luxury look */
  --color-primary-dark: #92734b;
  --color-bg-dark: #121110;  /* Very dark charcoal/black */
  --color-bg-light: #fcfbf9; /* Soft creamy white */
  --color-bg-gray: #f5f2eb;  /* Very soft warm gray */
  --color-text-dark: #1c1917;
  --color-text-muted: #6b7280;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
}

/* Buttons and Links */
.btn-gold {
  background-color: var(--color-primary);
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-gold:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(181, 147, 103, 0.3);
}

.btn-outline-gold {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-outline-gold:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(181, 147, 103, 0.2);
}

/* Custom Overrides for forms */
.form-input-focus:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(181, 147, 103, 0.2);
}

/* Hover effects */
.image-zoom-parent {
  overflow: hidden;
}
.image-zoom-child {
  transition: transform 0.7s ease-in-out;
}
.image-zoom-parent:hover .image-zoom-child {
  transform: scale(1.06);
}

/* Custom Divider */
.gold-divider {
  width: 50px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 1rem auto;
}
.gold-divider.left {
  margin: 1rem 0;
}

/* Hero Section slider adjustments */
.hero-slider-item {
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}

/* Swiper carousel custom dot colors */
.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
}

/* Active Navigation Element */
.nav-link-active {
  color: var(--color-primary) !important;
  font-weight: 600;
}
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--color-primary);
}

/* Animation utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s forwards;
}

/* Testimonial card custom quote mark styling */
.testimonial-quote {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(181, 147, 103, 0.15);
  position: absolute;
  top: -20px;
  left: 10px;
}
