* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: sans-serif;
  background: linen;
  color: saddlebrown;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container-fluid {
  width: 100%;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
}

header {
  min-height: 90px;
  background: linen;
  border-bottom: 5px solid tan;
}

header .header-row {
  min-height: 90px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
  transition: 500ms;
  margin-right: 5px;
  padding-right: 5px;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo img:active {
  transform: scale(1.1);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 35px;
}

nav ul a {
  color: saddlebrown;
  text-decoration: none;
  transition: 500ms;
  position: relative;
  display: inline-block;
  font-size: 1.05em;
  font-weight: 700;
}

nav ul a:hover {
  color: sienna;
  transform: scale(1.08);
}

nav ul a:active {
  transform: scale(1.15);
}

nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 5px;
  background: sienna;
  transition: 500ms;
}

nav ul a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: saddlebrown;
  transition: 500ms;
}

.burger:hover {
  color: sienna;
  transform: scale(1.08);
}

.burger:active {
  transform: scale(1.15);
}

.site-footer {
  margin-top: auto;
  padding: 25px 0 35px;
  background: linen;
  color: saddlebrown;
}

.footer-card {
  position: relative;
  border: 5px solid rgba(201, 178, 158, 0.9);
  border-radius: 20px;
  padding: 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(246, 239, 230, 0.85));
  box-shadow: 0 10px 30px rgba(58, 38, 30, 0.08);
  overflow: hidden;
}

.footer-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: rgba(139, 94, 60, 0.18);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.footer-top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-brand {
  min-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: sienna;
  box-shadow: 0 0 0 5px rgba(139, 94, 60, 0.15);
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.25em;
}

.footer-text {
  margin: 0 0 10px 0;
  color: rgba(58, 38, 30, 0.75);
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-title {
  margin: 0 0 10px 0;
  font-size: 1.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  text-decoration: none;
  color: rgba(58, 38, 30, 0.88);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 250ms;
}

.footer-links a i {
  color: sienna;
}

.footer-links a:hover {
  color: sienna;
  transform: translateX(5px);
}

.footer-mini {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 5px solid rgba(201, 178, 158, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(58, 38, 30, 0.7);
  font-weight: 700;
}

.footer-bottom .name {
  color: sienna;
}

@media (max-width:768px) {
  header {
    position: sticky;
    z-index: 1000;
    top: 0;
  }

  header nav {
    display: none;
  }

  .burger {
    display: block;
  }

  header .header-row {
    padding: 10px 10px;
  }

  .logo img {
    height: 65px;
    margin: 0;
    padding: 0;
  }

  header nav#nav_open {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 90px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
  }

  header nav#nav_open ul {
    margin: 0;
    padding: 5px 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    background: linen;
    border-bottom: 5px solid tan;
    text-align: center;
  }

  header nav#nav_open a {
    display: block;
    padding: 15px 0;
  }

  header nav#nav_open.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width:340px) {
  .logo img {
    height: 55px;
  }

  .burger {
    font-size: 25px;
  }
}

/* ===== PAGE SPECIFIC ===== */

main {
  flex: 1;
}

/* ===== HEADER ===== */

/* ===== faq ===== */

.faq-page {
  padding-top: 40px;
  padding-bottom: 40px;
}

.faq-hero {
  text-align: center;
  margin-bottom: 20px;
}

.faq-hero h1 {
  margin: 0 0 10px;
  font-size: 40px;
  color: saddlebrown;
  font-weight: 800;
}

.faq-hero p {
  margin: 0 auto;
  max-width: 820px;
  color: rgba(58, 38, 30, 0.85);
}

.faq-wrap {
  margin-top: 20px;
}

.accordion-item {
  border: 5px solid rgba(201, 178, 158, 0.85);
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.accordion-button {
  font-weight: 900;
  color: saddlebrown;
  padding: 15px 15px;
  box-shadow: none !important;
}

.accordion-button.collapsed {
  background: rgba(246, 239, 230, 0.95);
}

.accordion-button[aria-expanded="true"] {
  background: rgba(201, 178, 158, 0.35);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.65);
  color: rgba(58, 38, 30, 0.8);
  padding: 20px;
}

/* ===== FOOTER ===== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 1000px;
  border: 5px solid rgba(201, 178, 158, 0.8);
  background: rgba(255, 255, 255, 0.55);
  color: saddlebrown;
  font-weight: 700;
  font-size: 0.92em;
}

.badge i {
  color: sienna;
}

.social-pill {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 15px;
  border: 5px solid rgba(201, 178, 158, 0.9);
  background: rgba(255, 255, 255, 0.55);
  color: saddlebrown;
  transition: 280ms;
  box-shadow: 0 10px 20px rgba(58, 38, 30, 0.07);
}

.social-pill .icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 94, 60, 0.12);
  border: 5px solid rgba(139, 94, 60, 0.18);
}

.social-pill .icon i {
  font-size: 20px;
  color: sienna;
}

.social-pill .txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.social-pill .txt strong {
  font-size: 1em;
}

.social-pill .txt small {
  color: rgba(58, 38, 30, 0.7);
  font-weight: 700;
}

.social-pill .go {
  margin-left: auto;
  color: rgba(58, 38, 30, 0.55);
}

.social-pill:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 94, 60, 0.55);
  box-shadow: 0 15px 25px rgba(58, 38, 30, 0.1);
}

.mini-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  border: 5px dashed rgba(201, 178, 158, 0.9);
  background: rgba(246, 239, 230, 0.6);
  color: rgba(58, 38, 30, 0.78);
  font-weight: 700;
  font-size: 0.92em;
}

.mini-item i {
  color: sienna;
}

.to-top {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 5px solid rgba(201, 178, 158, 0.9);
  background: rgba(255, 255, 255, 0.55);
  color: saddlebrown;
  transition: 250ms;
}

.to-top:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 94, 60, 0.55);
  color: sienna;
}

/* ===== Responsive ===== */
