/*********************************************************** * AirTheme — Hero Section ***********************************************************/ /* Base hero block */ .hero { text-align: center; padding: var(--hero-padding, 100px 20px 60px); color: var(--hero-text, #fff); position: relative; z-index: 2; } .hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,var(--hero-overlay-opacity, 0.30)); z-index: 1; } .hero .hero-inner { position: relative; z-index: 2; } /* Hero image wrapper */ .hero-container { width: 100%; max-width: 800px; margin: 20px auto 10px; border-radius: var(--hero-radius, 12px); overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,0.1); position: relative; z-index: 2; aspect-ratio: 16 / 5; } .hero-container img.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; } /* Hero subtitle */ .hero-subtitle { text-align: center; font-family: "Roboto Mono", monospace; font-size: 11px; font-weight: 400; color: rgba(30, 30, 30, 0.7); margin: -12px auto 20px; padding: 4px 12px; display: inline-block; background: rgba(255, 255, 255, 0.3); border-radius: 8px; box-shadow: 0 4px 14px rgba(0,0,0,0.12); max-width: 52%; line-height: 1.35; letter-spacing: 0.3px; }