/* Custom styles for the website */

.logo {
    max-height: 160px;
    height: auto;
    width: auto;
}

/* Navigation Styles */
.navigation {
    padding: 10px 0;
}

    .navigation .menu {
        display: block;
        padding: 12px 20px;
        margin: 2px 0;
        color: #800000;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        border-radius: 6px;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    }

        .navigation .menu:hover {
            background-color: #FFF5F5;
            border-left-color: #FF5A00;
            color: #8B0000;
            text-decoration: none;
            transform: translateX(5px);
            box-shadow: 0 2px 8px rgba(139, 0, 0, 0.1);
        }

        .navigation .menu:focus,
        .navigation .menu:active {
            background-color: #FF5A00;
            color: white;
            border-left-color: #8B0000;
            font-weight: 600;
        }

        .navigation .menu.active {
            background-color: #8B0000;
            color: white;
            border-left-color: #FF5A00;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(139, 0, 0, 0.2);
        }

/* Mobile navigation adjustments */
.offcanvas-body .navigation .menu {
    border-radius: 8px;
    margin: 4px 0;
}

    .offcanvas-body .navigation .menu:hover {
        transform: translateX(8px);
    }

/* Links Page Styles */
.section {
    margin: 30px 0;
    padding: 25px;
    background-color: #FFFAFA;
    border-radius: 8px;
    border-left: 5px solid #FF5A00;
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .section:hover {
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.section-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #8B0000;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px dotted #FF5A00;
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-item {
    display: block;
    margin: 12px 0;
    padding: 12px 15px;
    color: #800000;
    text-decoration: none;
    font-weight: 500;
    background-color: white;
    border-radius: 5px;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .link-item::before {
        content: '→';
        position: absolute;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
        color: #FF5A00;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .link-item:hover {
        background-color: #FFF5F5;
        border-color: #FF5A00;
        color: #8B0000;
        text-decoration: none;
        padding-left: 25px;
        box-shadow: 0 3px 8px rgba(255, 90, 0, 0.2);
    }

        .link-item:hover::before {
            left: 8px;
        }

.support-link {
    background-color: #F0F8FF;
    border-color: #4169E1;
    color: #4169E1;
}

    .support-link:hover {
        background-color: #E6F3FF;
        border-color: #1E90FF;
        color: #1E90FF;
        box-shadow: 0 3px 8px rgba(65, 105, 225, 0.2);
    }

    .support-link::before {
        color: #4169E1;
    }

/* Contact Page Styles */
.form-container {
    background-color: #FFFAFA;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.1);
    border-left: 6px solid #FF5A00;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .form-container:hover {
        box-shadow: 0 6px 20px rgba(139, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.form-title {
    color: #8B0000;
    font-weight: bold;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px dotted #FF5A00;
    text-align: center;
}

.form-label {
    color: #800000;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #E8E8E8;
    border-radius: 6px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    background-color: white;
}

    .form-control:focus {
        border-color: #FF5A00;
        box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
        background-color: #FFFAFA;
    }

    .form-control:hover {
        border-color: #FF5A00;
    }

.btn-submit {
    background-color: #8B0000;
    border-color: #8B0000;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-submit:hover {
        background-color: #FF5A00;
        border-color: #FF5A00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 90, 0, 0.3);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

.contact-info {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
}

    .contact-info:hover {
        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
        transform: translateY(-1px);
    }

.contact-title {
    color: #8B0000;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF5A00;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 1rem;
    padding: 8px 0;
}

    .contact-detail i {
        color: #FF5A00;
        width: 20px;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .contact-detail strong {
        color: #8B0000;
    }

    .contact-detail a {
        color: #800000;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .contact-detail a:hover {
            color: #FF5A00;
            text-decoration: underline !important;
        }


/* custom adjustments */
.highlight-text {
    margin: 20px 0;
    color: darkred;
    padding: 15px;
    line-height: 1.6;
}

.mybold-text {
    font-weight: bold;
    color: black;
    padding-top: 1em;
    padding-bottom: 1em;
}

.simple-block {
    padding-top: 1em;
    padding-bottom: 1em;
}

.underlined {
    text-decoration: underline;
}

.announce {
    margin: 1em;
    color: #FF5A00;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
}

/* Another option with just basic styling */
.red-text {
    font-weight: bold;
    margin: 5px 0;
    color: #8B0000;
}

.small-text {
    font-size: 0.9em;
    line-height: 1.5;
    margin-top: 20px;
}

.history-headline {
    font-weight: bold;
    font-size: 1.5em;
    color: #800000;
    margin-top: 1.2em;
}

.timeline-item {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px dotted #ccc;
}

.year {
    font-size: 1.5em;
    font-weight: bold;
    color: #800000;
    margin-bottom: 10px;
}

.description {
    line-height: 1.2em;
    margin-bottom: 10px;
    color: #666;
}

.col-6:last-child {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.action-needed {
    margin: 25px 0;
    color: #8B0000;
    font-weight: bold;
    font-size: 1.05em;
    line-height: 1.7;
    padding: 20px;
    background-color: #FFFAFA;
    border-left: 5px solid #8B0000;
}

    .action-needed .emphasis {
        text-transform: uppercase;
        font-weight: 700;
    }

.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.summary-list {
    list-style: none;
    padding: 0;
    counter-reset: item;
}

    .summary-list li {
        counter-increment: item;
        margin-bottom: 15px;
        padding: 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-left: 4px solid #3498db;
        border-radius: 5px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .summary-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
        }

        .summary-list li::before {
            content: counter(item);
            background: #3498db;
            color: white;
            font-weight: bold;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 0.9em;
            flex-shrink: 0;
        }

        .summary-list li span {
            display: inline-block;
            vertical-align: top;
            flex: 1;
        }

    .summary-list li {
        display: flex;
        align-items: flex-start;
    }

.download-link {
    margin: 15px 10px;
    display: inline-block;
    padding: 8px 12px;
    color: #800000;
    text-decoration: none;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    background-color: #FFFAFA;
    transition: all 0.3s ease;
}

.download-link:hover {
    background-color: #FFF5F5;
    border-color: #FF5A00;
    color: #8B0000;
    text-decoration: none;
}