/* =========================================
   Unique & Chic - Custom Styles
   Mobile-first Bootstrap 5 site
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #b8923f;
  --gold-light: #c9ae76;
  --cream: #f5f0e8;
  --cream-dark: #f0ebe2;
  --navy: #182038;
  --sage: #b5c4b1;
  --warm-grey: #9e958a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', -apple-system, sans-serif;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: #1e293b;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Navbar ---------- */
.site-navbar {
  background-color: rgba(24, 32, 56, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 174, 118, 0.15);
  padding-top: 0;
  padding-bottom: 0;
}

.brand-text {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1;
}

.navbar-scroll {
  height: 18px;
  width: auto;
  margin-top: -2px;
}

.navbar-nav .nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light);
}

.navbar-nav .nav-link.active {
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: calc(0.5rem - 2px);
}

.nav-phone {
  color: var(--gold-light);
  font-size: 1rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-phone:hover {
  color: var(--cream);
}

/* ---------- Section Helpers ---------- */
.section-subtitle {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ornament-line {
  width: 3rem;
  height: 1px;
  background-color: rgba(184, 146, 63, 0.3);
}

.ornament-star {
  color: var(--gold);
  font-size: 0.7rem;
}

.section-bg-cream {
  background-color: var(--cream);
}

.section-bg-card {
  background-color: var(--cream-dark);
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(24, 32, 56, 0.75) 0%,
    rgba(24, 32, 56, 0.65) 50%,
    rgba(24, 32, 56, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 750px;
  margin: 0 auto;
}

.hero-content .hero-subtitle {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content h1 {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
}

.hero-ornament {
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-desc {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 1s both;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  animation: fadeInUp 0.8s ease 1.3s both;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-gold:hover {
  background-color: #a37e30;
  color: var(--cream);
}

.btn-outline-cream {
  border: 1px solid rgba(201, 174, 118, 0.4);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  background: transparent;
  transition: background-color 0.3s ease;
}

.btn-outline-cream:hover {
  background-color: rgba(245, 240, 232, 0.1);
  color: var(--cream);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s ease 2s both;
}

.hero-scroll-indicator .line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(201, 174, 118, 0.6), transparent);
  margin: 0 auto;
}

/* ---------- About Section ---------- */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(184, 146, 63, 0.2);
  z-index: -1;
}

.about-tagline {
  color: var(--gold);
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--font-serif);
}

/* ---------- Meet Emma Section ---------- */
.emma-image-wrapper img {
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}

.emma-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

.emma-quote p {
  margin: 0;
}

.emma-signoff {
  font-family: var(--font-serif);
  font-style: italic;
  color: #6b6358;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.emma-name {
  font-size: 1.15rem;
  color: var(--gold);
  font-style: normal;
}

.text-muted-custom {
  color: var(--warm-grey);
  line-height: 1.75;
}

.divider-gold {
  width: 4rem;
  height: 1px;
  background-color: rgba(184, 146, 63, 0.3);
}

/* ---------- Featured Section ---------- */
.featured-card {
  overflow: hidden;
  cursor: default;
}

.featured-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.featured-card .card-img-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.featured-card .category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(4px);
  color: #1e293b;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
}

.featured-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.featured-card p {
  font-size: 0.875rem;
  color: #6b6358;
  line-height: 1.6;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.filter-btn {
  background: none;
  border: 1px solid rgba(184, 146, 63, 0.3);
  color: #6b6358;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.featured-item {
  transition: opacity 0.3s ease;
}

.rarity-cta {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(184, 146, 63, 0.25);
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.5), rgba(184, 146, 63, 0.08));
}

.rarity-cta-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.rarity-cta-text {
  color: #6b6358;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ---------- Stock Banner ---------- */
.stock-banner {
  background-color: var(--navy);
  padding: 4rem 0;
  text-align: center;
}

.stock-banner h2 {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .stock-banner h2 {
    font-size: 2rem;
  }
}

.stock-banner p {
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.stock-banner .ornament-line {
  background-color: rgba(184, 146, 63, 0.4);
}

.stock-banner .ornament-star {
  color: var(--gold);
}

.btn-outline-gold {
  border: 1px solid rgba(184, 146, 63, 0.4);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  background: transparent;
  transition: background-color 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: rgba(184, 146, 63, 0.1);
  color: var(--cream);
}

/* ---------- Visit Section ---------- */
.visit-info-item {
  display: flex;
  gap: 1rem;
}

.visit-info-item .icon {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.visit-info-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.visit-info-item p,
.visit-info-item div {
  color: var(--warm-grey);
  line-height: 1.7;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-grey);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--gold);
}

.map-wrapper iframe {
  width: 100%;
  aspect-ratio: 1;
  border: 0;
}

/* ---------- Contact Section ---------- */
.form-label-custom {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 0.5rem;
}

.form-control-custom {
  background-color: var(--cream);
  border: 1px solid rgba(184, 146, 63, 0.2);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #1e293b;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.form-control-custom:focus {
  background-color: var(--cream);
  border-color: var(--gold);
  box-shadow: none;
  color: #1e293b;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--warm-grey);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-phone:hover {
  color: var(--gold);
}

.contact-quote {
  border-top: 1px solid rgba(184, 146, 63, 0.2);
  padding-top: 2rem;
  font-size: 0.875rem;
  color: var(--warm-grey);
  font-style: italic;
  font-family: var(--font-serif);
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--navy);
  padding: 2rem 0 1.25rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.text-cream {
  color: var(--cream) !important;
}

.text-cream-muted {
  color: rgba(245, 240, 232, 0.7);
}

.text-cream-faint {
  color: rgba(245, 240, 232, 0.4);
}

.footer-social {
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: var(--gold);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(245, 240, 232, 0.15);
}

.footer-nav ul li {
  margin-bottom: 0.4rem;
}

.footer-nav a {
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Utility ---------- */
.text-gold {
  color: var(--gold) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

a {
  color: var(--gold);
}

a:hover {
  color: #a37e30;
}
