/* Main stylesheet for Syracuse Christmas Lighting */
:root {
  --primary: #0e1b2a;
  --secondary: #d32f2f;
  --accent-green: #388e3c;
  --accent-gold: #d4a373;
  --text-light: #ffffff;
  --text-dark: #0e1b2a;
  --bg-light: #f7f9fc;
  --bg-alt: #ffffff;
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.container{max-width:1200px;margin:0 auto;padding:3rem 1rem}
.menu-toggle{display:none;flex-direction:column;justify-content:center;align-items:center;width:40px;height:40px;background:transparent;border:none;cursor:pointer;padding:0;margin-left:auto}
.menu-toggle .bar{width:24px;height:2px;background-color:var(--text-light);margin:4px 0;transition:transform .3s ease,opacity .3s ease}
.menu-toggle.active .bar:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-toggle.active .bar:nth-child(2){opacity:0}
.menu-toggle.active .bar:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.primary-nav ul{list-style:none;padding:0;margin:0;display:flex;align-items:center;gap:1.25rem}
.primary-nav a{color:var(--text-light);font-weight:500;text-decoration:none;transition:color .2s ease}
.primary-nav a.btn{padding:.5rem 1rem}
.primary-nav a.btn-secondary{border-color:var(--text-light);color:var(--text-light)}
@media (max-width:768px){
  .primary-nav{position:absolute;top:100%;right:0;background-color:var(--primary);width:100%;max-height:0;overflow:hidden;transition:max-height .3s ease}
  .primary-nav.open{max-height:500px}
  .primary-nav ul{flex-direction:column;align-items:flex-start;padding:1rem}
  .primary-nav li{margin-bottom:.5rem}
  .primary-nav li:last-child{margin-bottom:0}
  .menu-toggle{display:flex}
  nav a.btn{display:block;width:100%}
}
.bulb-string{position:relative;height:50px;overflow:hidden;background:var(--primary)}
.bulbs{list-style:none;display:flex;justify-content:space-around;align-items:center;height:100%;margin:0;padding:0 1rem}
.bulbs li{width:18px;height:28px;border-radius:50% 50% 45% 45%;background-color:var(--secondary);position:relative;box-shadow:0 4px 6px rgba(0,0,0,.3);animation:twinkle 3s infinite ease-in-out}
.bulbs li::before{content:'';position:absolute;top:-6px;left:50%;transform:translateX(-50%);width:8px;height:8px;border-radius:2px;background:#333}
.bulbs li:nth-child(4n+1){background-color:var(--secondary);animation-delay:0s}
.bulbs li:nth-child(4n+2){background-color:var(--accent-green);animation-delay:.5s}
.bulbs li:nth-child(4n+3){background-color:var(--accent-gold);animation-delay:1s}
.bulbs li:nth-child(4n+4){background-color:#fff8e1;animation-delay:1.5s}
@keyframes twinkle{0%,100%{opacity:1}50%{opacity:.4}}
.trust{background-color:var(--bg-alt)}
.trust-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;text-align:center}
.trust-card{background-color:#fff;padding:1.5rem;border-radius:8px;box-shadow:0 2px 4px rgba(0,0,0,.08)}
.trust-card .icon{color:var(--secondary);margin-bottom:.5rem}
.trust-card h3{margin-top:.5rem;margin-bottom:.25rem;font-size:1.25rem}
.trust-card p{margin:0;font-size:.95rem;color:var(--text-dark)}
section h2{font-size:clamp(1.75rem,4vw,2.5rem);margin-bottom:1rem;color:var(--primary)}
.section-intro{margin-bottom:2rem;color:var(--text-dark)}
.services{background-color:var(--bg-light);position:relative}
.service-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem}
.service-item{background-color:#fff;border-radius:8px;padding:1.5rem;text-align:center;box-shadow:0 2px 4px rgba(0,0,0,.05)}
.service-item .icon{color:var(--secondary);margin-bottom:.5rem}
.service-item h3{margin-bottom:.5rem;font-size:1.2rem;color:var(--primary)}
.service-item p{margin:0;font-size:.95rem;color:var(--text-dark)}
.pricing{background-color:var(--bg-alt);position:relative}
.pricing-table{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center;margin-bottom:2rem}
.pricing-tier{background-color:#fff;border:2px solid var(--primary);border-radius:8px;padding:1.5rem;flex:1 1 280px;max-width:350px}
.pricing-tier h3{margin-top:0;margin-bottom:.5rem;font-size:1.5rem;color:var(--primary);text-align:center}
.pricing-tier .price{font-size:2rem;font-weight:700;color:var(--secondary);text-align:center;margin-bottom:1rem}
.pricing-tier .price span{font-size:1rem;color:var(--text-dark);font-weight:400}
.pricing-tier ul{list-style:none;padding:0;margin:0;margin-top:.5rem}
.pricing-tier li{margin-bottom:.5rem;padding-left:1.2rem;position:relative;color:var(--text-dark)}
.pricing-tier li::before{content:'✔';position:absolute;left:0;color:var(--accent-green);font-size:.9rem}
.pricing-notes,.pricing-examples{margin-bottom:1.5rem;color:var(--text-dark)}
.pricing-examples ul{list-style:none;padding-left:0}
.pricing-examples li{margin-bottom:.5rem}
.process{background-color:var(--bg-light);position:relative}
.process-steps{list-style:none;padding:0;margin:0}
.step{display:flex;align-items:flex-start;margin-bottom:1.5rem}
.step-number{flex-shrink:0;width:36px;height:36px;border-radius:50%;background-color:var(--secondary);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:600;margin-right:1rem}
.step-content h3{margin:0;margin-bottom:.25rem;font-size:1.2rem;color:var(--primary)}
.step-content p{margin:0;color:var(--text-dark);font-size:.95rem}
.gallery{background-color:var(--bg-alt);position:relative}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1rem}
.gallery figure{margin:0;background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.05);display:flex;flex-direction:column}
.gallery img{width:100%;height:auto;display:block}
.gallery figcaption{padding:.5rem;font-size:.9rem;color:var(--text-dark)}
.testimonials{background-color:var(--bg-light);position:relative}
.testimonial-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem}
.testimonial-list blockquote{background:#fff;border-left:4px solid var(--secondary);margin:0;padding:1rem 1.5rem;border-radius:4px;box-shadow:0 2px 4px rgba(0,0,0,.05)}
.testimonial-list blockquote p{margin:0 0 .75rem;font-style:italic;color:var(--text-dark)}
.testimonial-list blockquote footer{font-size:.9rem;color:var(--accent-green)}
.areas{background-color:var(--bg-alt);position:relative}
.areas-grid{display:flex;flex-wrap:wrap;gap:2rem;justify-content:space-between}
.areas-grid ul{list-style:none;padding:0;margin:0;flex:1 1 200px}
.areas-grid li{margin-bottom:.5rem;font-size:1rem;color:var(--text-dark)}
.hours{margin-top:1.5rem;color:var(--text-dark)}
.hours h3{margin-bottom:.5rem;font-size:1.2rem;color:var(--primary)}
.quote{background-color:var(--bg-light);text-align:center}
.quote p{margin-top:1rem;font-size:1rem}
.quote a{color:var(--secondary);font-weight:600}
.site-footer{background-color:var(--primary);color:var(--text-light);padding:2rem 0}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem;align-items:start}
.footer-brand p{margin:.5rem 0 0;font-size:.9rem}
.footer-nav ul{list-style:none;padding:0;margin:0}
.footer-nav li{margin-bottom:.5rem}
.footer-nav a{color:var(--text-light);font-size:.95rem}
.footer-nav a:hover,.footer-nav a:focus{text-decoration:underline}
.footer-contact p{margin:.3rem 0;font-size:.95rem}
.footer-contact a{color:var(--text-light);text-decoration:underline}
.footer-legal{font-size:.8rem;margin-top:1rem;color:var(--text-light)}
.footer-legal a{color:var(--text-light);text-decoration:underline;margin-right:.5rem}
.footer-legal p{margin-top:.5rem;margin-bottom:0}
section::before,section::after{content:'';position:absolute;left:0;width:100%;height:50px;pointer-events:none;z-index:-1}
section::before{top:-50px;background:inherit;transform-origin:bottom left;transform:skewY(-2deg)}
section::after{bottom:-50px;background:inherit;transform-origin:top left;transform:skewY(2deg)}
.hero::before,.hero::after,.trust::before,.trust::after{display:none}
section{scroll-margin-top:80px}
.snowflake{position:fixed;top:-10px;width:8px;height:8px;background-color:rgba(255,255,255,.8);border-radius:50%;pointer-events:none;animation:fall linear infinite}
@keyframes fall{0%{transform:translateY(0) translateX(0);opacity:1}100%{transform:translateY(110vh) translateX(50px);opacity:0}}
@media (prefers-reduced-motion: reduce){.bulbs li,.snowflake{animation:none!important}}
