/*
Theme Name: Wedding Ice Cream Catering
Theme URI: https://weddingicecreamcatering.com
Author: Shaka Froyo
Author URI: https://shakafroyo.com
Description: Wedding ice cream catering specialists serving San Diego County, Riverside County and Southern California. Premium soft serve, froyo bars and açaí for weddings everywhere.
Version: 1.0
License: GNU General Public License v2 or later
Tags: wedding, catering, ice cream, southern california
*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --forest:      #1e3a2f;
  --forest-mid:  #2d5442;
  --forest-light:#3d6b54;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-faint:  #f5edda;
  --cream:       #faf8f3;
  --cream-dark:  #f0ebe0;
  --white:       #ffffff;
  --text:        #1a2a1f;
  --text-mid:    #4a6355;
  --text-light:  #7a9085;
  --shadow:      0 4px 32px rgba(30,58,47,0.12);
  --radius:      8px;
  --radius-lg:   16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-mid); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }
h1,h2,h3,h4 { font-family: 'Libre Baskerville', Georgia, serif; line-height: 1.2; }
p { margin-bottom: 1.2em; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* TOP BAR */
.top-bar {
  background: var(--forest);
  color: var(--gold-light);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.top-bar a { color: var(--gold-light); font-weight: 600; }

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(30,58,47,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.site-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  color: var(--forest);
  line-height: 1.1;
  font-style: italic;
}
.site-logo span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 3px;
  font-style: normal;
}
.site-nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.site-nav a {
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--forest); }
.nav-cta {
  background: var(--forest) !important;
  color: var(--gold-light) !important;
  padding: 9px 22px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--forest-mid) !important; color: var(--gold-light) !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: var(--forest); }

/* HERO — full bleed split layout */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.hero-left {
  background: var(--forest);
  padding: 80px 60px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(61,107,84,0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 28px;
  font-family: 'Raleway', sans-serif;
  position: relative;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 22px;
  position: relative;
  line-height: 1.15;
}
.hero-left h1 em { color: var(--gold-light); }

.hero-left p {
  color: rgba(250,248,243,0.65);
  font-size: 1rem;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 440px;
  position: relative;
}

.hero-actions { display: flex; flex-direction: column; gap: 12px; position: relative; }

.btn-gold {
  background: var(--gold);
  color: var(--forest);
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
}
.btn-gold:hover { background: var(--gold-light); color: var(--forest); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  padding: 15px 32px;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.4);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
}
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  background: var(--gold-faint);
  padding: 80px 48px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--gold-light);
}

.hero-right h2 {
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 28px;
  font-weight: 400;
  font-style: italic;
}

.hero-checklist { list-style: none; margin-bottom: 36px; }
.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  font-size: 0.92rem;
  color: var(--text);
}
.hero-checklist li:last-child { border-bottom: none; }
.check { color: var(--forest); font-weight: 700; flex-shrink: 0; font-size: 0.85rem; margin-top: 2px; }

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(201,168,76,0.3);
  padding-top: 28px;
}
.h-stat { text-align: center; }
.h-stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.h-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* SECTIONS */
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream-dark); }
.section-forest { background: var(--forest); }
.section-gold { background: var(--gold-faint); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); }

.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Raleway', sans-serif;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--forest);
  margin-bottom: 14px;
  font-weight: 400;
  font-style: italic;
}
.section-forest .section-title { color: var(--cream); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.8;
}
.section-forest .section-subtitle { color: rgba(250,248,243,0.6); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.forest-rule {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  margin: 16px 0 32px;
}
.text-center .forest-rule { margin-left: auto; margin-right: auto; }

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: border-color 0.3s;
}
.step-card:hover { border-color: var(--gold); }
.step-number {
  width: 52px; height: 52px;
  border: 2px solid var(--forest);
  color: var(--forest);
  border-radius: 50%;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 { font-size: 1.1rem; color: var(--forest); margin-bottom: 10px; font-weight: 400; font-style: italic; }
.step-card p { font-size: 0.88rem; color: var(--text-mid); margin: 0; line-height: 1.7; font-weight: 300; }

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.package-card:hover { transform: translateY(-3px); border-color: var(--forest-light); }
.package-card.featured { border-color: var(--gold); border-width: 2px; }
.featured-tag {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 3px;
  white-space: nowrap;
  font-family: 'Raleway', sans-serif;
}
.package-icon { font-size: 2rem; margin-bottom: 18px; }
.package-card h3 { font-size: 1.45rem; color: var(--forest); margin-bottom: 10px; font-weight: 400; font-style: italic; }
.package-card > p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 24px; font-weight: 300; line-height: 1.7; }
.package-features { list-style: none; margin-bottom: 32px; }
.package-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 400;
}
.package-features li::before { content: '◆'; color: var(--gold); font-size: 0.45rem; flex-shrink: 0; }

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.benefit-card {
  background: rgba(250,248,243,0.07);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s;
}
.benefit-card:hover { border-color: rgba(201,168,76,0.4); }
.benefit-icon { font-size: 1.8rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1.05rem; color: var(--cream); margin-bottom: 10px; font-weight: 400; font-style: italic; }
.benefit-card p { font-size: 0.87rem; color: rgba(250,248,243,0.55); margin: 0; line-height: 1.7; font-weight: 300; }

