@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

@font-face {
  font-family: "Billgates";
  src: url("../fonts/BillgatesDemo.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BrushKencur";
  src: url("../fonts/brushkencur.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --gold: #d4b996;
  --gold-light: #eae0d0;
  --gold-dark: #a68c6a;
  --gold-faint: rgba(212, 185, 150, 0.12);
  --red: #d8c3a5;
  --red-light: #eae2d6;
  --red-dark: #b8a385;
  --red-faint: rgba(216, 195, 165, 0.15);
  --cream: #faf6f0;
  --cream-dark: #ebe3d9;
  --dark: #4a4238;
  --dark-2: #5c544a;
  --dark-3: #756d63;
  --text-dark: #4a4238;
  --text-light: #ffffff;
  --text-muted: #756d63;
  --text-body: #5c544a;
  --text-muted-light: rgba(255, 255, 255, 0.75);
  --success: #6b8e23;
  --warning: #daa520;
  --error: #cd5c5c;
  --info: #4682b4;
  --grad-primary: linear-gradient(135deg, #eae2d6 0%, #b8a385 100%);
  --grad-gold: linear-gradient(135deg, #eae0d0 0%, #d4b996 100%);
  --grad-dark: linear-gradient(135deg, #756d63 0%, #4a4238 100%);
  --grad-hero: linear-gradient(135deg, #ffffff 0%, #faf6f0 60%, #ebe3d9 100%);
  --shadow-xs: 0 2px 8px rgba(74, 66, 56, 0.04);
  --shadow-sm: 0 4px 16px rgba(74, 66, 56, 0.06);
  --shadow-md: 0 12px 32px rgba(74, 66, 56, 0.08);
  --shadow-lg: 0 24px 64px rgba(74, 66, 56, 0.12);
  --shadow-gold: 0 12px 32px rgba(212, 185, 150, 0.35);
  --shadow-red: 0 12px 32px rgba(216, 195, 165, 0.35);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;
  --font: "Plus Jakarta Sans", sans-serif;
  --font-h: "Playfair Display", serif;
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 76px;
  --z-nav: 1000;
  --z-dropdown: 200;
  --z-modal: 1050;
  --z-toast: 400;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--text-body);
  font-weight: 400;
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: var(--font);
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-h);
  line-height: 1.25;
  color: var(--text-dark);
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600;
}
h4 {
  font-size: 1.25rem;
  font-weight: 600;
}
p {
  line-height: 1.75;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.section {
  padding: var(--sp-3xl) 0;
}
.section-sm {
  padding: var(--sp-2xl) 0;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  padding: 0 var(--sp-xl);
  transition: all var(--t-normal);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.navbar.solid {
  background: white;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: var(--shadow-md);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  margin: 0 auto;
}
.navbar-links a {
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--t-fast);
  position: relative;
}
.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--t-normal);
  border-radius: var(--r-full);
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--red-dark);
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
  transform: scaleX(1);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.navbar-avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-fast);
}
.navbar-avatar:hover {
  border-color: var(--red-dark);
  box-shadow: var(--shadow-md);
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--t-normal);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-md);
  padding: var(--sp-sm);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: var(--z-dropdown);
  animation: fadeInDown 0.2s ease;
}
.nav-dropdown-menu.open {
  display: block;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 10px var(--sp-md);
  border-radius: var(--r-sm);
  color: var(--text-body);
  font-size: 0.9rem;
  transition: background var(--t-fast);
  cursor: pointer;
}
.nav-dropdown-item:hover {
  background: var(--cream);
  color: var(--red-dark);
}
.nav-dropdown-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin: var(--sp-sm) 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--t-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity var(--t-normal);
  z-index: -1;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  z-index: -1;
}
.btn:hover::before {
  opacity: 1;
}
.btn:hover::after {
  left: 150%;
  transition: left 0.6s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(193, 18, 31, 0.4);
  transform: translateY(-3px);
}
.btn-gold {
  background: var(--grad-gold);
  color: var(--dark);
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: white;
}
.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover {
  background: var(--gold-faint);
  color: var(--gold);
}
.btn-danger {
  background: var(--error);
  color: white;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}
.btn-block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}
.btn-icon {
  padding: 10px;
  border-radius: var(--r-full);
}

