/*
Theme Name: Peter With Motorcycle
Theme URI: https://peterwithmotorcycle.com
Author: Peter with Motorcycle
Author URI: https://peterwithmotorcycle.com
Description: Custom theme for Peter With Motorcycle - adventure moto content creator from Kosovo
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: peterwithmotorcycle
*/

/* =============================================
   TOKENS
============================================= */
:root {
  --amber:      #F5A623;
  --ember:      #E8611A;
  --asphalt:    #111111;
  --carbon:     #1A1A1A;
  --smoke:      #2B2B2B;
  --dust:       #888888;
  --fog:        #CCCCCC;
  --white:      #F7F4EF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius: 4px;
  --transition: 0.25s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--amber); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ember); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

p { margin-bottom: 1.2rem; }

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

.section { padding: 80px 0; }
.section--dark  { background: var(--asphalt); }
.section--carbon { background: var(--carbon); }
.section--smoke  { background: var(--smoke); }

/* =============================================
   HEADER / NAV
============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo span { color: var(--white); }
.site-logo span:last-child { color: var(--amber); }

.logo-helmet {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 50% 50% 45% 45%;
  position: relative;
  flex-shrink: 0;
}

.logo-helmet::after {
  content: '';
  position: absolute;
  top: 40%; left: 12%;
  width: 76%;
  height: 30%;
  background: rgba(0,0,0,0.35);
  border-radius: 2px;
}

#main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

#main-nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

#main-nav a:hover,
#main-nav a.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.nav-cta {
  background: var(--amber);
  color: var(--asphalt) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
}

.nav-cta:hover { background: var(--ember); color: var(--white) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--asphalt);
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(232,97,26,0.08) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 40%, var(--asphalt) 100%);
  z-index: 1;
}

/* Road line signature element */
.road-lines {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--amber) 0px,
    var(--amber) 40px,
    transparent 40px,
    transparent 80px
  );
  z-index: 2;
  animation: road-scroll 1.5s linear infinite;
}

@keyframes road-scroll {
  from { background-position: 0 0; }
  to   { background-position: 80px 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--amber);
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 28px;
  color: var(--white);
}

.hero-title em {
  font-style: normal;
  color: var(--amber);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--fog);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--asphalt);
}

.btn-primary:hover {
  background: var(--ember);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

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

.hero-stats {
  margin-top: 60px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item { }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--dust);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.hero-image-side {
  position: absolute;
  right: 0; top: 68px; bottom: 0;
  width: 45%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-profile-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--amber);
  box-shadow: 0 0 60px rgba(245,166,35,0.3), 0 0 120px rgba(232,97,26,0.15);
  filter: grayscale(20%);
}

/* =============================================
   ABOUT
============================================= */
#about {
  background: var(--carbon);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 24px;
}

.about-text {
  color: var(--fog);
  font-size: 1rem;
  line-height: 1.8;
}

.bike-card {
  background: var(--smoke);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.bike-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--ember));
}

.bike-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.bike-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.bike-specs {
  list-style: none;
  margin-top: 20px;
}

.bike-specs li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: var(--dust);
}

.bike-specs li:last-child { border-bottom: none; }
.bike-specs li strong { color: var(--white); }

/* =============================================
   LATEST VIDEOS / BLOG
============================================= */
#blog {
  background: var(--asphalt);
  padding: 100px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--carbon);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), border-color var(--transition);
}

.post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.3);
}

.post-card-thumb {
  aspect-ratio: 16/9;
  background: var(--smoke);
  overflow: hidden;
}

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

.post-card:hover .post-card-thumb img { transform: scale(1.05); }

.post-card-body { padding: 24px; }

.post-card-cat {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.post-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.post-card-meta {
  font-size: 0.75rem;
  color: var(--dust);
}

/* =============================================
   SPONSORS
============================================= */
#sponsors {
  background: var(--carbon);
  padding: 60px 0;
  border-top: 1px solid rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(245,166,35,0.1);
}

