/*
 Theme Name: Paradise Hemp & Vape
 Theme URI: https://paradisehempandvape.com
 Description: Child theme for Paradise Hemp & Vape based on Twenty Twenty-Four.
 Author: Danielle Major
 Template: twentytwentyfour
 Version: 1.0
*/

/* Import parent styles */
@import url("../twentytwentyfour/style.css");

/* Base palette */
:root {
  --phv-green: #137a4a;
  --phv-green-dark: #0b4c31;
  --phv-cream: #f5f4f1;
  --phv-charcoal: #111111;
  --phv-pink: #f45b9a;
  --phv-cyan: #30b6ff;
}

/* Global tweaks */
body {
  background-color: var(--phv-cream);
  color: var(--phv-charcoal);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--phv-green);
}

a:hover,
a:focus {
  color: var(--phv-green-dark);
}

/* Layout wrapper */
.paradise-front {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* HERO */
.phv-hero {
  position: relative;
  margin: 0 calc(-50vw + 50%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: left;
  padding: 4rem 1.5rem;
  background-size: cover;
  background-position: center;
}

.phv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
}

.phv-hero-inner {
  position: relative;
  max-width: 1000px;
}

.phv-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.phv-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.phv-hero p {
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.phv-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.phv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.phv-btn-primary {
  background-color: var(--phv-green);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.phv-btn-primary:hover {
  background-color: var(--phv-green-dark);
  transform: translateY(-1px);
}

.phv-btn-secondary {
  background-color: rgba(255,255,255,0.12);
  color: #545454;
  border: 1px solid black;
}

.phv-hero-note {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* highlight strip */
.phv-strip {
  margin: 0 calc(-50vw + 50%);
  background: #ffffff;
  border-bottom: 1px solid #e5e2da;
  border-top: 1px solid #e5e2da;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--phv-green-dark);
}

/* sections */
.phv-section {
  padding: 3rem 0 2.5rem;
}

.phv-section-header {
  margin-bottom: 1.75rem;
}

.phv-section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.phv-section-subtitle {
  font-size: 0.95rem;
  color: #555;
}

/* two-column layout */
.phv-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.phv-img-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* product cards */
.phv-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.phv-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phv-card h3 {
  margin-bottom: 0.25rem;
}

.phv-chip {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(19,122,74,0.08);
  color: var(--phv-green-dark);
}

/* why section */
.phv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.phv-why-item {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.phv-why-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--phv-green-dark);
  margin-bottom: 0.35rem;
}

/* visit & locations */
.phv-visit {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.phv-visit-info p {
  margin: 0.1rem 0;
}

.phv-location-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.phv-location-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.phv-location-card h3 {
  margin-bottom: 0.15rem;
}

/* email section */
.phv-email {
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #f0f7f3);
  border-radius: 1.5rem;
  padding: 2.2rem 1.5rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.phv-email form {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.phv-email input[type="email"] {
  min-width: 240px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #d4d0c7;
}

/* footer adjustments */
.site-footer {
  background: var(--phv-green-dark);
  color: #f8f8f8;
}

.site-footer a {
  color: #f8f8f8;
}

/* responsive */
@media (max-width: 900px) {
  .phv-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .phv-card-grid,
  .phv-why-grid,
  .phv-location-cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .phv-hero {
    text-align: left;
    align-items: flex-end;
    padding-bottom: 3rem;
  }
}
/* Age gate overlay */
.phv-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

.phv-age-gate.hidden {
  display: none;
}

.phv-age-gate-inner {
  max-width: 480px;
  margin: 0 1.5rem;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.phv-age-gate-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.phv-age-gate-inner p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.phv-age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.phv-age-gate-note {
  font-size: 0.78rem;
  color: #666;
}
.phv-age-gate-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}
.phv-logo-hero {
  max-width: 260px;
  margin-bottom: 1.5rem;
  display: block;
}

/* --------------------------
   MOBILE HEADER
--------------------------- */
.phv-mobile-header {
  display: none; /* hidden on desktop */
  background: #fff;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 9999;
}

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

.phv-header-logo img {
  max-height: 48px;
}

.phv-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* MOBILE MENU PANEL */
.phv-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 1rem;
}

.phv-mobile-menu.open {
  display: block;
}

.phv-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.phv-mobile-menu li {
  margin-bottom: 1rem;
}

.phv-mobile-menu a {
  text-decoration: none;
  color: #222;
  font-size: 1.1rem;
}

/* --------------------------
   RESPONSIVE SECTIONS
--------------------------- */

@media (max-width: 768px) {

  /* Show mobile header */
  .phv-mobile-header {
    display: block;
  }

  /* Stack hero content */
  .phv-hero-inner {
    padding: 2rem 1rem;
    text-align: center;
  }

  .phv-hero-cta {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* 2-column grid becomes single column */
  .phv-grid-2 {
    display: block;
  }

  .phv-grid-2 > div {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  /* Product cards stack */
  .phv-card-grid {
    display: block;
  }

  .phv-card {
    margin-bottom: 2rem;
  }

  /* Why section tiles */
  .phv-why-grid {
    display: block;
  }

  .phv-why-item {
    margin-bottom: 1.5rem;
  }

  /* Visit section */
  .phv-visit .phv-grid-2 {
    display: block;
  }

  .phv-img-frame img {
    max-width: 100%;
    height: auto;
  }

  /* Hours table cleaner on mobile */
  .store-hours th,
  .store-hours td {
    font-size: 0.9rem;
    padding: 4px 8px;
  }
}
/* ----------------------
   BASE HEADER
----------------------- */
.phv-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 0.5rem 1rem;
}

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

/* Logo */
.phv-header-logo img {
  max-height: 60px;
  width: auto;
}

/* Desktop Nav */
.phv-nav-desktop ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.phv-nav-desktop a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
}

/* Call Button */
.phv-call-btn {
  background: #1A5D36;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 600;
}

/* Hamburger */
.phv-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ----------------------
   MOBILE MENU
----------------------- */
.phv-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 1rem;
}

.phv-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.phv-mobile-menu li {
  margin-bottom: 1rem;
}

.phv-mobile-menu a {
  text-decoration: none;
  color: #222;
  font-size: 1.25rem;
  display: block;
}

/* ----------------------
   RESPONSIVE
----------------------- */
@media (max-width: 900px) {
  .phv-nav-desktop {
    display: none;
  }

  .phv-call-btn {
    display: none;
  }

  .phv-menu-toggle {
    display: block;
  }

  .phv-header-logo img {
    max-height: 48px;
  }

  .phv-mobile-menu.open {
    display: block;
  }
}
.phv-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
