/* css/ads.css */
.ads-page {
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: relative;
}

.ads-overlay-logo {
    /* Logo Ariston di pojok kiri atas halaman iklan */
    position: absolute;
    top: 40px;
    left: 60px;
    height: 56px;       /* Tinggi yang memadai agar terlihat jelas di TV 1920px */
    width: auto;        /* Pertahankan aspek rasio logo */
    z-index: 1000;
    pointer-events: none;
    /* Drop shadow agar logo terbaca di atas gambar apapun */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.ads-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.ad-slide.active {
    opacity: 1;
}

/* Local Layout Mockup Styles */
.ad-mockup-wrapper {
    width: 100%;
    height: 100%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ad-mockup-logo {
    height: 60px;
    align-self: flex-start;
}

.ad-mockup-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-top: 20px;
    gap: 50px;
}

.ad-mockup-left {
    flex: 1;
    max-width: 800px;
}

.ad-mockup-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.25;
    color: #333333;
    margin-bottom: 30px;
}

.ad-mockup-title .highlight-red {
    color: var(--ariston-red);
}

.ad-mockup-desc {
    font-size: 24px;
    line-height: 1.6;
    color: #555555;
    font-weight: 400;
}

.ad-mockup-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-mockup-hero {
    max-height: 520px;
    object-fit: contain;
}

/* Touch to start footer bar */
.ads-footer-bar {
    height: 120px;
    background-color: var(--ariston-red);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 500;
}

.ads-footer-text {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-light);
}

.ads-footer-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
