:root {
  --primary-color: #7c1e35;
  --accent-color: #c0b9dd;
  --bg-light: #f7f5ef;
  --text-dark: #1a1a1a;
  --white: #ffffff;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Roboto", sans-serif;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}


h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #a12244;
  text-decoration: underline;
}
.custom-navbar {
  background: linear-gradient(to right, #7c1e35, #1a1a1a);
  padding: 0.8rem 1rem;
  z-index: 1000;
}

.custom-navbar .nav-link {
  color: #fff;
  margin-left: 1rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
  color: #ffd700;
}
.custom-navbar .dropdown-menu {
  background-color: #1a1a1a;
  border: none;
  border-radius: 0;
}
.custom-navbar .dropdown-item {
  color: #fff;
  transition: background-color 0.3s ease;
}
.custom-navbar .dropdown-item:hover {
  background-color: #7c1e35;
  color: #fff;
}
.navbar-toggler{
  background-color: #f4f4f4;
}
.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 700;
}
.hero-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8rem 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
}

.hero-section .btn {
  border-radius: var(--radius);
  border: 2px solid var(--white);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}
.card {
  border-radius: var(--radius);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
}

.card ul {
  padding-left: 0;
  list-style: none;
}

.card ul li {
  padding: 0.25rem 0;
}
.bg-primary-dark {
  background-color: var(--primary-color);
  color: var(--white);
}

.bg-primary-dark .btn {
  border-radius: var(--radius);
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border: none;
  background-color: var(--white);
  color: var(--primary-color);
}

.bg-primary-dark .btn:hover {
  background-color: #f4f4f4;
}
footer {
  background-color: var(--text-dark);
  padding: 2rem 0;
  font-size: 0.95rem;
}

footer a {
  color: var(--accent-color);
  margin-right: 1rem;
}

footer a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
}
