/* =============================================
   COLDROCK BAR & LOUNGE — Shared Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Amatic+SC:wght@700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:  #f04404;
  --black:   #000000;
  --dark:    #242424;
  --footer:  #333333;
  --light:   #f5f5f5;
  --light2:  #f2f2f2;
  --white:   #ffffff;
  --img:     /images;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  margin-top: 80px;
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-family: 'Amatic SC', handwriting;
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.page-hero p {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: none;
}

.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  background: #fff;
  color: #000;
}

.btn-outline-dark {
  border: 2px solid #000;
  color: #000;
  background: transparent;
}
.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
}
.btn-orange:hover {
  background: transparent;
  color: var(--orange);
}

.btn-outline-orange {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

/* ---------- Section Utilities ---------- */
.section-title {
  font-family: 'Amatic SC', handwriting;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 60px 40px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto 40px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-logo p {
  font-size: 12px;
  color: #aaa;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #aaa;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 12px;
  color: #888;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

/* ---------- Location & Hours Cards ---------- */
.location-hours-section {
  background: #111;
  padding: 0;
}

.location-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lh-card {
  background: var(--orange);
  padding: 48px 40px;
  color: #fff;
}

.lh-card h2 {
  font-family: 'Amatic SC', handwriting;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.lh-card p, .lh-card li {
  font-size: 14px;
  line-height: 1.8;
}

/* ---------- Blog Cards (shared: index + blog detail pages) ---------- */
.blog-card {
  background: #1c1c1c;
  overflow: hidden;
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card-meta {
  font-size: 11px;
  color: #666;
  margin-bottom: 12px;
}
.blog-card a.read-more {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}
.blog-card a.read-more:hover { opacity: 0.7; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }

  .main-nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: #000;
    padding: 20px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 16px; }

  .nav-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .location-hours-grid { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: 48px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
