* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #1c1c1e;
  color: #f9f6f2;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  color: #f9f6f2;
}

p {
  color: #ededed;
}

a {
  text-decoration: none;
}

.text-bordeaux {
  color: #8b1e3f !important;
}

.bg-bordeaux {
  background-color: #8b1e3f !important;
}

.border-bordeaux {
  border: 2px solid #8b1e3f !important;
}

.btn-bordeaux {
  background-color: #8b1e3f;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-bordeaux:hover,
.btn-outline-bordeaux:hover {
  background-color: #a3254c;
  color: #fff;
}

.btn-outline-bordeaux {
  background-color: transparent;
  color: #8b1e3f;
  border: 2px solid #8b1e3f;
  transition: all 0.3s ease;
}

.btn-outline-bordeaux:focus,
.btn-bordeaux:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 30, 63, 0.4);
  outline: none;
}

.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(28, 28, 30, 0.7), rgba(28, 28, 30, 0.7)),
    url("assets/img/hero.jpg") center/cover no-repeat;
}

.card {
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
  background-color: #f9f6f2;
}

.card:hover {
  transform: translateY(-5px);
}

.form-control,
.form-select {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #1c1c1e;
}

.form-control:focus {
  border-color: #8b1e3f;
  box-shadow: 0 0 0 0.25rem rgba(139, 30, 63, 0.25);
}

.navbar {
  background-color: #1c1c1e;
}

.navbar .nav-link {
  color: #f9f6f2;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: wheat;
}

footer {
  background-color: #2a2a2d;
  padding: 2rem 0;
  color: #f9f6f2;
  border-top: 1px solid #3d3d3d;
}

footer a {
  color: #8b1e3f;
}

footer a:hover {
  text-decoration: underline;
}
.bg-bordeaux {
  background-color: #800020;
}
.text-bordeaux {
  color: #800020;
}
.btn-bordeaux {
  background-color: #800020;
  color: #fff;
}
.btn-bordeaux:hover,
.btn-outline-bordeaux:hover {
  background-color: #66001a;
  color: #fff;
}
.btn-outline-bordeaux {
  border: 1px solid #800020;
  color: #800020;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 4rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

[data-aos] {
  transition-property: opacity, transform;
}
