:root {
  --primary-maroon: #6a1b1b;
  --accent-gold: #d4af37;
  --light-cream: #fff8e7;
  --dark-text: #333;
  --font-heading: "Cinzel", serif;
  --font: "Poppins", sans-serif;
}
html,
body {
  height: 100%;
}

body {
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-wrapper {
  flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: var(--font-heading);
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-custom {
  background-color: var(--primary-maroon);
}

.navbar-custom .nav-link {
  color: white !important;
  margin-left: 15px;
  transition: color 0.3s;
  font-weight: 500;
  cursor: pointer;
}

.navbar-custom .nav-link:hover {
  color: var(--accent-gold) !important;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(212, 175, 55)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-custom .navbar-toggler:focus,
.navbar-custom .navbar-toggler:active {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.5);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--light-cream);
  border-radius: 25px;
}

.btn-gold:hover {
  background-color: #b9982e;
  color: var(--light-cream);
}

/* --- FAQ SECTION ------------------------------- */
.faq-item {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: #fff;
  color: var(--dark-text);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px !important;
  border: 1px solid var(--primary-maroon);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .accordion-button {
    font-size: 0.9rem;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
}

.accordion-button:hover,
.accordion-button:not(.collapsed) {
  background-color: var(--primary-maroon);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-maroon);
  color: var(--accent-gold);
}

.faq-icon {
  transition: transform 0.2s;
}

.accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
}

.accordion-button::after {
  display: none;
}

.accordion-body {
  padding: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-top: none;
  border-radius: 0 0 12px 12px;
}


/* Footer styles */
footer {
  background: var(--primary-maroon);
  color: var(--light-cream);
  padding: 2rem 1rem;
  margin-top: 3rem;
}

footer a {
  color: var(--accent-gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-logo {
  height: 100px;
  width: auto;
  border-radius: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid var(--accent-gold);
  margin-top: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Updated Social Icons */
.social-icons a {
  font-size: 1.25rem;
  color: var(--light-cream);
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--accent-gold);
}

@media (max-width: 426px) {
  footer {
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto;
    height: 150px;
  }
  .social-icons {
    justify-content: center;
  }
}

/* Buttons */
.btn {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

/* Primary Button */
.btn-primary {
  background-color: var(--primary-maroon);
  color: white;
}

.btn-primary:hover {
  background-color: #551515;
}

/* Secondary Button */
.btn-secondary {
  background-color: var(--accent-gold);
  color: var(--dark-text);
}

.btn-secondary:hover {
  background-color: #b89035;
}

/* Outline Button */
.btn-outline-maroon {
  background: transparent;
  border: 2px solid var(--primary-maroon);
  color: var(--primary-maroon);
}

.btn-outline-maroon:hover {
  background-color: var(--primary-maroon);
  color: white;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--light-cream);
  color: var(--light-cream);
}

.btn-outline-light:hover {
  background-color: var(--light-cream);
  color: var(--dark-text);
}
