﻿:root {
    /* Brand Colors */
    --primary-blue: #0088cc;
    --primary-orange: #f7941d;
    --nav-active-orange: #f39c12;
    --dark-navy: #002133;
    /* Text Colors */
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #cccccc;
    --white: #ffffff;
    /* Layout & Borders */
    --border-light: #eeeeee;
    --header-padding: 10px 20px;
    --footer-padding: 20px 30px 5px 30px;
    --border-radius: 4px;
    /* Typography */
    --font-main: 'Segoe UI', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    margin: 0;
    overflow-x: hidden;
    color: var(--text-main);
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--header-padding);
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 50px;
        margin-right: 10px;
    }

.logo-text h1 {
    font-size: 24px;
    margin: 0;
    text-transform: lowercase;
    font-style: italic;
    color: var(--text-main);
}

.logo-text p {
    font-size: 10px;
    margin: 0;
    color: var(--text-muted);
}

/* Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

    .nav-menu ul li a {
        text-decoration: none;
        color: var(--text-main);
        font-size: 14px;
        font-weight: 500;
    }

        .nav-menu ul li a.active {
            color: var(--nav-active-orange);
        }

/* Action Buttons */
.submit-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.search-btn {
    background: black;
    color: var(--white);
    border: none;
    padding: 8px 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
}

/* Navigation bar background */
.orange-bg {
    background-color: var(--primary-orange) !important;
    display: block !important;
    width: 100%;
    padding: 0px 20px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: var(--footer-padding);
    font-family: var(--font-main);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

.subscribe-btn {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    font-weight: bold;
    height: 45px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.copyright-text {
    font-size: 13px;
    color: var(--text-light);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 50px;
        margin-right: 10px;
    }

.logo-text h1 {
    font-size: 24px;
    margin: 0;
    text-transform: lowercase;
    font-style: italic;
    color: #333;
}

.logo-text p {
    font-size: 10px;
    margin: 0;
    color: #666;
}

/* Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

    .nav-menu ul li a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
        font-weight: 500;
    }

        .nav-menu ul li a.active {
            color: #f39c12;
            /* Orange color for Home */
        }

.nav-menu i {
    font-size: 12px;
    margin-left: 3px;
}

/* Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.submit-btn {
    background-color: #0088cc;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.search-btn {
    background: black;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.lang-selector {
    display: flex;
    gap: 10px;
    font-size: 13px;
    font-weight: bold;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .lang-item img {
        width: 18px;
    }

/* Navigation bar */
.orange-bg {
    background-color: #f7941d !important;
    display: block !important;
    width: 100%;
    padding: 0px 20px;
}

.banner-section {
    color: white !important;
}

.journal-title {
    font-style: italic;
    font-weight: 500;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    padding-left: 40px;
}

li {
    margin-bottom: 15px;
}

.email-link {
    color: #000;
    text-decoration: none;
    font-style: italic;
}

    .email-link:hover {
        text-decoration: underline;
    }

/*Footer */
.main-footer {
    background-color: #002133;
    /* Dark Blue Background */
    color: white;
    padding: 20px 30px 05px 30px;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-top: 50px;
}

.footer-logo {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
}

.journal-info {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 10px;
}

.open-access {
    font-size: 15px;
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 1px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }

/* Newsletter Inputs */
.custom-field {
    background-color: white !important;
    border: none !important;
    height: 45px;
    padding-left: 20px !important;
    font-size: 14px;
    color: #333 !important;
}

/* Blue Subscribe Button */
.subscribe-btn {
    background-color: #0088cc !important;
    /* Blue color from screenshot */
    color: white !important;
    font-weight: bold;
    height: 45px;
    border: none;
    letter-spacing: 0.5px;
    cursor: pointer;
}

    /* Remove Hover change to keep it static like screenshot */
    .subscribe-btn:hover {
        background-color: #0088cc !important;
        color: white !important;
        opacity: 0.9;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.copyright-text {
    font-size: 13px;
    color: #ccc;
}





@media (min-width: 992px) {
    .logo img {
        max-height: 50px;
    }
}

/* Banner che si adatta */
.orange-bg {
    background-color: #f7941d !important;
    width: 100%;
}

.banner-section h1 {
    font-size: calc(1.3rem + 0.6vw);
    /* Font fluido */
}

/* Gestione Liste su mobile */
@media (max-width: 768px) {
    ul {
        padding-left: 20px;
    }

    .header-actions {
        gap: 10px;
    }

    .submit-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
}
