/* media-style.css */

:root {
    --bg-dark: #0A192F; 
    --navy-light: #112240;
    --teal: #1A9F9F;
    --teal-bright: #1A9F9F; /* Cyan Color */
    --accent-gold: #FFD700;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-dark: #1D2B2B;
}

/* --- Reset & Global --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-dark); 
    line-height: 1.7; 
    background-color: var(--white); 
    overflow-x: hidden; 
}

/* --- Navigation & Header Styling --- */
header { 
    background: var(--white); 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.04); 
}

.logo img { height: 45px; }

header nav { margin-left: auto; } 

.nav-list { 
    display: flex; 
    list-style: none; 
    gap: 5px; 
    margin: 0; 
    align-items: center; 
}

.nav-list a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 700; 
    padding: 10px 18px; 
    border-radius: 30px; 
    font-size: 1.05rem; 
    transition: 0.3s; 
}

/* REVISI MART: WARNA CYAN STAY PAS ACTIVE */
.nav-list a.active { 
    color: var(--teal-bright) !important; 
    background: rgba(26, 159, 159, 0.15) !important; 
}

.nav-list a:hover { 
    color: var(--teal-bright); 
    background: rgba(26, 159, 159, 0.1); 
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu-custom {
    position: absolute; 
    top: 100%; 
    right: 0; 
    background: var(--white); 
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border-radius: 12px; 
    padding: 10px 0;
    display: none; 
    list-style: none; 
    z-index: 1100; 
    margin-top: 5px;
}
.dropdown-menu-custom li a { border-radius: 0; padding: 10px 20px; display: block; font-size: 0.95rem; background: none; }
.nav-dropdown:hover .dropdown-menu-custom { display: block; animation: fadeInNav 0.3s ease; }

@keyframes fadeInNav {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Sections & Utils --- */
.section-padding { padding: 80px 0; }
.section-title { font-weight: 800; color: var(--navy-light); text-transform: uppercase; letter-spacing: 1px; }
.accent-line-center { width: 60px; height: 4px; background: var(--teal); margin: 15px auto 30px; border-radius: 2px; }
.accent-line-left { width: 50px; height: 4px; background: var(--teal); margin: 15px 0 25px; }

/* --- Media Intro --- */
.media-intro { padding-top: 120px !important; }
.display-title span { color: var(--accent-gold); }
.subheadline-v2 { font-weight: 700; text-transform: uppercase; letter-spacing: 3px; display: block; color: var(--teal); margin-bottom: 10px; }

/* --- Gallery --- */
.gallery-item { position: relative; border-radius: 20px; overflow: hidden; cursor: pointer; background: #eee; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item.large { height: 520px; }
.gallery-item.small { height: 250px; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(10, 25, 47, 0.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.4s; }
.gallery-overlay span { color: white; font-weight: 700; border: 2px solid white; padding: 12px 25px; border-radius: 50px; transform: translateY(20px); transition: 0.4s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }
.gallery-item:hover img { transform: scale(1.1); }

/* --- Social Hub --- */
.social-hub-card { background: white; border-radius: 30px; overflow: hidden; }
.btn-instagram { background: var(--teal); color: white; padding: 14px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-instagram:hover { background: var(--bg-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* --- Insights & News --- */
.news-card { border-radius: 20px; overflow: hidden; transition: 0.3s ease; height: 100%; background: white; }
.news-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: var(--teal) !important; }
.news-img-box { position: relative; height: 220px; }
.news-img-box img { width: 100%; height: 100%; object-fit: cover; }
.news-tag { position: absolute; top: 15px; left: 15px; background: var(--accent-gold); color: var(--bg-dark); font-size: 0.7rem; font-weight: 800; padding: 6px 14px; border-radius: 6px; text-transform: uppercase; }
.news-content { padding: 30px; }
.news-date { font-size: 0.8rem; color: var(--teal); font-weight: 700; display: block; margin-bottom: 12px; }
.btn-view-all { text-decoration: none; color: var(--teal); font-weight: 700; transition: 0.3s; }

/* --- Footer Socials --- */
.social-links-v2 { display: flex; justify-content: center; gap: 15px; }
.social-links-v2 a { width: 45px; height: 45px; background: var(--bg-light); color: var(--navy-light); display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; transition: 0.3s; border: 1px solid #eee; }
.social-links-v2 a:hover { background: var(--teal); color: white; transform: translateY(-5px); border-color: var(--teal); }

/* ============================================================ */
/* MASTER FONT SIZING                                          */
/* ============================================================ */
.fs-hero-title { font-size: 5.5rem; }
.fs-hero-sub { font-size: 1rem; }
.fs-hero-desc { font-size: 1.25rem; }

.fs-section-title { font-size: 2.2rem; }
.fs-section-desc { font-size: 1rem; }

.fs-card-title { font-size: 1.25rem; font-weight: 700; }
.fs-card-desc { font-size: 0.9rem; }
/* ============================================================ */

/* --- REVISI RESPONSIVE (Taruh paling bawah CSS) --- */
@media (max-width: 992px) {
    /* Header/Nav Fix */
    .navbar-collapse { background: white; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-list { flex-direction: column !important; gap: 15px; }
    
    /* Hero Text Fix biar gak padet */
    .fs-hero-title { font-size: 3rem !important; }
    .hero-v2 { text-align: center; padding: 60px 0; }
    .hero-v2 .d-flex { justify-content: center; }

    /* Footer Fix biar rapi */
    footer .row { text-align: center; gap: 20px; }
    .social-links-v2 { justify-content: center; }
}
