﻿body, main {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-brand {
    font-weight: bold;
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}

main.container {
    min-height: 60vh;
}

/* this lets the section ignore the wrapper’s centering */
.hero-section {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background: url('/images/bg/2.jpg') center/cover no-repeat;
    padding: 30px 0;
}

/* optional: style your inner container */
.hero-section .container {
    max-width: 1140px;
}
.hero-section .display-5 {
    color: #222222;
}

/* reset default img behavior */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* team-member photos—fixed aspect ratio, perfectly cropped circles */
.team-photo {
    width: 150px; /* or whatever diameter you like */
    height: 150px;
    object-fit: cover; /* fill the box without distortion */
    border-radius: 50%; /* circle */
}

/* Card image: fixed height + cover */
.events .card-img-top {
    height: 200px; /* keep the same max height if you like */
    object-fit: contain;
    background: #fff; /* a little white letter-box if the aspect-ratios differ */
}

/* Card hover effect */
.events .card:hover {
    transform: translateY(-5px);
    transition: transform .3s ease;
}

/* Make button full-width on mobile */
.events .btn {
    width: 100%;
}

@media(min-width: 576px) {
    .events .btn {
        width: auto;
    }
}

/* make each address row a flex box */
.single__contact__address {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem; /* space between rows */
}

/* turn the icon wrapper into a perfect circle */
.contact__icon {
    flex: 0 0 60px; /* fix width */
    height: 60px; /* fix height */
    border: 1px solid #ccc; /* light grey border */
    border-radius: 50%; /* circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem; /* space from text */
}

    /* bump up the icon size & color */
    .contact__icon .ti-location-pin,
    .contact__icon .ti-mobile,
    .contact__icon .ti-email {
        font-size: 1.5rem; /* tweak to taste */
        color: #555;
    }

/* remove default p margins */
.contact__details p {
    margin: 0;
    line-height: 1.4;
}

/* make the active item match your primary color */
.list-group-item-action.active {
    background-color: #007bff; /* or your brand color */
    border-color: #007bff;
    color: #fff;
}

/* subtle hover */
.list-group-item-action:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

/* ensure the card/sidebar sits flush */
.card .list-group-flush .list-group-item {
    border-width: 0 0 1px; /* only horizontal lines */
}

    .card .list-group-flush .list-group-item:last-child {
        border-bottom: none;
    }

/** {
    outline: 1px solid red;
}*/