/*
 * Dubesta CSS - Matching Frontend Design
 */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@300;400;500;600;700&display=swap');

/* Base styles */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #000000;
}

/* ===== Typography Utilities ===== */
.text-display {
  font-size: 56px;
  line-height: 64px;
  font-weight: 500;
}

.text-h1 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
}

.text-h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
}

.text-h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.text-h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

.text-body {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.text-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.text-caption {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

/* ===== Color Utilities ===== */

/* Gold */
.text-gold { color: #C7A14C; }
.bg-gold { background-color: #C7A14C; }
.border-gold { border-color: #C7A14C; }
.hover\:text-gold:hover { color: #C7A14C; }
.hover\:bg-gold:hover { background-color: #C7A14C; }
.hover\:border-gold:hover { border-color: #C7A14C; }

/* Gold Dark/Hover */
.text-gold-dark { color: #af8c3c; }
.bg-gold-dark { background-color: #af8c3c; }
.hover\:text-gold-dark:hover { color: #af8c3c; }
.hover\:bg-gold-dark:hover { background-color: #af8c3c; }
.hover\:border-gold-dark:hover { border-color: #af8c3c; }

/* Gold Light */
.bg-gold-light { background-color: #f7f4ec; }

/* Charcoal */
.text-charcoal { color: #2F2F2F; }
.bg-charcoal { background-color: #2F2F2F; }
.border-charcoal { border-color: #2F2F2F; }

/* Sand */
.bg-sand { background-color: #F7F4EF; }
.border-sand { border-color: #F7F4EF; }

/* Gray */
.text-gray { color: #9B9B9B; }
.border-gray { border-color: #9B9B9B; }

/* ===== Button Styles ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn:focus-visible {
  outline: none;
  ring: 2px;
  ring-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-primary {
  background-color: #C7A14C;
  color: white;
}

.btn-primary:hover {
  background-color: #af8c3c;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #C7A14C;
  color: #C7A14C;
}

.btn-outline:hover {
  background-color: white;
  color: #af8c3c;
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline-white:hover {
  background-color: white;
  color: #2F2F2F;
}

/* ===== Card Styles ===== */
.card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: all 0.3s;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* ===== Feature Card ===== */
.feature-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid #F7F4EF;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #C7A14C;
}

/* ===== Scrollbar ===== */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===== Hero Background ===== */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

/* ===== Sticky Button ===== */
.sticky-btn-v2 {
  display: none;
}

.sticky-btn-v2.visible {
  display: block;
}
