/*
 Theme Name:   GeneratePress Child
 Template:     generatepress
 Version:      1.0.0
*/

@import url("../generatepress/style.css");


/* ========== GENERAL STYLES ========== */
body {
    background-color: #f3f4f6; /* light gray background */
    color: #2d2d2d; /* dark gray text */
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: #005577; /* industrial blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #cc5500; /* rust/orange hover */
}

/* ========== HEADER ========== */
.site-header {

    border-bottom: 4px solid #cc5500;
}

.site-title a,
.site-description {
    color: #ffffff;
}

.main-navigation {
    /*background-color: #1f1f1f;*/
}

.main-navigation ul ul {
    background-color: #2b2b2b;
}

.main-navigation a {
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}

.main-navigation a:hover {
    color: #cc5500;
}

/* ========== CONTAINER & CONTENT ========== */
.inside-article {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #d1d5db;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.entry-title {
    font-size: 28px;
    font-weight: 700;
    color: #005577;
    margin-bottom: 15px;
}

.entry-meta {
    font-size: 14px;
    color: #6b7280;
}

/* ========== SIDEBAR ========== */
.sidebar .widget {
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 20px;
    margin-bottom: 25px;
}

.sidebar .widget-title {
    font-size: 18px;
    color: #005577;
    border-bottom: 2px solid #cc5500;
    margin-bottom: 10px;
}

/* ========== BUTTONS ========== */
button,
.button,
.wp-block-button__link {
    background-color: #005577;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.3s;
}

button:hover,
.button:hover,
.wp-block-button__link:hover {
    background-color: #cc5500;
}

/* ========== FOOTER ========== */
.site-footer {
    /*background-color: #1f1f1f;*/
    /*color: #bbbbbb;*/
    padding: 40px 0;
    font-size: 14px;
    border-top: 4px solid #cc5500;
}

.site-footer a {
    color: #ffffff;
}

.site-footer a:hover {
    color: #cc5500;
}

/* ========== IMAGES ========== */
img {
    border-radius: 4px;
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
}

/* ========== CATEGORY TAGS ========== */
.cat-links a,
.tags-links a {
    display: inline-block;
    background-color: #e5e7eb;
    color: #333;
    padding: 4px 10px;
    margin: 0 5px 5px 0;
    border-radius: 3px;
    font-size: 13px;
    transition: background 0.3s;
}

.cat-links a:hover,
.tags-links a:hover {
    background-color: #cc5500;
    color: #fff;
}

/* ========== RESPONSIVE TWEAKS ========== */
@media (max-width: 768px) {
    .main-navigation ul {
        background-color: #2b2b2b;
    }

    .inside-article,
    .sidebar .widget {
        padding: 20px;
    }

    .entry-title {
        font-size: 24px;
    }
}
