/* CSS Variables */

:root {
  --gold-primary: #FFD700;
  --gold-primary-dark: #b38f00;
  --text-muted: #6c757d;
  --text-dark-muted: rgba(0, 0, 0, 0.7);
}

/* Global Styles */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal scroll on small screens */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

/* Header */
.bg-white-blur {
  /* neutral frosted header that pairs with gold hero */
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

.logo {
  letter-spacing: 0.1em;
}

.nav-link-custom {
  color: #212529;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.nav-link-custom:hover {
  color: var(--gold-primary);
}

/* Buttons */
.btn-gold {
  background-color: var(--gold-primary-dark);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.btn-gold:hover {
  background-color: var(--gold-primary);
  color: #fff;
}

/* Increase specificity so Bootstrap .btn defaults don't override */
.btn.btn-gold {
  background-color: var(--gold-primary-dark) !important;
  border-color: var(--gold-primary-dark) !important;
  color: #fff !important;
  text-decoration: none;
}

.btn.btn-gold:hover,
.btn.btn-gold:focus {
  background-color: var(--gold-primary) !important;
  border-color: var(--gold-primary) !important;
  color: #fff !important;
  text-decoration: none;
}

/* Hero CTA refinement for better harmony on gold backgrounds */
.hero-section .btn-dark {
  background-color: #1c1c1c;
  border-color: rgba(255, 215, 0, 0.35);
  color: #fff;
}

.hero-section .btn-dark:hover,
.hero-section .btn-dark:focus {
  background-color: #111111;
  border-color: rgba(255, 215, 0, 0.55);
  color: #fff;
}

/* Hero Section */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}

.bg-gold-gradient {
  /* soften the hero gold so header/button pop and tones mesh */
  background: linear-gradient(135deg,
      var(--gold-primary) 0%,
      var(--gold-primary) 35%,
      var(--gold-primary) 100%);
}

.bg-radial-1,
.bg-radial-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.25;
  filter: blur(80px);
}

.bg-radial-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.bg-radial-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.5) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

/* Sections */
.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
}

/* Service Cards */
.service-card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.text-gold {
  color: var(--gold-primary);
}

/* Portfolio */
.portfolio-item {
  overflow: hidden;
  border-radius: 0.5rem;
}

.hover-scale-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .hover-scale-img {
  transform: scale(1.05);
}

/* Contact Section */
.contact-info h3 {
  font-weight: 500;
}

.map-container {
  height: 400px;
}

/* Footer */
.hover-gold {
  transition: color 0.2s ease;
}

.hover-gold:hover {
  color: var(--gold-primary) !important;
}

/* Utility Classes */
.text-dark-muted {
  color: var(--text-dark-muted);
}