/* ============================
   Vinyl Graphics Page Stylesheet
   (Ben Franklin Print Co.)
   ============================ */

:root {
  --brand-primary: #284735;
  --brand-dark: #1B3B2B;
  --brand-gold: #C89B3C;
  --brand-gold-light: #D4AF37;
  --brand-bg-light: #F7F9F7;
  --brand-border: #E2E8E4;
}

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Great+Vibes&family=Inter:wght@400;500;600;700&display=swap');

/* ---- General Page Rules ---- */
.vinyl-page {
  font-family: 'Inter', sans-serif;
  color: #333333;
}

.vinyl-page h1,
.vinyl-page h2,
.vinyl-page h3,
.vinyl-page h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
}

.gold-script {
  font-family: 'Great Vibes', cursive;
  color: var(--brand-gold);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}

/* ---- Hero Section ---- */
.vinyl-hero {
  background-color: #FAFCFA;
  position: relative;
  overflow: hidden;
}

.vinyl-hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#d3ded6 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

.vinyl-hero-title {
  font-size: 4.8rem;
  line-height: 0.95;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.vinyl-hero-sub {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* Hero Badge Icons */
.hero-badge-item {
  text-align: center;
}

.hero-badge-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--brand-dark);
}

.hero-badge-circle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.hero-badge-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--brand-dark);
  letter-spacing: 0.5px;
}

/* Hero Storefront Image Wrapper */
.vinyl-hero-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.vinyl-hero-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* ---- Creation & Installation Section ---- */
.vinyl-creation-section {
  background-color: #ffffff;
}

.vinyl-section-title {
  font-size: 3.2rem;
  line-height: 1;
  color: var(--brand-dark);
}

.vinyl-creation-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vinyl-creation-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

/* ---- What Can We Do Section ---- */
.vinyl-capabilities-section {
  background-color: #FAFBF9;
}

.section-header-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 4px;
}

.section-header-accent .line {
  height: 1px;
  width: 50px;
  background-color: var(--brand-gold);
}

.section-header-accent .text {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: var(--brand-gold);
}

.vinyl-card {
  background: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.vinyl-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.vinyl-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.vinyl-card-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--brand-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vinyl-card-icon-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.vinyl-card-title {
  font-size: 1.8rem;
  color: var(--brand-dark);
  margin-bottom: 0;
}

.vinyl-card-body {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.6;
}

/* ---- CTA Banner ---- */
.sp-cta-banner {
  background-color: var(--brand-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.sp-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
  font-size: 3.5rem;
  line-height: 1;
  color: #ffffff;
}
.btn-brand-gold {
  background-color: var(--brand-gold);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-brand-gold:hover {
  background-color: var(--brand-gold-light);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(200, 155, 60, 0.4);
}
.gold-script {
  font-family: 'Great Vibes', cursive;
  color: var(--brand-gold);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .gold-script {
    font-size: 1.8rem;
  }
}

/* ---- Bottom Trust Badges ---- */
.sp-trust-section {
  background-color: #ffffff;
  border-top: 1px solid var(--brand-border);
}

.trust-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-dark);
}

.trust-badge-icon svg {

  fill: currentColor;
}

.trust-badge-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.trust-badge-desc {
  font-size: 0.82rem;
  color: #666666;
  margin-bottom: 0;
}

/* ---- Mobile Responsive Custom Rules ---- */
@media (max-width: 767.98px) {
  .vinyl-page .row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .vinyl-hero-title {
    font-size: 3.4rem;
  }

  .vinyl-section-title {
    font-size: 2.4rem;
  }

  .vinyl-cta-title {
    font-size: 2.6rem;
  }

  .gold-script {
    font-size: 1.8rem;
  }
}