* {
  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);
  }

  .strip {
    display: none !important;
  }

  .slider-mobile {
    display: block !important;
  }

  .story-wrap {
    grid-template-columns: 1fr;
  }

  .cards-grid,.menu-grid {
    grid-template-columns: 1fr;
  }

  .img-card img {
    height: 280px;
  }
}

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

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

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

main {
  flex: 1;
}

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

/* ===== ABOUT ===== */

.about_strip {
  min-height: 220px;
  background: linen;
  border-bottom: 5px solid tan;
}

.about_strip .row {
  min-height: 220px;
}

.about_head h1 {
  margin: 0 0 10px 0;
  color: saddlebrown;
  font-size: 2.3em;
}

.about_small {
  margin: 0;
  max-width: 700px;
  line-height: 1.7;
  color: saddlebrown;
}

.about_main {
  padding: 0;
  background: white;
}

.about_hero_box {
  width: 100%;
  min-height: 760px;
  padding: 80px 0;
  background: url("./images/aboutbackground.avif") center/cover no-repeat;
  position: relative;
  border-top: 5px solid wheat;
  border-bottom: 5px solid wheat;
}

.about_hero_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.about_hero_box .container {
  position: relative;
  z-index: 2;
}

.about_card {
  position: relative;
  width: min(850px, 92%);
  margin: 0 auto;
  padding: 70px 25px 30px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.58);
  border: 5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  color: white;
}

.about_avatar {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  background: white;
}

.about_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about_card h2 {
  margin: 0 0 20px 0;
  font-size: 2.1em;
}

.about_card p {
  margin: 0 0 15px 0;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.about_btn2 {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 40px;
  border-radius: 10px;
  border: 5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: 500ms;
}

.about_btn2:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.9);
}

/* hidden read more */

.about_more_js {
  margin-top: 20px;
  text-align: left;
  border-top: 5px solid rgba(255, 255, 255, 0.18);
  padding-top: 15px;
  display: none;
}

.about_more_js.show {
  display: block;
}

.about_details {
  padding: 70px 0;
  background: white;
}

.about_details_box {
  width: min(1000px, 95%);
  background: white;
  border: 5px solid wheat;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.about_details_box h3 {
  margin: 0 0 10px 0;
  color: saddlebrown;
  text-align: center;
}

.about_details_box p {
  margin: 0 0 20px 0;
  line-height: 1.9;
  color: saddlebrown;
  text-align: center;
}

.about_grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about_item {
  width: 48%;
  background: linen;
  border: 5px solid wheat;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
}

.about_item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
  border: 5px solid wheat;
  margin-bottom: 10px;
}

.about_item h4 {
  margin: 0 0 10px 0;
  color: saddlebrown;
}

.about_item p {
  margin: 0;
  color: saddlebrown;
  line-height: 1.75;
  text-align: center;
}

/* ===== 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 ===== */
