/* IMPORT GLOBAL STYLE (NAVBAR, FOOTER, BASE) */
@import url("style.css");
@import url("project.css");

/* ROOT VARIABLE — WARNA & BACKGROUND GLOBAL */
:root {
  --red-primary: #e50914;
  --black: #111111;
  --white: #ffffff;
  --bg-hero: url("../img/location.jpg");
}

/* ============
   # BREADCRUMB
   ============ */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 18px;
  color: white;
}

.breadcrumb-link {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-link:hover {
  color: #f0f0f0;
}

.breadcrumb-link.home-active {
  color: var(--red-primary);
  font-weight: 700;
}

.breadcrumb-separator-text {
  color: #fff;
  font-weight: 700;
}

/* ================================================
   # HERO SECTION
================================================ */
.location-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/location.jpg") center/cover no-repeat;
  height: 320px;
}

.location-title {
  font-size: 42px;
  font-weight: 700;
}

/* ================================================
   # SECTION TITLE STYLES
================================================ */
.sub-head {
  color: var(--red-primary);
  font-size: 13px;
  font-weight: 700;
}

/* Title + Pin */
.sub-head-aligned {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.icon-with-pin-style {
  color: var(--red-primary);
  font-size: 1.5rem;
  margin-right: 8px;
}

.title-2line {
  font-size: 28px;
  font-weight: 700;
  max-width: 480px;
  margin: 0 auto;
}

/* ================================================
   # CARD LOCATION
================================================ */
.location-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
}

#branchSelect {
  height: 45px;
  font-size: 16px;
}

/* ================================================
   # BUTTON GLOBAL
================================================ */
.btn-rute {
  display: inline-flex;
  align-items: center;
  background-color: var(--red-primary);
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(214, 0, 0, 0.4);
  transition: 0.3s;
}

.btn-rute:hover {
  background: #a80000;
  box-shadow: 0 6px 10px rgba(214, 0, 0, 0.5);
}

.btn-rute i {
  margin-left: 8px;
}

.btn-rute .flip-vertical {
  transform: scaleY(-1);
  display: inline-block;
}