.sponsors-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 36px;
}

.sponsors-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.sponsor-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dust);
  transition: color var(--transition);
  text-decoration: none;
}

.sponsor-item:hover { color: var(--amber); }

/* =============================================
   SOCIAL / CTA
============================================= */
#connect {
  background: var(--asphalt);
  padding: 100px 0;
  text-align: center;
}

.connect-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.connect-sub {
  font-size: 1rem;
  color: var(--fog);
  max-width: 480px;
  margin: 0 auto 44px;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--smoke);
  color: var(--fog);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--amber);
  color: var(--asphalt);
  border-color: var(--amber);
  transform: translateY(-3px);
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background: #0A0A0A;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--dust);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--dust);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--amber); }

/* =============================================
   SINGLE POST / PAGE
============================================= */
.entry-header { padding: 120px 0 60px; background: var(--carbon); }
.entry-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.entry-meta { font-size: 0.8rem; color: var(--dust); }

.entry-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 24px;
}

.entry-content p { color: var(--fog); margin-bottom: 1.5rem; }
.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content img { border-radius: 6px; margin: 2rem 0; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .hero-image-side { display: none; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  #main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--carbon); padding: 24px; }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 0; }
  #main-nav li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  #main-nav a { display: block; padding: 14px 0; }
  .menu-toggle { display: flex; }
  .posts-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  .sponsors-row { gap: 28px; }
}

/* =============================================
   WORDPRESS ALIGNMENT CLASSES
============================================= */
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { margin: 0 auto; text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--dust); margin-top: 8px; }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes pulse {
  0%, 100% { opacity:1; transform:scale(1); }
  50%       { opacity:0.3; transform:scale(1.6); }
}

@keyframes road-scroll {
  from { background-position: 0 0; }
  to   { background-position: 80px 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes helmetPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(245,166,35,0.0)); }
  50%       { filter: drop-shadow(0 0 40px rgba(245,166,35,0.25)); }
}

/* Hero content animations on load */
#hero .hero-eyebrow-wrap { animation: fadeInUp 0.7s ease 0.2s both; }
#hero h1                 { animation: fadeInUp 0.8s ease 0.35s both; }
#hero .hero-sub          { animation: fadeInUp 0.7s ease 0.5s both; }
#hero .hero-btns         { animation: fadeInUp 0.7s ease 0.65s both; }
#hero .hero-stats-row    { animation: fadeInUp 0.7s ease 0.8s both; }

/* Helmet glow pulse */
#helmet-float { animation: helmetPulse 3s ease-in-out infinite; }

/* Stelvio transition */
#stelvio-parallax {
  transition: transform 0.05s linear, box-shadow 0.3s ease;
  will-change: transform;
}

/* Hero rider bg */
#hero-rider-bg {
  will-change: transform;
}

/* =============================================
   RESPONSIVE FIXES
============================================= */

