/*
Theme Name: Charcuterie Catering San Diego
Theme URI: https://charcuteriecateringsandiego.com
Author: Vineyard Valley Charcuterie
Author URI: https://charcuteriecateringsandiego.com
Description: SEO-optimized theme targeting charcuterie near me, charcuterie san diego, charcuterie chula vista, charcuterie escondido, charcuterie poway, charcuterie san marcos, charcuterie vista, charcuterie fallbrook, charcuterie menifee, charcuterie perris, charcuterie lake elsinore, charcuterie wildomar.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: charcuterie-catering-sandiego
*/

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F1923;
  --navy-mid: #1A2A38;
  --navy-light: #243447;
  --slate: #2E3F50;
  --steel: #4A6080;
  --mist: #E8EDF2;
  --white: #F8FAFC;
  --copper: #C17F3E;
  --copper-light: #D9A066;
  --copper-pale: #EDD5B0;
  --rose-gold: #C4907A;
  --text-light: #B0C0D0;
  --text-mid: #7A90A8;
  --text-dark: #E8EDF2;
}

html { scroll-behavior: smooth; }
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

body { font-family: 'Outfit', sans-serif; background: var(--navy); color: var(--text-dark); font-weight: 300; line-height: 1.7; overflow-x: hidden; }

/* =============================================
   NAV — full-width dark bar
   ============================================= */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.5rem 4rem; height: 85px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
  background: rgba(15,25,35,0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(193,127,62,0.2);
}
#main-nav.scrolled {
  background: rgba(15,25,35,0.97);
  border-bottom: 1px solid rgba(193,127,62,0.4);
  height: 85px;
}
.nav-logo-img img { height: 130px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); text-decoration: none; transition: color 0.2s; font-weight: 400; }
.nav-links a:hover { color: var(--copper-light); }
.nav-cta { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.65rem 1.75rem; border: 1px solid var(--copper); color: var(--copper-light); text-decoration: none; transition: all 0.25s; font-weight: 400; }
.nav-cta:hover { background: var(--copper); color: var(--navy); }

/* =============================================
   HERO — full-screen video LEFT, text RIGHT
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative; overflow: hidden;
}
.hero-left { position: relative; overflow: hidden; }
.hero-left .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.9); }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(to left, var(--navy) 0%, transparent 30%); }
.hero-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 5rem 6rem 4rem;
  background: var(--navy);
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper-light); margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::after { content: ''; display: block; width: 3rem; height: 1px; background: var(--copper); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 600; line-height: 1.1;
  color: var(--white); margin-bottom: 0.4em;
}
.hero-title em { font-style: italic; color: var(--copper-light); font-weight: 400; }
.hero-subtitle { font-size: 0.95rem; line-height: 1.85; color: var(--text-light); max-width: 40ch; margin-bottom: 2.5rem; margin-top: 1rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.btn-primary { display: inline-block; padding: 1rem 2.75rem; background: var(--copper); color: var(--navy); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; transition: all 0.25s; font-weight: 600; }
.btn-primary:hover { background: var(--copper-light); }
.btn-outline { display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); text-decoration: none; border-bottom: 1px solid var(--steel); padding-bottom: 3px; transition: color 0.2s, border-color 0.2s; }
.btn-outline:hover { color: var(--copper-light); border-color: var(--copper-light); }
.hero-divider { width: 3rem; height: 1px; background: var(--copper); margin: 2.5rem 0; opacity: 0.5; }
.hero-stats { display: flex; gap: 3rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; color: var(--copper-light); line-height: 1; display: block; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); margin-top: 0.4rem; display: block; }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-bar { background: var(--copper); padding: 0.85rem 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 35s linear infinite; }
.marquee-inner span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); margin: 0 1.5rem; font-weight: 600; }
.marquee-inner .dot { color: rgba(15,25,35,0.4); margin: 0 0.5rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   SECTION COMMON
   ============================================= */
