* {
  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:relative;z-index:1000;}
  header nav{display:none;}
  .burger{display:block;}
  header .header-row{padding:10px 12px;}
  .logo img{height:64px;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,.55);
    opacity:0; visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index:9999;
  }

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

  header nav#nav_open a{display:block;padding:14px 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:56px;}
  .burger{font-size:26px;}
}
/* ===== PAGE SPECIFIC ===== */

main {
  flex: 1;
}


/* Strip */

.strip {
  min-height: 520px;
  background: transparent;
}

.strip .carousel {
  min-height: 520px;
}

.strip .bg_car {
  min-height: 510px;
  background-size: cover;
  background-position: center center;
  background-size: cover;
}

.strip .bg1 {
  background-position: 50% 60%;
}

.strip .bg2 {
  background-position: center 70%;
}

.strip .bg3 {
  background-position: 50% 100% !important;
}

.strip .bg4 {
  background-position: 50% 100% !important;
}

.strip .carousel-item {
  position: relative;
}

.strip .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(58, 38, 30, 0.62), rgba(58, 38, 30, 0.1));
  pointer-events: none;
  z-index: 1;
}

.strip .carousel-caption {
  z-index: 2;
  text-align: left;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 90px 70px;
}

.strip .carousel-caption h5 {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  color: linen;
}

.strip .carousel-caption p {
  margin: 10px 0 0;
  max-width: 520px;
  color: rgba(246, 239, 230, 0.92);
  font-weight: 700;
}

.strip .carousel-caption.d-none {
  display: block !important;
}

.strip .carousel-control-prev,
.strip .carousel-control-next {
  width: 70px;
  opacity: 1;
  z-index: 3;
}

.strip .carousel-control-prev-icon,
.strip .carousel-control-next-icon {
  width: 45px;
  height: 45px;
  border-radius: 15px;
  border: 5px solid rgba(201, 178, 158, 0.75);
  background-color: rgba(246, 239, 230, 0.78);
  background-size: 45% 45%;
  box-shadow: 0 10px 20px rgba(58, 38, 30, 0.08);
}

.strip .carousel-control-prev-icon:hover,
.strip .carousel-control-next-icon:hover {
  background-color: rgba(246, 239, 230, 0.92);
}

/* Dots */

.strip .carousel-indicators {
  margin-bottom: 15px;
  z-index: 3;
}

.strip .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 5px solid rgba(201, 178, 158, 0.85);
  background-color: rgba(246, 239, 230, 0.6);
  opacity: 1;
  margin: 0 5px;
}

.strip .carousel-indicators .active {
  background-color: sienna;
  transform: scale(1.2);
}

.slider-mobile {
  display: none;
  height: 320px;
  background-image: url("./images/slide1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 5px solid rgba(201, 178, 158, 0.7);
}

.slider-mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(58, 38, 30, 0.62), rgba(58, 38, 30, 0.1));
  pointer-events: none;
}

.slider-mobile .cap {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 15px 20px;
}

.slider-mobile .cap h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: linen;
}

.slider-mobile .cap p {
  margin: 10px 0 0;
  max-width: 520px;
  color: rgba(246, 239, 230, 0.92);
  font-weight: 700;
}

/* =========================
   HOME 
========================= */

.home {
  background: linen;
}

.home-title {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 1000px;
  border: 5px solid rgba(201, 178, 158, 0.9);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
  font-size: 0.78rem;
  color: saddlebrown;
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
  border: 5px solid rgba(201, 178, 158, 0.9);
  transition: 250ms;
}

.btn-primary {
  background: sienna;
  color: linen;
  border-color: rgba(139, 94, 60, 0.6);
}

.btn-primary:hover {
  transform: translateY(-5px);
  filter: brightness(1.03);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: saddlebrown;
}

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

.home-story {
  padding: 40px 0;
}

.story-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.story-text h2 {
  margin: 10px 0 10px;
  font-size: 2.2rem;
}

.story-text p {
  margin: 0 0 10px;
  color: rgba(58, 38, 30, 0.78);
  line-height: 1.8;
  font-weight: 700;
}

.story-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.img-card {
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid rgba(201, 178, 158, 0.9);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 30px rgba(58, 38, 30, 0.08);
}

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

.home-cards {
  padding: 10px 0 45px;
}

.section-head {
  text-align: center;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0;
  font-size: 2rem;
}

.section-head p {
  margin: 10px auto 0;
  max-width: 640px;
  color: rgba(58, 38, 30, 0.75);
  font-weight: 700;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.card {
  text-decoration: none;
  color: saddlebrown;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid rgba(201, 178, 158, 0.9);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 25px rgba(58, 38, 30, 0.07);
  transition: 260ms;
}

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

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

.card-body {
  padding: 15px 15px 15px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card-body p {
  margin: 0;
  color: rgba(58, 38, 30, 0.75);
  line-height: 1.7;
  font-weight: 700;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: sienna;
  font-weight: 900;
}

.home-menu {
  padding: 0 0 45px;
}

.menu-wrap {
  border-radius: 20px;
  border: 5px solid rgba(201, 178, 158, 0.9);
  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);
  padding: 20px;
}

.menu-head {
  text-align: center;
  margin-bottom: 10px;
}

.menu-head h2 {
  margin: 5px 0;
}

.menu-head p {
  margin: 0;
  color: rgba(58, 38, 30, 0.75);
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.menu-item {
  border-radius: 15px;
  border: 5px solid rgba(201, 178, 158, 0.75);
  background: rgba(255, 255, 255, 0.55);
  padding: 10px 10px;
}

.menu-item h4 {
  margin: 0 0 5px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.menu-item h4 span {
  color: sienna;
  font-weight: 900;
}

.menu-item p {
  margin: 0;
  color: rgba(58, 38, 30, 0.75);
  line-height: 1.6;
  font-weight: 700;
}

.menu-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.home-cta {
  padding: 0 0 50px;
}

.cta-card {
  border-radius: 20px;
  border: 5px solid rgba(201, 178, 158, 0.9);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 30px rgba(58, 38, 30, 0.08);
  padding: 20px 20px;
  text-align: center;
}

.cta-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.cta-card p {
  margin: 0 0 15px;
  color: rgba(58, 38, 30, 0.75);
  font-weight: 700;
}

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

