/** * sustainability.css - Sustainability Page Specific Styles * Holiday Lights Decor - Multi-Franchise Template * * Loaded via:$page_css = ['sustainability.css'] * Dependencies:main.css (global),pages-common.css (shared components) * * @version 10.0.0 (INTERSTATE) */ /* ========================================================================== PAGE HERO ========================================================================== */ .page-hero{position:relative;background:linear-gradient(135deg,var(--dark) 0%,#1a3260 100%);padding:8rem 0 4rem;text-align:center;overflow:hidden;} .page-hero::before{content:'';position:absolute;inset:0;background-image:radial-gradient(2px 2px at 15% 25%,rgba(255,255,255,0.1),transparent),radial-gradient(1px 1px at 50% 60%,rgba(255,255,255,0.08),transparent),radial-gradient(2px 2px at 85% 35%,rgba(255,255,255,0.06),transparent);pointer-events:none;} .page-hero-content{position:relative;z-index:2;max-width:680px;margin:0 auto;} .eco-badge{font-size:3rem;margin-bottom:1rem;line-height:1;} .page-hero h1{font-size:clamp(2rem,5vw,3rem);color:#fff;font-weight:800;margin-bottom:0.5rem;} .page-hero .subtitle{color:rgba(255,255,255,0.8);font-size:1.15rem;margin-bottom:1.5rem;} .hero-features{display:flex;gap:1.5rem;justify-content:center;flex-wrap:wrap;} .hero-features span{color:var(--gold);font-weight:600;font-size:0.95rem;} /* ========================================================================== CONTENT SECTIONS ========================================================================== */ .content-section{padding:4.5rem 0;} .content-section.gray{background:var(--light);} .content-section h2{font-size:clamp(1.5rem,3vw,2rem);color:var(--text);text-align:center;margin-bottom:2rem;} .intro-content{max-width:760px;margin:0 auto 3rem;text-align:center;} .intro-content .lead{font-size:1.1rem;color:var(--text-light);line-height:1.8;} /* ========================================================================== STATS GRID ========================================================================== */ .stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;} .stat-card{background:#fff;padding:2rem 1.5rem;border-radius:16px;text-align:center;border:1px solid #e5e7eb;transition:all 0.3s ease;} .stat-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.06);border-color:var(--primary);} .stat-card .stat-number{font-size:2.2rem;font-weight:800;color:var(--primary);line-height:1;margin-bottom:0.5rem;} .stat-card .stat-label{font-size:0.88rem;color:var(--text-light);font-weight:500;} /* ========================================================================== PRACTICES GRID ========================================================================== */ .practices-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;} .practice-card{background:#fff;padding:2rem;border-radius:16px;border:1px solid #e5e7eb;transition:all 0.3s ease;} .practice-card:hover{transform:translateY(-3px);box-shadow:0 6px 20px rgba(0,0,0,0.06);border-color:var(--gold);} .practice-card .icon{font-size:2rem;margin-bottom:1rem;line-height:1;} .practice-card h3{font-size:1.1rem;color:var(--text);margin-bottom:0.5rem;} .practice-card p{font-size:0.9rem;color:var(--text-light);line-height:1.7;} /* ========================================================================== COMPARISON TABLE ========================================================================== */ .comparison-table{overflow-x:auto;border-radius:12px;border:1px solid #e5e7eb;background:#fff;} .comparison-table table{width:100%;border-collapse:collapse;min-width:600px;} .comparison-table thead{background:var(--dark);} .comparison-table th{padding:1rem 1.25rem;color:#fff;font-size:0.9rem;font-weight:700;text-align:left;} .comparison-table th:last-child{color:var(--gold);} .comparison-table td{padding:0.85rem 1.25rem;font-size:0.9rem;color:var(--text-light);border-bottom:1px solid #f3f4f6;} .comparison-table tr:last-child td{border-bottom:none;} .comparison-table td:first-child{font-weight:600;color:var(--text);} .comparison-table td:last-child{color:var(--primary);font-weight:700;} .comparison-table tbody tr:hover{background:var(--light);} /* ========================================================================== TIMELINE ========================================================================== */ .timeline{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:900px;margin:0 auto;} .timeline-item{text-align:center;padding:2rem 1.5rem;background:#fff;border-radius:16px;border:1px solid #e5e7eb;position:relative;transition:all 0.3s ease;} .timeline-item:hover{transform:translateY(-3px);box-shadow:0 6px 20px rgba(0,0,0,0.06);} .timeline-item .year{display:inline-block;background:var(--primary);color:#fff;padding:0.4rem 1rem;border-radius:50px;font-size:0.85rem;font-weight:700;margin-bottom:1rem;} .timeline-item h3{font-size:1.05rem;color:var(--text);margin-bottom:0.5rem;} .timeline-item p{font-size:0.88rem;color:var(--text-light);line-height:1.6;} /* ========================================================================== RESPONSIVE ========================================================================== */ @media (max-width:1024px){.stats-grid{grid-template-columns:repeat(2,1fr);} .practices-grid{grid-template-columns:repeat(2,1fr);}} @media (max-width:768px){.page-hero{padding:6rem 0 3rem;} .hero-features{flex-direction:column;gap:0.5rem;} .stats-grid{grid-template-columns:1fr 1fr;gap:1rem;} .practices-grid{grid-template-columns:1fr;} .timeline{grid-template-columns:1fr;gap:1.25rem;} .content-section{padding:3rem 0;}} @media (max-width:480px){.stats-grid{grid-template-columns:1fr;} .stat-card .stat-number{font-size:1.8rem;}}