/* ---- TABLET (max 900px) ---- */
@media (max-width: 900px) {

  /* Grids go single column */
  .about-grid,
  .posts-grid,
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1.1fr"],
  [style*="grid-template-columns:1fr 1.1fr"],
  [style*="grid-template-columns: 1fr 1.15fr"],
  [style*="grid-template-columns:1fr 1.15fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns:1fr 1.2fr"],
  [style*="grid-template-columns: 1.2fr 1fr"],
  [style*="grid-template-columns:1.2fr 1fr"],
  [style*="grid-template-columns: 1.4fr 1fr"],
  [style*="grid-template-columns:1.4fr 1fr"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Hero image side hidden on tablet */
  .hero-image-side { display: none !important; }

  /* Helmet float hidden on small screens */
  #helmet-float { display: none !important; }

  /* Stats row wrap nicely */
  .hero-stats-row { gap: 0 !important; }
  .hero-stats-row > div {
    padding-right: 20px !important;
    margin-right: 20px !important;
  }

  /* Section padding reduced */
  [style*="padding:120px 0"] { padding: 72px 0 !important; }
  [style*="padding:100px 0"] { padding: 60px 0 !important; }
  [style*="padding:80px 0"]  { padding: 52px 0 !important; }
}

/* ---- MOBILE (max 640px) ---- */
@media (max-width: 640px) {

  /* Container padding */
  .container { padding: 0 18px !important; }

  /* Hero title smaller */
  #hero h1 { font-size: clamp(3.2rem, 14vw, 4.5rem) !important; }

  /* Stats row - 2x2 grid */
  .hero-stats-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    padding-top: 28px !important;
  }
  .hero-stats-row > div {
    border-right: none !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
  }

  /* Hero buttons stack */
  .hero-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .hero-btns a { width: 100% !important; justify-content: center !important; }

  /* Marquee smaller text */
  [style*="animation:marquee"] span { font-size: 0.72rem !important; }

  /* Section headers stack */
  .section-header,
  [style*="display:flex;align-items:flex-end;justify-content:space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  /* Blog posts single column */
  .posts-grid { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* Featured post card goes single column */
  [style*="grid-template-columns:1.4fr 1fr;gap:0"] {
    grid-template-columns: 1fr !important;
  }

  /* About section - rider photo full width */
  .will-reveal-left img[style*="max-height:580px"],
  .will-reveal-left img[style*="max-height:560px"] {
    max-height: 320px !important;
  }

  /* Stelvio section - hide giant watermark on mobile */
  [style*="font-size:20vw"],
  [style*="font-size:22vw"],
  [style*="font-size:18vw"] {
    display: none !important;
  }

  /* Sponsors wrap tighter */
  [style*="gap:44px;flex-wrap:wrap"],
  [style*="gap:48px;flex-wrap:wrap"] {
    gap: 20px !important;
  }

  /* Social links stack */
  .social-links,
  [style*="display:flex;gap:20px;justify-content:center"],
  [style*="display:flex;gap:14px;justify-content:center"],
  [style*="display:flex;gap:16px;justify-content:center"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .social-link { justify-content: center !important; }

  /* Bike specs card full width */
  .bike-card { padding: 24px 20px !important; }

  /* Nav menu full screen on mobile */
  #main-nav.open {
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(10,10,10,0.98) !important;
    backdrop-filter: blur(20px) !important;
    padding: 32px 24px !important;
    overflow-y: auto !important;
    z-index: 999 !important;
  }
  #main-nav.open ul {
    flex-direction: column !important;
    gap: 0 !important;
  }
  #main-nav.open li {
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }
  #main-nav.open a {
    display: block !important;
    padding: 18px 0 !important;
    font-size: 1.2rem !important;
    color: var(--white) !important;
    border-bottom: none !important;
  }
  #main-nav.open .nav-cta {
    display: inline-block !important;
    margin-top: 20px !important;
    padding: 14px 28px !important;
    text-align: center !important;
    border-radius: var(--radius) !important;
  }

  /* Header logo text shorter */
  .site-logo { font-size: 1.1rem !important; }

  /* Footer stack */
  .footer-inner { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }

  /* Contact form full width */
  .page-contact input, .page-contact textarea, .page-contact select,
  [style*="width:100%;padding:14px 16px"] { font-size: 16px !important; } /* prevent iOS zoom */

  /* Gallery grid */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr;gap:16px"] {
    grid-template-columns: 1fr !important;
  }

  /* Section labels */
  .section-label { font-size: 0.65rem !important; }

  /* Helmet images on motorcycle page */
  [style*="grid-template-columns:repeat(3,1fr)"] img { max-height: 200px !important; }

  /* Reduce hero section padding on mobile */
  #hero { padding-top: 68px !important; min-height: auto !important; padding-bottom: 60px !important; }

  /* About badge repositioned */
  [style*="bottom:28px;left:28px"] {
    bottom: 16px !important;
    left: 16px !important;
    font-size: 0.72rem !important;
    padding: 8px 14px !important;
  }

  /* Floating logo on about photo */
  [style*="top:-20px;right:-20px"] { top: -14px !important; right: -14px !important; }
  [style*="top:-20px;right:-20px"] img { width: 52px !important; height: 52px !important; }

  /* Stelvio image white bg box */
  #stelvio-parallax { padding: 16px !important; }

  /* Big section titles */
  [style*="font-size:clamp(3rem,7vw,5.5rem)"] { font-size: clamp(2.4rem,10vw,3.5rem) !important; }
  [style*="font-size:clamp(2.5rem,5vw,4rem)"] { font-size: clamp(2rem,8vw,3rem) !important; }
  [style*="font-size:clamp(2.5rem,5vw,4.2rem)"] { font-size: clamp(2rem,8vw,3rem) !important; }
}

