/* ======================
   Homepage
====================== */
.home-slide-placeholder {
    width: 100%;
    aspect-ratio: 16 / 6;
    background-color: #dee2e6;
}

.home-announce-thumb {
    width: 80px;
    height: 64px;
    border-radius: 0.375rem;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    flex-shrink: 0;
}

.home-announce-title {
    color: #1a1a2e;
    font-size: 0.95rem;
    transition: color 0.15s ease;
    margin-bottom: 0;
}

.home-announce-item:hover .home-announce-title,
.home-announce-item:focus .home-announce-title {
    color: #E30A17;
}

.home-press-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-press-list li {
    border-bottom: 1px solid #f0f0f0;
}

.home-press-list li:last-child {
    border-bottom: none;
}

.home-press-list a {
    display: block;
    padding: 0.5rem 0;
    color: #495057;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.home-press-list a:hover,
.home-press-list a:focus {
    color: #E30A17;
}

/* ======================
   Board Cards
====================== */
.board-card-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #e9ecef;
}

.board-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.board-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.board-card-role {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* ======================
   Events
====================== */
.event-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #e9ecef;
}

.btn-theme-bg {
	background-color: #e30a17;
	border: none;
	outline: none;
}

/* ======================
   Map
====================== */
.map-wrapper {
    overflow: hidden;
    line-height: 0;
}

.map-iframe {
    border: none;
    display: block;
    height: 400px;
}

/* ======================
   Contact Info
====================== */
.contact-info-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    border-left: 4px solid #E30A17;
    height: 100%;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(227, 10, 23, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #E30A17;
}

.contact-info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E30A17;
    margin-bottom: 0.75rem;
}

.contact-info-text {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.7;
    margin: 0;
    font-style: normal;
}

.contact-phone-list {
    margin: 0;
}

.contact-phone-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-phone-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-phone-role {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #adb5bd;
    margin-bottom: 0.2rem;
}

.contact-phone-number {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.15s ease;
    margin-bottom: 0.15rem;
}

.contact-phone-number:hover,
.contact-phone-number:focus {
    color: #E30A17;
}

.contact-phone-person {
    display: block;
    font-size: 0.82rem;
    color: #6c757d;
}

/* ======================
   Breadcrumb
====================== */
.site-main {
    min-height: 50vh;
}

.site-breadcrumb {
    padding: 0.5rem 0;
}

.site-breadcrumb .breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.site-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #adb5bd;
}

.site-breadcrumb .breadcrumb-item a {
    color: #E30A17;
    text-decoration: none;
}

.site-breadcrumb .breadcrumb-item a:hover,
.site-breadcrumb .breadcrumb-item a:focus {
    color: #b50813;
    text-decoration: underline;
}

.site-breadcrumb .breadcrumb-item.active {
    color: #6c757d;
}

/* ======================
   Site Header
====================== */
.site-header {
    background-color: #fff;
    border-bottom: 3px solid #E30A17;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.header-logo {
    height: 52px;
    width: auto;
    display: block;
}

/* ======================
   Desktop Navigation
====================== */
.site-header .nav-link {
    color: #212529;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    border-radius: 0.375rem;
    transition: color 0.15s ease, background-color 0.15s ease;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    line-height: 1.5;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
    color: #E30A17;
    background-color: rgba(227, 10, 23, 0.06);
}

.site-header .nav-link.dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.1em;
}

.site-header .dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.4rem;
    min-width: 200px;
    margin-top: 0.25rem;
}

.site-header .dropdown-item {
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #212529;
    font-weight: 500;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
    color: #E30A17;
    background-color: rgba(227, 10, 23, 0.06);
}

/* ======================
   Mobile Toggle Button
====================== */
.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0.375rem;
    color: #212529;
    cursor: pointer;
    line-height: 1;
    border-radius: 0.375rem;
    transition: color 0.15s ease, background-color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    color: #E30A17;
    background-color: rgba(227, 10, 23, 0.06);
    outline: none;
}

/* ======================
   Mobile Offcanvas
====================== */
#mobileOffcanvas {
    background-color: #E30A17;
    color: #fff;
    max-width: 100vw;
}

.site-offcanvas-header {
    padding: 0.75rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-offcanvas-header .header-logo {
    height: 48px;
}

.mobile-offcanvas-close {
    background: none;
    border: none;
    color: #fff;
    padding: 0.375rem;
    cursor: pointer;
    border-radius: 0.375rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
    flex-shrink: 0;
}

.mobile-offcanvas-close:hover,
.mobile-offcanvas-close:focus {
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
}

#mobileOffcanvas .offcanvas-body {
    padding: 1.5rem 1rem;
    overflow-y: auto;
}

/* ======================
   Mobile Navigation
====================== */
.mobile-nav {
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: #FFC60B;
    outline: none;
}

.mobile-nav-chevron {
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-chevron {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    padding: 0 0 0.75rem 1rem;
    margin: 0;
    display: none;
}

.mobile-nav-submenu.is-open {
    display: block;
}

.mobile-nav-sublink {
    display: block;
    padding: 0.55rem 0;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.15s ease;
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink:focus {
    color: #FFC60B;
}

/* ======================
   Site Footer
====================== */
.site-footer {
    background-color: #1a1a2e;
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 2rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    max-width: 240px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.6rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: #FFC60B;
}

.footer-social-title {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.footer-social-link:hover,
.footer-social-link:focus {
    background-color: #E30A17;
    color: #fff;
}

/* ======================
   Footer Bottom Bar
====================== */
.footer-bottom {
    background-color: #111827;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    margin: 0;
}

/* ======================
   About Page
====================== */
.about-stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
    background-color: #E30A17;
    color: #fff;
    height: 100%;
}

.about-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.85;
}

.about-text p {
    color: #495057;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* ======================
   Bank Card
====================== */
.bank-card {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e9ecef;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.bank-card-header {
    background-color: #1a1a2e;
    color: #fff;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.bank-card-body {
    background-color: #fff;
}

.bank-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6c757d;
    min-width: 80px;
    flex-shrink: 0;
}

.bank-value {
    font-size: 0.95rem;
    color: #212529;
    font-weight: 500;
}

.bank-iban {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.04em;
}

/* ======================
   Responsive
====================== */
@media (max-width: 991.98px) {
    .site-header .navbar {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

    .header-logo {
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    .footer-brand-text {
        max-width: 100%;
    }
}
