:root {
  --bg-page: #f8f5f0;
  --bg-card: #ffffff70;
  --bg-light: #868580;
  --text-primary: #a67c52;
  --text-secondary: #888680;
  --text-muted: #302f2c;
  --text-inverse: #fff;
  --border-light: rgba(63, 72, 22, 0.5);
  --border-medium: #fff;
  --border-strong: #888680;
  --brand-primary: #a67c52;
  --brand-hover: rgba(166, 124, 82, 0.6);
  --brand-active: rgba(166, 124, 82, 0.6);
}
h1,
h2 {
  font-family: "Cinzel", serif !important;
  font-weight: 400 !important;
}

h3 {
  font-family: "Lato", sans-serif !important;
  font-weight: 400 !important;
}
body {
  font-family: "Lato", sans-serif;
  background-color: var(--bg-page);
  color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0.75rem 1.25rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand-primary) !important;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--brand-primary);
  color: var(--text-inverse);
  border: none;
  border-radius: 50px;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

button.btn-search:hover {
  border-color: aliceblue !important;
}

.btn-primary-custom:hover {
  background-color: var(--bg-page);
  transform: scale(1.03);
  color: var(--text-primary);
}

.btn-secondary-custom {
  background-color: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 50px;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background-color: var(--brand-primary);
  color: var(--text-inverse);
  transform: scale(1.03);
}

a.hero.btn.btn-secondary-custom {
  border: 1px solid #fff !important;
  color: #fff !important;
}

/* Typography */
.heading-1 {
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
  color: #ffe6cd;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0px 0px 23px black;
}
p.lead.mb-4 {
  color: #ffe6cd;
  font-size: 1.25rem;
  /* text-shadow: 0px 0px 23px black; */
}

.heading-2 {
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--text-primary);
}

.heading-4 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.1;
  color: var(--text-primary);
}

.heading-5 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}

.heading-6 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
}

/* Browse Categories */
.browse {
  display: flex;
  justify-content: center;
}

/* Cards */
.venue-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-medium);
  transition: all 0.3s ease;
  border-radius: 0;
}

.venue-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-5px);
}

.venue-card img {
  height: 250px;
  object-fit: cover;
}

option.opt {
  margin-top: 5px;
  padding: 10px 15px;
  font-weight: 300;
}

option.opt-2 {
  padding: 10px 15px;
  margin-top: 5px;
}

option.opt-2:hover {
  background-color: #ffffff90;
  /* color: var(--text-secondary); */
}

option.opt:hover {
  background-color: #ffffff90;
  /* color: var(--text-secondary); */
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000 0%, transparent 100%);
  opacity: 0.7;
}

/* Footer Links */
footer a:hover {
  color: var(--brand-primary) !important;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.25rem rgba(217, 251, 6, 0.25);
}

.info.form-control::placeholder {
  color: #9c9c9cb3 !important;
}

/* Badge */
.badge-custom {
  background-color: var(--border-medium);
  color: var(--brand-primary);
  font-size: 11px;
  text-transform: uppercase;
  padding: 5px 10px;
}

/* Responsive */
@media (max-width: 767px) {
  .hero-section {
    padding: 80px 20px 60px;
    min-height: 80vh;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}
