.hero {
position: relative;
height: 580px;
overflow: hidden;
}

/* Slider */
.slider-track {
position: absolute;
inset: 0;
}

.slide {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.slide img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Overlay */
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
110deg,
rgba(10, 20, 10, 0.85) 35%,
rgba(10, 20, 10, 0.45) 70%,
rgba(10, 20, 10, 0.2) 100%
);
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 80px;
color: var(--color-white);
z-index: 10;
}

/* Tag */
.hero-tag {
display: inline-block;
background: var(--color-accent);
color: var(--color-white);
font-size: 11px;
font-weight: 700;
letter-spacing: 1.2px;
text-transform: uppercase;
padding: 5px 12px;
border-radius: 20px;
margin-bottom: 14px;
width: fit-content;
}

/* Title */
.hero-overlay h1 {
font-family: var(--font-heading);
font-size: 52px;
font-weight: 700;
line-height: 1.15;
max-width: 560px;
margin-bottom: 10px;
}

/* Description */
.hero-overlay p {
font-size: 15px;
opacity: 0.9;
margin-bottom: var(--spacing-md);
max-width: 440px;
}

/* Notice */
.notice-bar {
background: rgba(255,255,255,0.08);
border-left: 3px solid var(--color-accent);
padding: 8px 14px;
font-size: 12px;
max-width: 440px;
margin-bottom: var(--spacing-md);
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Buttons */
.hero-btns {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

/* Dots */
.slider-dots {
position: absolute;
bottom: 24px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
z-index: 20;
}

.slider-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255,255,255,0.4);
cursor: pointer;
transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
background: var(--color-accent);
transform: scale(1.25);
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
.hero {
height: 460px;
}

.hero-overlay {
padding: 0 24px;
}

.hero-overlay h1 {
font-size: 34px;
}
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

.hero {
height: 360px;
}

.hero-overlay {
padding: 0 16px;
justify-content: center;
}

.hero-tag {
font-size: 10px;
padding: 4px 10px;
}

.hero-overlay h1 {
font-size: 24px;
line-height: 1.2;
}

/* Remove clutter */
.hero-overlay p {
display: none;
}

.notice-bar {
display: none;
}

.hero-btns {
flex-direction: row;
gap: 8px;
}

.hero-btns .btn {
font-size: 12px;
padding: 10px 14px;
}

.slider-dots {
display: none;
}
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 400px) {

.hero {
height: 320px;
}

.hero-overlay h1 {
font-size: 20px;
}
}
