/* Modern Color Scheme */
:root {
    --orange: #FF6B00;
    --orange-dark: #E65C00;
    --orange-light: #FF8C42;
    --white: #FFFFFF;
    --black: #000000;
    --gray-dark: #222222;
    --gray-medium: #555555;
    --gray-light: #F8F8F8;
    --gray-ultralight: #FDFDFD;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Modern Header */
header {
    background-color: var(--white);
    color: var(--black);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateX(-3px);
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text h1 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
}

.logo-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-weight: 400;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--orange);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--black);
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--orange);
}

/* News Detail Section - Modern Design */
.news-detail {
    margin: 60px 0;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.news-header {
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
}

.news-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.news-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.news-category {
    background-color: var(--orange);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(255,107,0,0.2);
}

.news-image-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-image {
    width: 50%; /* atau ukuran yang Anda inginkan */
    max-height: 600px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.5s ease;
}

.news-image-container:hover .news-image {
    transform: scale(1.02);
}

.news-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-content p {
    margin-bottom: 25px;
}

.news-content img {
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
}

.news-content blockquote {
    border-left: 4px solid var(--orange);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--gray-medium);
}

/* Related News Section - Modern Cards */
.related-news {
    margin-top: 80px;
    padding: 40px 0;
    background-color: var(--gray-ultralight);
    border-radius: 12px;
}

.section-title {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.related-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(255,107,0,0.2);
}

.related-img-container {
    overflow: hidden;
    height: 220px;
    position: relative;
}

.related-img {
    width: 100%;
    height: 40%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-img {
    transform: scale(1.05);
}

.related-content {
    padding: 25px;
}

.related-title {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    color: var(--black);
    font-weight: 600;
    line-height: 1.4;
}

.related-date {
    color: var(--gray-medium);
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--orange-dark);
    gap: 8px;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Modern Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px;
}

.footer-column p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.social-icons a:hover {
    color: var(--white);
    background-color: var(--orange);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-title {
        font-size: 2.2rem;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        right: 20px;
        background-color: var(--white);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 100;
        border: 1px solid rgba(0,0,0,0.05);
        width: 250px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav a {
        color: var(--black);
        padding: 10px 0;
        display: block;
    }
    
    .news-title {
        font-size: 1.8rem;
    }
    
    .news-content {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .news-title {
        font-size: 1.5rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
  /* ===== NAVIGATION MENU ===== */
  #menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
  }
  
  #menu-list li {
    margin-left: 20px;
  }
  
  #menu-list li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
  }
  
  #menu-list li a:hover,
  #menu-list li a.active {
    color: var(--primary);
    background-color: rgba(255, 107, 53, 0.1);
  }

}