* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background: url(../assets/abstract_bw.jpg) no-repeat center center fixed;
    background-size: cover;
    background-color: black;
}

section {
    width: 100vw;
    min-height: 100vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 120px;
    z-index: 5;
}

section h1 {
    font-size: 4rem;
}

.center-text {
    font-size: 10rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 10;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

.logo img {
    margin-left: 2.3em;
    height: 100px;
    width: auto;
}

nav ul {
    display: flex;
    flex-flow: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: .5s;
    list-style-type: none;
}

ul li a {
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: .5s;
}

ul li a:hover {
    background: #000;
    color: #fff;
    transition: .5s
}

.menu-trigger {
    display:none;
    margin-right: 1.5em;
    background: #D56287;
    color: #fff;
    padding: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

@media screen and (max-width:816px) {

    .menu-trigger {
        display:block;
    }

    header {
        display: flex;
        align-items: flex-start;
        height: auto;
        min-height: 60px;
        background: rgba(0, 0, 0, 0.95);
    }

    nav ul {
        display:block;


    }

    ul li {
        width: 50vh;

    }

    ul li a {
        display: block;
        /* text-align: center; */
        color: #ffff;
        background: rgba(0,0,0,.5);

    }

}

@media (max-width: 359px)
{
    .logo img {
        margin-left: 0.1em;

    }


}

.truck-img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    user-select: none;
    margin-top: 20px;
}

h3 {
    margin-bottom: 20px;
}

#view-gallery-btn {
    background: #8E0E00;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1F1C18, #8E0E00);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1F1C18, #8E0E00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
    margin-top: 20px;
}

#view-gallery-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Modal Gallery */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
}

#modal-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 5px solid;
    border-image-source: linear-gradient(to right, #1F1C18, #8E0E00);
    border-image-slice: 1;
}

#modal-caption {
    margin-top: 20px;
    color: #ccc;
    font-size: 1.1rem;
    font-weight: bold;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
    color: #8E0E00;
    text-decoration: none;
    cursor: pointer;
}

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background: #8E0E00;
    background: -webkit-linear-gradient(to right, #1F1C18, #8E0E00);
    background: linear-gradient(to right, #1F1C18, #8E0E00);
    border: none;
    z-index: 2001;
}

.modal-prev:hover,
.modal-next:hover {
    opacity: 0.8;
}

.modal-next {
    right: 0;
    border-radius: 3px 0 0 3px;
    background: #8E0E00;
    background: -webkit-linear-gradient(to left, #1F1C18, #8E0E00);
    background: linear-gradient(to left, #1F1C18, #8E0E00);
}

.modal-prev {
    left: 0;
}

.modal-prev:hover,
.modal-next:hover {
    opacity: 0.8;
}

@media screen and (max-width: 600px) {
    .modal-prev, .modal-next {
        font-size: 20px;
        padding: 10px;
    }
    .close-modal {
        top: 15px;
        right: 20px;
    }
}

.content-page section {
    padding: 20px 20px 50px;
    justify-content: flex-start;
}

.content-container {
    max-width: 1000px;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    margin-top: 140px;
    margin-bottom: 50px;
}

.content-container h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    border-bottom: 2px solid #D56287;
    display: inline-block;
}

.content-container p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Leadership Cards */
.leadership-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.leader-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.leader-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #444;
}

.leader-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.leader-info .title {
    font-weight: bold;
    color: #888;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-info .quote {
    font-style: italic;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-info {
    margin-top: 30px;
}

.contact-info a {
    color: #D56287;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background: #000000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+/ Safari 7+ */
    color: #888;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    position: relative;
    z-index: 20;
}

.footer-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}