﻿.text-burgundy {
    --tw-text-opacity: 1;
    color: #98241f;
}

.dropdown-menu a {
    color: black !important;
    text-decoration: none;
    display: block;
    padding: 10px;
}

    .dropdown-menu a:hover {
        background-color: #f8f9fa;
        text-decoration: underline;
    }
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.text {
    max-width: 50%;
}

.hero .photo img {
    width: 250px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: 2rem;
    color: #f39c12;
}

h2 {
    color: #98241fad;
    margin-top: 20px;
}

p {
    font-size: 1.1rem;
    color: #d5cece;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.3s;
}

    .btn:hover {
        background-color: #0056b3;
    }

.nav-separator {
    vertical-align: -webkit-baseline-middle;
    padding: 0 5px;
}

.nav-link.active-link {
    color: #98241f !important;
    font-weight: bold;
}

.bg-burgundy {
    background-color: #a9a9a9ad !important; /* Burgundy */
    color: #98241f8f;
}

/* Timeline - Years */

.timelines-years {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 0;
    border-top: 2px solid #282828;
    list-style: none;
    font-size: 14px;
}

    .timelines-years li {
        flex: 1;
        text-align: center;
        color: #868686;
    }
        /* Display last year */
        .timelines-years li:last-child {
            width: 100px;
        }

/* Timeline - Events */
.timeline-events {
    display: flex;
    align-items: center;
    margin-top: 40px;
    padding: 0;
    list-style: none;
}

    .timeline-events li {
        position: relative;
        width: 80%;
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 8px;
        text-align: center;
    }

        .timeline-events li::before {
            content: "";
            position: absolute;
            left: 10%;
            height: 8px;
            bottom: -36px;
            background: white;
            border-radius: 6px;
        }

    .timeline-events h2,
    .timeline-events h3,
    .timeline-events h4 {
        margin: 0 0 1px 0;
        font-weight: normal;
        font-size: 11px;
    }

    .timeline-events h2 {
        color: #777;
        text-transform: uppercase;
    }

    .timeline-events h4 {
        color: #fff;
        font-style: italic;
    }

    .timeline-events li:nth-child(1) {
        bottom: 0;
    }

    .timeline-events li:nth-child(2) {
        bottom: 16px;
    }

    .timeline-events li:nth-child(3) {
        bottom: 32px;
    }

    /* Timeline - Events - Colours */
    .timeline-events li:nth-child(1):before {
        background: linear-gradient(80deg, #00000000, #e3974e);
        border-radius: 0 6px 6px 0;
    }

    .timeline-events li:nth-child(1) h3 {
        color: #e3974e;
    }

    .timeline-events li:nth-child(2):before {
        background: #870a0a;
        margin-left: -150px;
    }

    .timeline-events li:nth-child(2) h3 {
        color: #870a0a;
    }

    .timeline-events li:nth-child(3):before {
        background: linear-gradient(80deg, #0e7888, #00000000);
        border-radius: 6px 0 0 6px;
        margin-left: -150px;
    }

    .timeline-events li:nth-child(3) h3 {
        color: #0e7888;
    }

/* Timeline - Events - Grid */
.timeline-event-years-0,
.timeline-event-years-0:before {
    width: 490px;
}

.timeline-event-years-1,
.timeline-event-years-1:before {
    width: 640px;
}