/* FORMS */
.form-group {
  margin-bottom: var(--sp-lg);
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(200, 16, 46, 0.2);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  background: white;
  color: var(--text-dark);
  transition: all var(--t-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--red-dark);
  box-shadow: 0 0 0 3px rgba(196, 138, 148, 0.2);
}
.form-control::placeholder {
  color: #c0b0a0;
}
.form-control.error {
  border-color: var(--error);
}
.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: var(--sp-xs);
}
.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--sp-xs);
}
.input-group {
  position: relative;
}
.input-group .form-control {
  padding-left: 46px;
}
.input-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}
.input-group .input-icon-right {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
}
.form-control.dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--text-light);
}
.form-control.dark::placeholder {
  color: rgba(249, 243, 228, 0.3);
}
.form-control.dark:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.form-label.light {
  color: rgba(249, 243, 228, 0.7);
}

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-pending {
  background: rgba(243, 156, 18, 0.15);
  color: var(--warning);
}
.badge-confirmed {
  background: rgba(41, 128, 185, 0.15);
  color: var(--info);
}
.badge-active {
  background: rgba(39, 174, 96, 0.15);
  color: var(--success);
}
.badge-done {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}
.badge-cancelled {
  background: rgba(231, 76, 60, 0.15);
  color: var(--error);
}
.badge-gold {
  background: var(--grad-gold);
  color: var(--dark);
}

/* UTILITIES */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-gold {
  color: var(--gold);
}
.text-red {
  color: var(--red-light);
}
.text-muted {
  color: var(--text-muted);
}
.text-success {
  color: var(--success);
}
.text-error {
  color: var(--error);
}
.text-light {
  color: var(--text-light);
}
.font-heading {
  font-family: var(--font-h);
}
.fw-700 {
  font-weight: 700;
}
.fw-600 {
  font-weight: 600;
}
.font-billgates {
  font-family: "Great Vibes", cursive !important;
  font-weight: normal !important;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-sm {
  gap: var(--sp-sm);
}
.gap-md {
  gap: var(--sp-md);
}
.gap-lg {
  gap: var(--sp-lg);
}
.mt-sm {
  margin-top: var(--sp-sm);
}
.mt-md {
  margin-top: var(--sp-md);
}
.mt-lg {
  margin-top: var(--sp-lg);
}
.mt-xl {
  margin-top: var(--sp-xl);
}
.mb-sm {
  margin-bottom: var(--sp-sm);
}
.mb-md {
  margin-bottom: var(--sp-md);
}
.mb-lg {
  margin-bottom: var(--sp-lg);
}
.hidden {
  display: none !important;
}
.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}
.section-header .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
  display: block;
}
.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: var(--sp-md) auto 0;
}
.stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.divider {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: var(--sp-lg) 0;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(200, 16, 46, 0.15);
}
.price {
  font-family: var(--font-h);
  color: var(--gold);
  font-weight: 700;
}
.page-header {
  background: var(--grad-hero);
  padding: calc(var(--nav-h) + var(--sp-2xl)) 0 var(--sp-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  color: var(--text-dark);
  position: relative;
}
.page-header p {
  color: var(--text-muted);
  position: relative;
  margin-top: var(--sp-sm);
}
.page-content {
  padding-top: var(--nav-h);
}
.empty-state {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-xl);
}
.empty-state .empty-icon {
  font-size: 3.5rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-lg);
  opacity: 0.4;
}
.empty-state h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.empty-state p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: var(--sp-sm);
}
.arch-shape {
  border-radius: 200px 200px 12px 12px;
  overflow: hidden;
}
/* FOOTER */
footer {
  background: var(--dark);
  color: var(--text-light);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}
.footer-brand .brand-desc {
  color: rgba(249, 243, 228, 0.5);
  font-size: 0.875rem;
  margin-top: var(--sp-md);
  line-height: 1.8;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-lg);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(249, 243, 228, 0.55);
  transition: color var(--t-fast);
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 6px;
  word-break: normal;
  white-space: nowrap;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(249, 243, 228, 0.35);
}
.social-links {
  display: flex;
  gap: var(--sp-md);
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--t-fast);
}
.social-link:hover {
  background: var(--gold);
  color: var(--dark);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }
}
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }
  .navbar {
    padding: 0 var(--sp-md);
  }
  .navbar-links {
    display: none;
  }
  .navbar-hamburger {
    display: flex;
  }
  .navbar-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: var(--sp-xl);
    font-size: 1.2rem;
    z-index: var(--z-nav);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-md);
    text-align: center;
  }
  .container {
    padding: 0 var(--sp-md);
  }
}
