

/* ============================
   VARIABLES
============================ */
:root {
    --primary: #14325f;
    --accent: #d4af37;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #1f2d3d;
    --text-muted: #4a4a4a;
    --border-light: rgba(200,212,242,0.4);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 36px rgba(0,0,0,0.12);
    --transition: 0.4s ease;
    --font-heading: "Cinzel", "Georgia", serif;
    --font-body: "Segoe UI", Arial, sans-serif;
}

/* ============================
   GENERAL
============================ */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 20px;
    line-height: 1.7;
}

/* ============================
   NAVBAR
============================ */
.navbar {
    width: 100%;
    height: 80px;
    padding: 0 50px;
    background: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.home-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.logo-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 12px;
    position: relative;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    color: var(--accent);
}

.menu a:hover { color: var(--accent); }
.menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.menu a:hover::after { width: 100%; }

/* MOBILE NAV */
.mobile-toggle { display: none; font-size: 24px; cursor: pointer; }
@media(max-width:768px){
    .mobile-toggle{display:block;}
    .menu{position:absolute; top:80px; left:0; width:100%; background:var(--bg-white); display:none; padding:25px 0; box-shadow: var(--shadow-lg);}
    .menu.open{display:block;}
    .menu ul{flex-direction:column; align-items:center; gap:25px;}
}
/* ===== ARTICLE MAIN WRAPPER ===== */

.verse {
    max-width: 760px;
    width: 95%;
    padding: 0;   
    margin: 0 auto;
    text-align: center;
    font-style: italic; 

}

.article-wrapper {
    max-width: 760px;
    width: 95%;
    padding: 25px 15px;
    margin: 75px auto;
    text-align: center;
}



/* ===== IMAGE ===== */
.article-image {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto 20px auto;
    object-fit: cover;
}


/* ===== TITLE ===== */
.article-title {
    font-size: 36px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* ===== BYLINE ===== */
.article-byline {
    font-size: 16px;
    color: #555;
    font-weight: 400;
    margin-bottom: 40px;
}

/* ===== ARTICLE CONTENT ===== */
.article-content {
    text-align: justify;
    margin: 0 auto;
    max-width: 650px;
    font-size: 19px;
    line-height: 1.9;
}

.article-content p {
    margin-bottom: 20px;
}

/* ===== QUOTE ===== */
.article-quote {
    text-align: center;
    font-weight: bold;
    line-height: 2;
    margin-top: 30px;
    font-size: 20px;
}

/* ===== FOOTER ===== */
.article-footer {
    margin-top: 40px;
    color: #555;
    font-size: 16px;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }

    .article-byline {
        font-size: 14px;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.8;
    }

    .article-quote {
        font-size: 18px;
    }
}
