/* Hunters Marketing & Events — red brand theme (loads after styles.css) */
:root {
  --red: #e31e24;
  --red-dark: #b3161c;
  --red-deep: #7d0f14;
  --red-glow: rgba(227, 30, 36, 0.4);
}

/* Photo hero with red-tinted overlay */
.hero {
  background: linear-gradient(200deg, rgba(125, 15, 20, 0.72) 0%, rgba(90, 10, 14, 0.9) 60%, #3d060a 100%),
    url("../assets/images/gallery/image28.jpg") center / cover no-repeat;
}

.hero-arc-1 {
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-arc-2 {
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-glow {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
}

.hero-badge-dot {
  background: #ffd166;
}

.hero h1 span {
  color: #ffd166;
}

.btn-primary {
  background: var(--red);
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
}

/* Section accents flip to red-first */
.section-label {
  color: var(--red);
}

.section-label::before {
  background: var(--red);
}

.section-title .accent {
  color: var(--red);
}

.section-title .accent-red {
  color: var(--teal);
}

.about-highlight {
  border-left-color: var(--red);
  color: var(--red-deep);
}

.tag {
  color: var(--red-dark);
}

.tag:hover {
  background: var(--red);
  border-color: var(--red);
}

.service-icon {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
}

.service-card::before {
  background: linear-gradient(90deg, var(--red), var(--teal));
}

/* Mission cards */
.mission-card h3 {
  color: var(--red) !important;
}

/* Values stays red (already) — deepen gradient */
.values {
  background: linear-gradient(160deg, var(--red-deep), var(--red));
}

/* Contact section in deep red */
.contact {
  background: linear-gradient(160deg, #4a080c 0%, var(--red-deep) 100%);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffd166;
}

/* Team avatars in red */
.team-avatar {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
}

.team-avatar::before {
  border-color: var(--teal);
  border-top-color: transparent;
  border-right-color: transparent;
}

.team-card:hover {
  border-color: var(--red);
}

.team-card p {
  color: var(--red-dark);
}

/* Showcase banner between values and portfolio */
.showcase-banner {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(rgba(10, 8, 8, 0.62), rgba(61, 6, 10, 0.78)),
    url("../assets/images/gallery/image30.jpg") center / cover no-repeat fixed;
  color: var(--white);
}

.showcase-banner-content {
  width: min(1000px, 92vw);
  margin-inline: auto;
  text-align: center;
}

.showcase-banner-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 2.5rem;
}

.showcase-banner-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.showcase-banner-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.showcase-banner-stats strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #ffd166;
}

.showcase-banner-stats span {
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .showcase-banner {
    background-attachment: scroll;
  }
}

/* 8th portfolio tile spans full width */
.portfolio-item:nth-child(8) {
  grid-column: span 12;
  aspect-ratio: 21/8;
}

@media (max-width: 1024px) {
  .portfolio-item:nth-child(8) {
    grid-column: span 6;
    aspect-ratio: 16/10;
  }
}

@media (max-width: 768px) {
  .portfolio-item:nth-child(8) {
    grid-column: span 12;
  }
}

/* Navbar & footer logos — white card on dark backgrounds */
.nav-logo img,
.footer-logo {
  background: var(--white);
  padding: 6px 12px;
  border-radius: 10px;
  height: auto;
  max-height: 52px;
  width: auto;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}
