/* ============================================
   RED BEARD OPS — Main Stylesheet
   Color Palette:
     Background:  #ffffff
     Text:        #1a1a1a
     Orange:      #e8621a  (beard orange)
     Dark:        #111111
     Mid Gray:    #f4f4f4
     Border:      #e0e0e0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:  #e8621a;
  --dark:    #111111;
  --white:   #ffffff;
  --gray:    #f4f4f4;
  --border:  #e0e0e0;
  --text:    #1a1a1a;
  --muted:   #666666;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-height: 70px;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--orange);
}

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.nav-logo-text span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(232, 98, 26, 0.15);
}

.nav-links a.active {
  color: var(--orange);
}

/* Shop button in nav */
.nav-links .nav-shop a {
  background: var(--orange);
  color: var(--white);
  border-radius: 4px;
  padding: 8px 16px;
}

.nav-links .nav-shop a:hover {
  background: #d4551a;
  color: var(--white);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(232,98,26,0.03) 40px,
    rgba(232,98,26,0.03) 80px
  );
  pointer-events: none;
}

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 24px rgba(232,98,26,0.3));
  animation: fadeUp 0.7s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 4px;
  line-height: 1;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 span { color: var(--orange); }

.hero-tagline {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 12px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 28px auto;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto 36px;
  color: #bbb;
  font-size: 1.05rem;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.35s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.45s ease both;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: #d4551a;
  border-color: #d4551a;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: #222;
  transform: translateY(-1px);
}

/* ── Section Base ── */
.section {
  padding: 72px 24px;
}

.section-alt {
  background: var(--gray);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 2px;
  line-height: 1.1;
}

.section-dark .section-title { color: var(--white); }

.section-subtitle {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-subtitle { color: #999; }

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.85rem;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-tag {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.card-link {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }

/* ── YouTube Banner ── */
.yt-banner {
  background: var(--dark);
  border-top: 3px solid var(--orange);
  padding: 48px 24px;
  text-align: center;
}

.yt-banner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.yt-banner p {
  color: #999;
  margin-bottom: 24px;
}

.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.yt-btn:hover {
  background: #cc0000;
  transform: translateY(-1px);
}

/* YouTube icon SVG inline */
.yt-icon {
  width: 22px;
  height: 22px;
}

/* ── About Strip ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-strip-text {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip-image {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 320px;
}

.about-strip-image img {
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(232,98,26,0.25));
}

/* ── Footer ── */
footer {
  background: #0a0a0a;
  color: #888;
  padding: 48px 24px 24px;
  border-top: 3px solid var(--orange);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

.footer-brand img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: #888;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

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

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 56px 24px 48px;
  text-align: center;
  border-bottom: 3px solid var(--orange);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  letter-spacing: 3px;
}

.page-hero h1 span { color: var(--orange); }

.page-hero p {
  color: #999;
  margin-top: 12px;
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--dark);
    padding: 16px;
    border-bottom: 2px solid var(--orange);
    gap: 4px;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .about-strip { grid-template-columns: 1fr; }
  .about-strip-image { min-height: 220px; padding: 32px; }
  .about-strip-text { padding: 40px 24px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero { padding: 60px 24px 56px; }
  .hero-logo { width: 120px; height: 120px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