/* AREAS */
.areas-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.area-region h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Raleway', sans-serif;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 10px;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-chip {
  background: rgba(250,248,243,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  color: rgba(250,248,243,0.75);
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: 3px;
  transition: all 0.2s;
}
.area-chip:hover { border-color: var(--gold); color: var(--gold-light); }

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-card blockquote {
  color: var(--text);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.78;
  margin-bottom: 22px;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.author-avatar {
  width: 42px; height: 42px;
  background: var(--forest);
  color: var(--gold-light);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  font-family: 'Libre Baskerville', serif;
  flex-shrink: 0;
}
.author-info strong { display: block; color: var(--forest); font-size: 0.9rem; }
.author-info span { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; }

/* FAQ */
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--cream-dark); padding: 22px 0; }
.faq-question { font-family: 'Libre Baskerville', serif; font-size: 1.1rem; color: var(--forest); margin-bottom: 10px; font-weight: 400; font-style: italic; }
.faq-answer { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin: 0; font-weight: 300; }

/* CTA */
.cta-section {
  background: var(--forest);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-section h2 { color: var(--cream); font-size: clamp(1.9rem, 3.5vw, 3rem); margin-bottom: 14px; font-weight: 400; font-style: italic; position: relative; }
.cta-section p { color: rgba(250,248,243,0.65); font-size: 1.05rem; max-width: 480px; margin: 0 auto 36px; position: relative; font-weight: 300; }

/* CONTACT */
.contact-section { background: var(--cream-dark); padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.contact-info h3 { font-size: 1.4rem; color: var(--forest); margin-bottom: 12px; font-style: italic; font-weight: 400; }
.contact-info p { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 24px; font-weight: 300; line-height: 1.8; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--forest);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-detail-text strong {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2px;
  font-family: 'Raleway', sans-serif;
}
.contact-detail-text span { font-size: 0.92rem; color: var(--text); }

.contact-form-wrap {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(30,58,47,0.25);
}
.contact-form-wrap h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: 6px; font-weight: 400; font-style: italic; }
.contact-form-wrap > p { color: rgba(250,248,243,0.5); font-size: 0.88rem; margin-bottom: 28px; font-weight: 300; }

/* CF7 */
.contact-form-wrap .wpcf7 label,
.contact-form-wrap .wpcf7 .wpcf7-form label {
  color: rgba(201,168,76,0.8) !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 7px !important;
  font-family: 'Raleway', sans-serif !important;
}
.contact-form-wrap .wpcf7 input,
.contact-form-wrap .wpcf7 select,
.contact-form-wrap .wpcf7 textarea {
  width: 100% !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  border-radius: var(--radius) !important;
  padding: 12px 15px !important;
  color: var(--cream) !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 0.92rem !important;
  margin-bottom: 16px !important;
  outline: none !important;
  transition: border-color 0.3s !important;
}
.contact-form-wrap .wpcf7 input:focus,
.contact-form-wrap .wpcf7 textarea:focus { border-color: var(--gold) !important; }
.contact-form-wrap .wpcf7 input::placeholder,
.contact-form-wrap .wpcf7 textarea::placeholder { color: rgba(250,248,243,0.25) !important; }
.contact-form-wrap .wpcf7 input[type="submit"] {
  background: var(--gold) !important;
  color: var(--forest) !important;
  border: none !important;
  padding: 14px 32px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  cursor: pointer !important;
  width: 100% !important;
  font-family: 'Raleway', sans-serif !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: background 0.3s !important;
  margin-top: 4px !important;
}
.contact-form-wrap .wpcf7 input[type="submit"]:hover { background: var(--gold-light) !important; }
.contact-form-wrap .wpcf7 select option { background: var(--forest-mid); color: var(--cream); }

/* FOOTER */
.site-footer {
  background: var(--forest);
  padding: 52px 0 20px;
  border-top: 2px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .site-logo { color: var(--cream); font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand .site-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: rgba(250,248,243,0.45); line-height: 1.75; margin-bottom: 18px; }
.footer-col h4 {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; font-family: 'Raleway', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(250,248,243,0.45); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 10px; font-size: 0.78rem;
  color: rgba(250,248,243,0.35);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { border-left: none; border-top: 1px solid rgba(201,168,76,0.2); }
  .areas-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; gap: 0; }
  .site-nav.open {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
  }
  .site-nav.open li { width: 100%; }
  .site-nav.open a { display: block; padding: 11px 24px; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 60px 32px; }
  .hero-right { padding: 48px 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
