:root {
  --font-outfit: "Outfit", sans-serif;
  --color-gold: #c8a84e;
  --color-gold-light: #e0c675;
  --color-gold-dark: #a68a3a;
  --color-dark: #0a0a0a;
  --color-dark-card: #141414;
  --color-dark-surface: #1a1a1a;
  --color-dark-border: #2a2a2a;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.service-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 168, 78, 0.15);
}

.btn-gold {
  background: linear-gradient(135deg, #c8a84e, #e0c675);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e0c675, #c8a84e);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 168, 78, 0.3);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c8a84e;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

input,
select,
textarea {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #c8a84e;
  box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.2);
}

/* ---- Custom Calendar ---- */
#cal-days button {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #d1d5db;
  transition: all 0.15s ease;
  border: none;
  background: transparent;
  cursor: pointer;
}

#cal-days button:hover:not(:disabled) {
  background: rgba(200, 168, 78, 0.15);
  color: #c8a84e;
}

#cal-days button.cal-selected {
  background: linear-gradient(135deg, #c8a84e, #e0c675);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(200, 168, 78, 0.35);
}

#cal-days button.cal-today {
  border: 1px solid rgba(200, 168, 78, 0.4);
  color: #c8a84e;
}

#cal-days button:disabled {
  color: #3a3a3a;
  cursor: not-allowed;
}

#cal-days button.cal-empty {
  visibility: hidden;
}

/* Sunday column in red */
#cal-days button.cal-sunday:not(:disabled) {
  color: #ef4444;
}

#cal-days button.cal-sunday.cal-selected {
  color: #0a0a0a;
}

/* ---- Time Slots ---- */
.time-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
  border-radius: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.time-slot:hover:not(.time-taken) {
  background: rgba(200, 168, 78, 0.1);
  border-color: rgba(200, 168, 78, 0.3);
  color: #c8a84e;
}

.time-slot.time-selected {
  background: linear-gradient(135deg, #c8a84e, #e0c675);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(200, 168, 78, 0.3);
}

.time-slot.time-taken {
  color: #4a4a4a;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.5;
}

/* Custom scrollbar for time dropdown */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #3a3a3a;
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #c8a84e;
}
