
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Chau Philomene One', Arial, sans-serif;
    background: #1b4332;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

/* Container utama */
.container {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 40px rgba(27, 67, 50, 0.4);
    min-height: 100vh;
}

/* Header */
.header {
    width: 980px;
    height: 240px;
    background: #1b4332;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(184, 134, 11, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.2) 0%, transparent 70%),
        linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
}

.header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.header h1 {
    font-family: 'Impact', Arial Black, sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff176, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header p {
    font-family: 'Impact', Arial Black, sans-serif;
    font-size: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigasi Menu */
.navigation {
    background: linear-gradient(135deg, #b8860b, #daa520, #ffd700, #ffed4e, #daa520);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
    position: relative;
    border-bottom: 3px solid #1b4332;
}

.nav-container {
    max-width: 980px;
    margin: 0 auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 25px;
    color: #1b4332;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
    position: relative;
    text-align: center;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(27, 67, 50, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before,
.nav-item.active .nav-link::before {
    opacity: 1;
}

.nav-link:hover,
.nav-item.active .nav-link {
    background: rgba(27, 67, 50, 0.15);
    border-bottom-color: #1b4332;
    color: #0f2419;
}

/* Content Area */
.content {
    padding: 40px;
    background: linear-gradient(180deg, #1b4332 0%, #2d5016 50%, #40531b 100%);
    border: 3px solid #daa520;
    border-top: none;
    box-shadow: inset 0 0 20px rgba(218, 165, 32, 0.1);
}

.title-head {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.title-head:hover {
    color: #ffed4e;
    text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.5);
}

.content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content h2 {
    color: #ffd700;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    padding: 12px 0;
    border-bottom: 2px solid #daa520;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1b4332;
}

.content p {
    font-size: 0.95rem;
    color: #f5f5f5;
    margin-bottom: 16px;
    text-align: justify;
    padding: 0 8px;
    line-height: 1.6;
}

.content p strong {
    color: #ffd700;
    font-weight: bold;
}

/* Highlight text untuk link khusus */
.content a[style*="color:yellow"] {
    color: #ffd700 !important;
    font-weight: bold !important;
    text-decoration: none !important;
    background: linear-gradient(45deg, #1b4332, #2d5016);
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.content a[style*="color:yellow"]:hover {
    background: linear-gradient(45deg, #2d5016, #40531b);
    transform: scale(1.05);
}

/* Blockquote styling */
blockquote {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(218, 165, 32, 0.1));
    border-left: 5px solid #ffd700;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #f5f5f5;
}

/* Info Box untuk konten tengah */
.info-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(218, 165, 32, 0.1));
    border: 2px solid #daa520;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
    text-align: center;
}
.syair table {
width: 100%;
border: 1px solid red;
text-align: center;
}

.syair img {
max-width: 100%;
height: auto;
padding: 1px 0 0 0;
display: block;      
margin: 0 auto;      
}
/* Footer container */
.footer_container {
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.1), rgba(218, 165, 32, 0.1));
    border-top: 2px solid #daa520;
    padding: 30px 0;
    margin-top: 40px;
}

.space {
    height: 50px;
}

/* Responsive Design */
@media (max-width: 980px) {
    .container {
        max-width: 100%;
        margin: 0;
    }
    
    .header {
        width: 100%;
        height: 200px;
    }
    
    .header h1 {
        font-size: 1.6rem;
    }
    
    .nav-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(27, 67, 50, 0.2);
    }
    
    .header {
        height: 180px;
    }
    
    .content {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 1.6rem;
    }
    
    .content h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        height: 160px;
    }
    
    .header h1 {
        font-size: 1.3rem;
    }
    
    .header p {
        font-size: 0.9rem;
    }
    
    .content h1 {
        font-size: 1.3rem;
    }
    
    .content h2 {
        font-size: 1.2rem;
    }
    
    .content p {
        font-size: 0.9rem;
    }
}