/* Alternative alert bg */
/* alt alerts */
.alt_alert_secondary {
  background-color: #e2e3e5;
}

.alt_alert_danger {
  background-color: #f8d7da;
}

.alt_alert_success {
  background-color: #d4edda;
}

.alt_alert_warning {
  background-color: #fff3cd;
}

.alt_alert_info {
  background-color: #d1ecf1;
}

.alt_alert_light {
  background-color: #fefefe;
}

.alt_alert_dark {
  background-color: #d6d8d9;
}


/* ***************************************************************************************************** */
/* Start here */

/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  backface-visibility: hidden;
}

html, body {
  font-family: 'Inter', sans-serif;
  background-color: #0B0B0B;
  color: #FFFFFF;
  scroll-behavior: smooth;
}

body {
  will-change: transform;
  backface-visibility: hidden;
}

/* =========================
   CONTAINER SYSTEM
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

h1 {
  font-size: 56px;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #C8A96A;
  color: #0B0B0B;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.btn-outline:hover {
  background: #FFFFFF;
  color: #0B0B0B;
}

/* =========================
   GRID SYSTEM
========================= */
.grid {
  display: grid;
  gap: 40px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #0B0B0B;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #C8A96A;
}


button, a {
  min-height: 44px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

/* =========================
   GLOBAL ANIMATION SYSTEM
========================= */

/* Base state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
  will-change: transform, opacity;
}

/* Active state */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variants */
.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

/* Active resets */
.reveal.is-visible.reveal-left,
.reveal.is-visible.reveal-right,
.reveal.is-visible.reveal-scale {
  transform: none;
}

/* Delay system (consistent scale) */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}