.section-eyebrow { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.section-eyebrow::before { content: ''; display: block; width: 2.5rem; height: 1px; background: var(--copper); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 600; line-height: 1.15; color: var(--white); }
.section-title em { font-style: italic; color: var(--copper-light); font-weight: 400; }
.section-title.dark { color: var(--navy); }
.section-title.dark em { color: var(--copper); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

/* =============================================
   ABOUT — text LEFT, stacked images RIGHT
   ============================================= */
.about-section { background: var(--navy-mid); padding: 7rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text p { color: var(--text-light); font-size: 0.93rem; line-height: 1.95; margin-bottom: 1.25rem; }
.about-text .section-title { margin-bottom: 0.5rem; }
.copper-line { width: 4rem; height: 2px; background: var(--copper); margin: 1.75rem 0; }
.about-img-stack { position: relative; height: 520px; }
.about-img-a { position: absolute; top: 0; right: 0; width: 80%; height: 85%; object-fit: cover; }
.about-img-b { position: absolute; bottom: 0; left: 0; width: 55%; height: 50%; object-fit: cover; border: 5px solid var(--navy-mid); }

/* =============================================
   SERVICES — 2-column card grid
   ============================================= */
.services-section { background: var(--navy); padding: 7rem 0; }
.services-intro { max-width: 65ch; margin-bottom: 4rem; }
.services-intro p { color: var(--text-light); font-size: 0.93rem; line-height: 1.9; margin-top: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--slate); }
.service-card { background: var(--navy-mid); padding: 2.75rem 2.25rem; transition: background 0.3s; }
.service-card:hover { background: var(--navy-light); }
.service-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--copper); opacity: 0.25; line-height: 1; margin-bottom: 1.25rem; font-weight: 700; }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.84rem; color: var(--text-light); line-height: 1.9; margin-bottom: 1.5rem; }
.service-tag { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper-light); border-bottom: 1px solid var(--copper); padding-bottom: 2px; }

/* =============================================
   GALLERY — masonry-style 3 col
   ============================================= */
.gallery-section { background: var(--navy-light); padding: 6rem 0; }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.gallery-header p { color: var(--text-light); font-size: 0.9rem; line-height: 1.85; max-width: 40ch; text-align: right; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.gal-item { overflow: hidden; position: relative; cursor: pointer; height: 320px; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .4s; filter: saturate(0.85); }
.gal-item:hover img { transform: scale(1.07); filter: saturate(1.1) brightness(1.05); }
.gal-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(15,25,35,0.85)); padding: 2rem 1.25rem 1rem; color: var(--copper-pale); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; opacity: 0; transition: opacity .3s, transform .3s; transform: translateY(8px); font-weight: 500; }
.gal-item:hover .gal-caption { opacity: 1; transform: translateY(0); }
.lightbox { display:none; position:fixed; inset:0; background:rgba(10,18,28,.95); z-index:999; align-items:center; justify-content:center; }
.lightbox.open { display:flex; }
.lightbox img { max-width:90vw; max-height:90vh; object-fit:contain; }
.lightbox-close { position:absolute; top:1.5rem; right:2rem; background:none; border:none; color:var(--copper-light); font-size:2.5rem; cursor:pointer; line-height:1; }

/* =============================================
   PROCESS — horizontal numbered steps
   ============================================= */
.process-section { background: var(--copper); padding: 6rem 0; }
.process-section .section-eyebrow { color: var(--navy); }
.process-section .section-eyebrow::before { background: var(--navy); }
.process-section .section-title { color: var(--navy); }
.process-section .section-title em { color: var(--navy-light); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3.5rem; border-top: 1px solid rgba(15,25,35,0.2); }
.step { padding: 2rem 2rem 0 0; }
.step-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--navy); opacity: 0.15; line-height: 1; margin-bottom: 1rem; }
.step-title { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.75rem; font-weight: 600; }
.step-desc { font-size: 0.83rem; color: rgba(15,25,35,0.7); line-height: 1.85; }

/* =============================================
   TESTIMONIALS — full-width dark cards
   ============================================= */
.testimonials-section { background: var(--navy-mid); padding: 7rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--navy-light); padding: 2.75rem; border-left: 3px solid var(--copper); }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--copper); opacity: 0.3; line-height: 0.5; margin-bottom: 1.5rem; display: block; }
.testimonial-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.95; font-style: italic; margin-bottom: 1.75rem; }
.testimonial-author { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper-light); font-weight: 500; }
.testimonial-event { font-size: 0.7rem; color: var(--text-mid); margin-top: 0.3rem; }
.stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.star { width: 10px; height: 10px; background: var(--copper); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }

/* =============================================
   AREAS — 4-col grid on dark bg
   ============================================= */
