/* ===== FLAT06 STAY HUB — Holding Site Design Fidelity ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f47920;
  --dark: #333333;
  --darker: #222222;
  --white: #ffffff;
  --text-muted: #999;
  --radius: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #333;
  background: var(--white);
  line-height: 1.6;
}

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

/* ===== NAVBAR — Transparent over hero (Holding-style) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(34,34,34,0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
}

.nav-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: #d96a1a;
}

/* ===== HERO — Full-bleed image + dark overlay (Holding-style) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.tag-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.tag-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-title {
  font-family: 'Century Gothic', 'Futura', 'Avenir', sans-serif;
  font-weight: 300;
  font-size: 67px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .title-accent {
  color: var(--orange);
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
}

/* ===== BRANCH GRID (White section, 3-column cards — unchanged) ===== */
.branches {
  padding: 80px 0 100px;
  background: var(--white);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.branch-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.branch-card:hover .card-image img {
  transform: scale(1.05);
}

.card-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.card-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.card-mrt {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: #333;
  background: #f2f2f2;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.card-btn {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
}

/* ===== FOOTER — Holding-style multi-column (#333) ===== */
.footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #999;
  font-size: 18px;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--orange);
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
}

.footer-nav ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-contact ul li a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav ul li a:hover,
.footer-contact ul li a:hover {
  color: var(--orange);
}

.footer-contact ul li {
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact ul li i {
  color: var(--orange);
  margin-top: 3px;
  min-width: 16px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 40px; }
  .hero-subtitle { font-size: 15px; }
  .nav-container { height: 72px; padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .branch-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .nav-cta { padding: 8px 16px; font-size: 11px; }
  .hero-title { font-size: 32px; }
}
