.hero-carousel { position: relative; height: 400px; overflow: hidden; background-color: #0a0a0a; }
.hero-images { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(114, 47, 55, 0.5) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(114, 47, 55, 0.4) 100%); z-index: 2; }
.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; text-align: center; max-width: 1000px; padding: 0 2rem; width: 100%; }
.hero-content h1 { font-family: var(--font-display); font-size: 2.5rem; color: var(--text); margin-bottom: 1rem; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); line-height: 1.2; }
.hero-content p { font-family: var(--font-body); font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 1.5rem; text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); }
.hero-btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: var(--text); text-decoration: none; border-radius: 50px; font-family: var(--font-ui); font-weight: 600; font-size: 1rem; box-shadow: 0 8px 25px rgba(114, 47, 55, 0.4); transition: all 0.3s ease; }
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(114, 47, 55, 0.6); }
.hero-navigation { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.75rem; z-index: 3; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); border: 2px solid rgba(255, 255, 255, 0.5); cursor: pointer; transition: all 0.3s ease; }
.hero-dot:hover, .hero-dot.active { background: var(--primary); border-color: var(--primary); transform: scale(1.2); }
@media (max-width: 768px) { .hero-carousel { height: 400px; } .hero-content h1 { font-size: 1.8rem; } }
@media (max-width: 480px) { .hero-carousel { height: 400px; } .hero-content h1 { font-size: 1.5rem; } }