.areas-section { background: var(--navy); padding: 6rem 0; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--slate); margin-top: 3rem; }
.area-item { background: var(--navy); padding: 1.75rem; transition: background 0.25s; }
.area-item:hover { background: var(--navy-light); }
.area-city { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); font-weight: 600; }
.area-desc { font-size: 0.75rem; color: var(--copper-light); margin-top: 0.4rem; letter-spacing: 0.05em; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: var(--navy-mid); padding: 6rem 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.faq-item { padding: 2.25rem; background: var(--navy-light); border-bottom: 2px solid var(--copper); }
.faq-q { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 0.85rem; line-height: 1.35; }
.faq-a { font-size: 0.87rem; color: var(--text-light); line-height: 1.9; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section { background: var(--navy-light); text-align: center; padding: 7rem 2rem; border-top: 1px solid var(--slate); border-bottom: 1px solid var(--slate); }
.cta-section .section-title { font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 1.5rem; }
.cta-section p { color: var(--text-light); font-size: 0.95rem; max-width: 52ch; margin: 0 auto 3rem; line-height: 1.9; }
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; align-items: center; }
.cta-phone { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--copper-light); text-decoration: none; font-style: italic; border-bottom: 1px solid var(--steel); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.cta-phone:hover { color: var(--copper-pale); border-color: var(--copper-light); }

/* =============================================
   CF7 STYLING
   ============================================= */
.wpcf7 { width: 100%; }
.wpcf7 .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.wpcf7 p { margin-bottom: 1.25rem; }
.wpcf7 input[type="text"],.wpcf7 input[type="email"],.wpcf7 input[type="tel"],.wpcf7 input[type="number"],.wpcf7 input[type="date"],.wpcf7 select,.wpcf7 textarea { width: 100%; border: none; border-bottom: 1px solid var(--steel); color: var(--white); padding: 0.9rem 0.5rem; font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 300; outline: none; transition: border-color 0.2s, background 0.2s; -webkit-appearance: none; background: transparent; box-sizing: border-box; }
.wpcf7 input[type="text"]::placeholder,.wpcf7 input[type="email"]::placeholder,.wpcf7 input[type="tel"]::placeholder,.wpcf7 input[type="number"]::placeholder,.wpcf7 textarea::placeholder { color: var(--text-mid); }
.wpcf7 input:focus,.wpcf7 select:focus,.wpcf7 textarea:focus { border-bottom-color: var(--copper-light); outline: none; }
.wpcf7 select { color: var(--text-mid); }
.wpcf7 select option { background: var(--navy-mid); color: var(--white); }
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7 input[type="submit"] { width: 100%; padding: 1.1rem; background: var(--copper); color: var(--navy); font-family: 'Outfit', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; border: none; cursor: pointer; transition: background 0.25s; margin-top: 0.75rem; }
.wpcf7 input[type="submit"]:hover { background: var(--copper-light); }
.wpcf7 .wpcf7-not-valid-tip { color: #e8a090; font-size: 0.75rem; margin-top: 0.3rem; display: block; }
.wpcf7 .wpcf7-response-output { margin-top: 1.5rem; padding: 0.85rem 1rem; font-size: 0.82rem; border: none !important; }
.wpcf7 .wpcf7-mail-sent-ok { background: rgba(193,127,62,0.15); color: var(--copper-pale); }
.wpcf7 .wpcf7-validation-errors,.wpcf7 .wpcf7-mail-sent-ng { background: rgba(196,137,122,0.15); color: #e8a090; }
.wpcf7 span.wpcf7-form-control-wrap { display: block; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--navy); padding: 7rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-info .section-title { margin-bottom: 1.5rem; }
.contact-info .section-title em { color: var(--copper-light); }
.contact-info > p { color: var(--text-light); font-size: 0.9rem; line-height: 1.85; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--slate); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper-light); min-width: 5rem; padding-top: 3px; font-weight: 500; }
.contact-detail-value { font-size: 0.9rem; color: var(--text-light); }
.contact-detail-value a { color: var(--copper-light); text-decoration: none; }
.contact-detail-value a:hover { color: var(--copper-pale); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #080F16; padding: 4rem 0 2rem; text-align: center; border-top: 1px solid var(--slate); }
.footer-logo { margin-bottom: 2rem; }
.footer-logo img { height: 160px; width: auto; opacity: 0.8; }
.footer-links { display: flex; justify-content: center; gap: 2.5rem; list-style: none; margin-bottom: 2.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--copper-light); }
.footer-divider { width: 4rem; height: 1px; background: var(--copper); margin: 0 auto 2rem; opacity: 0.4; }
.footer-legal { font-size: 0.7rem; color: var(--steel); line-height: 2; }
.footer-legal a { color: inherit; text-decoration: none; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  #main-nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { height: 60vw; min-height: 280px; }
  .hero-right { padding: 4rem 1.5rem 3rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-stack { height: 300px; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-item { height: 220px; }
  .faq-grid { grid-template-columns: 1fr; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .gallery-header p { text-align: left; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .services-intro { max-width: 100%; }
}
