:root {
    --municipality-teal: var(--primary-blue);
    --municipality-dark: #b3b3b3;
}

.container-custom {
    background-color: #d9dbe678;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    /* border: 1px solid #1773b0; */
    border-radius: 20px;
    padding: 40px 26px;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
    /* box-shadow: 0 2px 10px gray; */
}

/* Hero / Mayor Section */
.mayor-section {
    /* background-color: var(--municipality-teal); */
    color: white;
    padding: 60px 0;
    position: relative;
    margin: 50px;
    border-radius: 13px;
}

.mayor-title-top {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--municipality-teal);
}

.mayor-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--municipality-teal);
}

.mayor-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--municipality-teal);
}
.mayor-info p {
    color: var(--municipality-teal);
}
.mayor-bio {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 30px;
}

.btn-more-white {
    background-color: white;
    color: var(--municipality-teal);
    border: none;
    border-radius: 50px;
    padding: 5px 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-more-white:hover {
    color: white;
    background-color: var(--municipality-teal);
}
.mayor-img-container img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mayor-img-container::after {
    pointer-events: none;
}

/* Common Section Header with Underline */
.section-header-centered {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-header-centered h2 {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    background: var(--municipality-teal);
    padding: 5px 20px;
    border-radius: 0;
    position: relative;
}

.section-header-centered::after {
    content: "";
    display: block;
    width: 300px;
    height: 3px;
    background-color: var(--municipality-dark);
    margin: -3px auto 0;
}

/* Specific headers colors from images */
.header-white-bg {
    background-color: white !important;
    color: var(--municipality-teal) !important;
}

/* Vision & Mission Cards */
.vision-mission-section {
    background-color: var(--municipality-teal);
    padding: 20px 0 80px;
}

.vm-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vm-card h3 {
    color: var(--municipality-teal);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    color: #444;
}

/* About Salt Section (Tabs) */
.about-salt-section {
    padding: 60px 0;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn {
    border: none;
    padding: 12px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background-color: var(--municipality-teal);
    transition: all 0.3s;
    min-width: 180px;
}

.tab-btn.active {
    /* background-color: var(--municipality-dark); */
    background-color: #e3e8ff;
    color: var(--municipality-teal);
}

.tab-btn:not(:last-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.about-text-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 30px;
    display: none;
}

.about-text-content.active {
    display: block;
}

.shrines-list {
    list-style: none;
    padding: 0;
}

.shrines-list li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.shrines-list li::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: var(--municipality-teal);
    border-radius: 50%;
    margin-right: 15px;
    /* In RTL after is on the left of text */
}

/* Utility */
.teal-text {
    color: var(--municipality-teal);
}
