/* --- 1. HERO CONTAINER SETUP --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Force full screen height */
    background: #000;
    overflow: hidden;
}

/* --- 2. SLIDE STRUCTURE --- */
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* --- 3. MEDIA LAYER --- */
.slide-media {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.slide-media img, 
.slide-media video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.overlay-dark {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Darkens image */
    z-index: 2;
}

/* --- 4. CONTENT LAYER --- */
.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Big Background Numbers */
.big-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 25vw;
    color: rgba(255, 255, 255, 0.08); /* Very transparent */
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
    line-height: 0;
}

/* Typography */
.pre-title {
    font-size: 1rem; letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 10px; opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; line-height: 1.1; margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px;
    opacity: 0.9; line-height: 1.6;
}

/* Button */
.hero-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 35px; border: 1px solid #fff; border-radius: 50px;
    color: #fff; text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.85rem; transition: 0.3s;
}
.hero-btn:hover { background: #fff; color: #000; }
.hero-btn:hover .arrow { transform: translateX(5px); }
.arrow { transition: transform 0.3s; }

/* --- 5. PREMIUM CONTROLS (Bottom Right) --- */
.hero-controls {
    position: absolute;
    bottom: 40px; right: 40px;
    z-index: 20;
}

.controls-glass {
    display: flex; align-items: center; gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px; border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.counter {
    font-family: 'Playfair Display', serif;
    color: #fff; font-size: 1.2rem; letter-spacing: 2px;
}
.counter .sep { opacity: 0.5; font-size: 0.9rem; margin: 0 5px; }
.counter #total-slides { opacity: 0.7; font-size: 0.9rem; }

.nav-arrows {
    display: flex; gap: 15px;
    padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.2);
}

.nav-arrows button {
    background: transparent; border: none; color: #fff;
    cursor: pointer; font-size: 1rem; transition: 0.3s;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.nav-arrows button:hover { background: #fff; color: #000; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .big-text { font-size: 40vw; }
    
    /* Center controls on mobile */
    .hero-controls {
        width: 100%; right: 0; bottom: 20px;
        display: flex; justify-content: center;
    }
    .controls-glass { background: rgba(0,0,0,0.6); padding: 8px 20px; }
}