/* Custom Hero Section Styling */ .custom-hero { background: url('https://images.unsplash.com/photo-1577200131480-206c5f4275da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover; padding: 200px 20px; text-align: center; color: #fff; position: relative; } .custom-hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 1; } .custom-hero h1, .custom-hero p, .custom-hero a { position: relative; z-index: 2; } .custom-hero h1 { font-size: 56px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; } .custom-hero p { font-size: 24px; margin-bottom: 30px; } .hero-btn { display: inline-block; padding: 15px 30px; background-color: #000; color: #fff; text-transform: uppercase; font-weight: 600; text-decoration: none; border-radius: 6px; transition: background-color 0.3s; } .hero-btn:hover { background-color: #ff3366; } /* Mobile Responsive */ @media (max-width: 768px) { .custom-hero { padding: 150px 20px; } .custom-hero h1 { font-size: 40px; } .custom-hero p { font-size: 18px; } }