/* gonnen.css - Kurdish Hunter x Hunter Page Design */

/* Font import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;500;700&display=swap');

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

/* Animation Keyframes */
@keyframes nenGlow {
    0% { box-shadow: 0 0 5px rgba(72, 181, 71, 0.5); }
    50% { box-shadow: 0 0 20px rgba(72, 181, 71, 0.8); }
    100% { box-shadow: 0 0 5px rgba(72, 181, 71, 0.5); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Font - Fixed Path */
@font-face {
    font-family: 'K24KurdishBold';
    src: url('../../../../fonts/K24KurdishBold-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Base Styles */
html, body {
    font-family: 'K24KurdishBold', 'Noto Sans Arabic', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    direction: rtl;
    text-align: right;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #48B547, #399644);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Navigation */
nav {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #48B547;
}

/* Article Styles */
article {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin: 30px auto;
    max-width: 900px;
}

article h2 {
    color: #48B547;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #48B547;
    padding-bottom: 10px;
    font-family: 'K24KurdishBold', 'Noto Sans Arabic', sans-serif;
}

article img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

article p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    font-family: 'K24KurdishBold', 'Noto Sans Arabic', sans-serif;
}

/* Special Styles for Hunter x Hunter Theme */
.hunter-accent {
    color: #48B547;
    font-weight: bold;
}

.nen-box {
    background-color: #f5f5f5;
    border-left: 4px solid #48B547;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: #48B547;
    text-decoration: none;
}

/* Enhanced Image Styles */
img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    article {
        padding: 20px;
        margin: 15px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-end;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    article h2 {
        font-size: 1.5rem;
    }
    
    article p {
        font-size: 0.9rem;
    }
}