/*
Theme Name: Twenty Twenty-Five Child (Bootstrap Edition)
Template: twentytwentyfive
Description: A modern, Bootstrap 5 based newspaper theme.
Version: 2.0
*/

/* Import Google Font for the Newspaper Title */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/* Bootstrap handles the rest! */
/* We just add slight tweaks here if needed. */

body {
    /* Ensuring the scrollbar doesn't jump */
    overflow-y: scroll;
}

a {
    transition: color 0.2s ease-in-out;
}

a:hover {
    text-decoration: underline !important;
}

/* NEW: Custom Orange Bar Background */
.bg-newspaper-orange {
    background-color: #ff8c00 !important; /* A nice deep orange */
    color: white;
}

/* Ensure links on the orange bar are white */
.bg-newspaper-orange .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.bg-newspaper-orange .nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* ... keep existing styles ... */

/* MATCHING LOGO ORANGE */
.bg-newspaper-orange {
    background-color: #f7941e !important; /* Adjusted to match your logo */
    color: white;
}

/* Navbar Link Styles */
.bg-newspaper-orange .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.1rem;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.bg-newspaper-orange .nav-link:hover {
    color: #fff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}