/* ---- VERY SMALL (max 380px) ---- */
@media (max-width: 380px) {
  #hero h1 { font-size: 3rem !important; }
  .hero-btns a { font-size: 0.75rem !important; padding: 12px 16px !important; }
}

/* Hero container flush left */
#hero .container {
  padding-left: 48px !important;
}
@media (max-width: 640px) {
  #hero .container {
    padding-left: 18px !important;
  }
}

/* Social button hovers in hero */
.hero-btns a:nth-child(2):hover { background: #000000 !important; border-color: #000000 !important; } /* TikTok */
.hero-btns a:nth-child(3):hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important; border-color: transparent !important; } /* Instagram */
.hero-btns a:nth-child(4):hover { background: #FF0000 !important; border-color: #FF0000 !important; } /* YouTube */

/* ---- HERO SOCIAL BUTTON HOVERS ---- */
.hero-social-tiktok:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.hero-social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  border-color: transparent !important;
  color: #ffffff !important;
}
.hero-social-youtube:hover {
  background: #FF0000 !important;
  border-color: #FF0000 !important;
  color: #ffffff !important;
}
.hero-social-tiktok,
.hero-social-instagram,
.hero-social-youtube {
  transition: background 0.25s ease, border-color 0.25s ease !important;
}

/* ============================================
   WPForms styling to match dark/amber theme
============================================ */
.pwm-wpforms .wpforms-field-label {
  font-family: var(--font-display) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--dust) !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}
.pwm-wpforms input[type="text"],
.pwm-wpforms input[type="email"],
.pwm-wpforms input[type="tel"],
.pwm-wpforms input[type="url"],
.pwm-wpforms select,
.pwm-wpforms textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  background: var(--carbon) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 6px !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  box-shadow: none !important;
}
.pwm-wpforms input:focus,
.pwm-wpforms select:focus,
.pwm-wpforms textarea:focus {
  border-color: var(--amber) !important;
}
.pwm-wpforms input::placeholder,
.pwm-wpforms textarea::placeholder {
  color: var(--dust) !important;
  opacity: 0.6 !important;
}
.pwm-wpforms .wpforms-submit {
  background: var(--amber) !important;
  color: #0a0a0a !important;
  font-family: var(--font-display) !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
}
.pwm-wpforms .wpforms-submit:hover {
  background: var(--ember) !important;
  transform: translateY(-2px) !important;
}
.pwm-wpforms .wpforms-confirmation-container-full {
  background: rgba(245,166,35,0.1) !important;
  border: 1px solid var(--amber) !important;
  border-radius: 8px !important;
  color: var(--amber) !important;
  padding: 20px 24px !important;
}
.pwm-wpforms .wpforms-required-label {
  color: var(--ember) !important;
}

/* Footer social grid responsive (5 cards: TikTok, IG, YouTube, FB, Brand) */
@media (max-width: 1024px) {
  .pwm-social-grid { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 600px) {
  .pwm-social-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* Facebook hero button hover */
.hero-social-facebook:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
}
