/* --------------------------
   GENERAL RESET & BODY
--------------------------- */
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f5f1ec; /* cream background */
    color: #3e2c23; /* dark brown text */
}

/* --------------------------
   NAVBAR (Café Brown)
--------------------------- */
.navbar {
    background-color: #4b3621; /* coffee brown */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    color: #f8f5f2 !important;
}

.nav-link {
    font-weight: 500;
    color: #e6d3c3 !important; /* soft beige */
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffffff !important;
}

.nav-link.active {
    color: #ffffff !important;
    border-bottom: 3px solid #d2b48c; /* light coffee accent */
}

/* --------------------------
   HEADER / HERO TEXT
--------------------------- */
header h1 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 2.2rem;
    background: rgba(62, 44, 35, 0.6); /* brown overlay */
    padding: 10px 15px;
    border-radius: 8px;
}

/* --------------------------
   MAIN CONTENT
--------------------------- */
main h2, main h3 {
    color: #3e2c23;
}

main p.lead {
    font-size: 1.2rem;
    color: #5a3e2b;
}

main p.fw-bold {
    color: #3e2c23;
}

/* --------------------------
   CARDS (Luxury feel)
--------------------------- */
.card {
    border: none;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* PREMIUM FOOTER */
.custom-footer {
  background: #3b2a1a;
  color: #f5f1ec;
  padding: 50px 0;
}

.custom-footer h5 {
  color: #d2b48c;
  margin-bottom: 15px;
}

.custom-footer a {
  color: #f5f1ec;
  text-decoration: none;
  transition: 0.3s;
}

.custom-footer a:hover {
  color: #d2b48c;
}

.custom-footer ul {
  padding-left: 0;
}

.custom-footer ul li {
  margin-bottom: 8px;
}

/* --------------------------
   IMAGES
--------------------------- */
.card-img {
    transition: transform 0.4s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
}

/* --------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
        bottom: 10px;
        left: 10px;
    }
}

/* HERO IMAGE */
.hero-img {
  height: 90vh;
  object-fit: cover;
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 20px 30px;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

/* NAVBAR */
.custom-navbar {
  background: rgba(59,42,26,0.95);
}

/* BUTTON */
.btn-coffee {
  background: #6f4e37;
  color: white;
  border-radius: 20px;
}

/* FOOTER */
.custom-footer {
  background: #3b2a1a;
  color: #fff;
  padding: 40px 0;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-img {
    height: 60vh;
  }

  .hero-text {
    padding: 15px;
  }
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; /* ensure it sits above carousel */
  text-align: center;
  background: rgba(0, 0, 0, 0.35); /* semi-transparent overlay */
  padding: 20px 30px;
  border-radius: 10px;
  color: #f5e0c3;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 10px;
}

.hero-text .tagline {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic;
  letter-spacing: 1px;
  margin: 0;
  color: #f5e0c3;
}

/* --- About Page Styles --- */
.hero-img {
      height: 400px;
      object-fit: cover;
    }

    .hero-text h1 {
      font-size: 3rem;
      color: #FFFFFF;
    }

    .hero-text .tagline {
      font-style: italic;
      font-size: 1.2rem;
      color: #9c460a;
    }

    .section {
      padding: 80px 0;
    }

    .section h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      text-align: center;
    }

    .section p {
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .section-image {
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      width: 100%;
      height: auto;
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 1s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Alternating sections */
    .section:nth-child(even) .section-text {
      order: 2;
    }

    .section-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media(max-width:768px){
      .section .col-md-6 {
        order: unset !important;
      }
      .hero-text h1 {
        font-size: 2rem;
      }
    }

    /* Add dashed lines between menu items */
.table tbody tr {
  border-bottom: 1px dashed #d2b48c; /* soft brown dashed line */
}

.table tbody tr:last-child {
  border-bottom: none; /* remove line for the last item */
}

/* Optional: Make table cells a bit more spaced */
.table td {
  padding: 12px 8px;
}

/* Optional: Price bold and aligned to right */
.table td:last-child {
  font-weight: bold;
  text-align: right;
  color: #6f4e37;
}

/* Elegant Menu Table Compact Style */
.menu-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  border-left: 5px solid #6f4e37; /* coffee accent line */
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(111, 78, 55, 0.2);
}

.price {
  font-weight: bold;
  color: #6f4e37;
}

.menu-title {
  font-weight: 700;
  text-align: center;
  color: #3e2c23;
  margin-bottom: 25px;
  position: relative;
}

.menu-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #6f4e37;
  display: block;
  margin: 10px auto 0;
}

/* Ensure card rows have equal height */
.card {
  height: 100%;
  display: flex;
  flex-direction: row; /* keep image left, info right */
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Make images cover their column */
.card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem 0 0 0.5rem; /* rounded left side */
}

/* Make map responsive in horizontal card */
.card .ratio {
  margin-top: 0.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

/* Horizontal Cards */
.card-horizontal {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  height: 100%;
}

    /* Horizontal Cards */
    .card-horizontal {
      display: flex;
      flex: 1 1 auto;
      flex-direction: row;
      height: 100%;
    }
    .card-horizontal img {
      width: 40%;
      object-fit: cover;
      border-radius: 0.5rem 0 0 0.5rem;
    }
    .card-horizontal .card-body {
      width: 60%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 1rem;
    }
    .card .ratio {
      margin-top: 0.5rem;
      border-radius: 0.25rem;
      overflow: hidden;
    }
    .branch-col {
      display: flex;
    }

main section {
  background: linear-gradient(145deg, #fffaf5, #f1e7dc);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  border: 1px solid rgba(111, 78, 55, 0.2);
  box-shadow: 0 8px 25px rgba(62, 44, 35, 0.08);
}

body {
  background: #fdfaf5; /* lighter cream */
}

