/* --- BCL-style Team Grid --- */
.team-title {
    color: #ffe7a0;
    font-size: 2.2rem;
    margin-top: 0;
    border-bottom: 2px solid #ab8d44;
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
    font-weight: bold;
    text-align: center;
}
.team-grid-bcl {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    justify-items: center;
    margin-bottom: 2rem;
}
.team-card-bcl {
    background: #f8f6f2;
    border-radius: 0;
    border: 2px solid #d6c7a1;
    box-shadow: 0 2px 12px rgba(171, 141, 68, 0.08);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    cursor: pointer;
    width: 100%;
    max-width: 270px;
    min-width: 0;
    text-decoration: none !important;
    color: #1a3a24;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}
.team-card-bcl:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 8px 32px #ffe7a033, 0 2px 16px rgba(171, 141, 68, 0.18);
    border-color: #ab8d44;
    z-index: 2;
}
.team-img-bcl {
    width: 100%;
    height: 220px;
    margin: 0 auto 0 auto;
    border-radius: 0;
    overflow: hidden;
    background: #eae6dd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.team-img-bcl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    border: none;
    box-shadow: none;
}
.team-img-bcl::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid #fff;
    pointer-events: none;
    z-index: 2;
}
.team-info-bcl {
    width: 100%;
    background: #1a3a24;
    padding: 1.2rem 0 1.1rem 0;
    border-top: 2px solid #d6c7a1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-name-bcl {
    font-size: 1.18rem;
    font-weight: bold;
    color: #ab8d44;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
    font-family: 'Crimson Text', serif;
}

.team-role-bcl {
    font-size: 0.78rem;
    color: #ab8d44;
    margin-bottom: 0.7rem;
    font-style: normal;
    opacity: 1;
    letter-spacing: 0.2px;
    font-family: 'Crimson Text', serif;
    text-transform: uppercase;
}
.team-role-divider {
    width: 40px;
    height: 4px;
    background: #ab8d44;
    margin: 0.5rem auto 0.7rem auto;
    border-radius: 2px;
}


@media (max-width: 1200px) {
    .team-grid-bcl {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 900px) {
    .team-grid-bcl {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .team-card-bcl {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .team-grid-bcl {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .team-card-bcl {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
}
body {
    background: url('../Images/Clock/ClockFaceNoHands.webp') no-repeat center center fixed;
    background-size: cover;
}

.hero-section {
    position: relative;
    width: 100%;
    background: none;
    background-image: url('../Images/MeetTheTeamBG.svg');
    background-size: cover;
    background-position: center;
    padding: 22rem 0; /* Increase height */
    text-align: center;
    font-size: 2rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.team-section {
    max-width: 1200px;
    margin: 4rem auto 3rem auto;
    background: rgba(1, 39, 14, 0.92);
    color: #fff;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
    z-index: auto;
}
.team-section::before {
    content: "";
    position: absolute;
    top: 0; left: 50%; right: 50%; bottom: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(1, 39, 14, 0.651);
    margin-top: -100px;
    margin-bottom: -100px;
    z-index: -1;
    border-radius: 0;
}
.team-section h2 {
    color: #ffe7a0;
    font-size: 2.2rem;
    margin-top: 0;
    border-bottom: 2px solid #ab8d44;
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
    font-weight: bold;
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}
.team-card {
    background: rgba(255,255,255,0.07);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(171, 141, 68, 0.18);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}
.team-card:hover {
    transform: translateY(-12px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px #ffe7a0cc, 0 2px 16px rgba(171, 141, 68, 0.18);
    z-index: 2;
}
.team-img-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    overflow: visible;
    z-index: 1;
}
.team-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffe7a0;
    box-shadow: 0 0 0 8px rgba(171, 141, 68, 0.10);
    transition: box-shadow 0.25s, border 0.25s;
}
.team-card:hover .team-img {
    box-shadow: 0 0 0 16px #ffe7a0cc;
    border: 4px solid #ab8d44;
}
.team-card .team-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #ffe7a0 0%, rgba(255,231,160,0.0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 0;
}
.team-card:hover .team-glow {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
}
.team-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffe7a0;
    margin-bottom: 0.3rem;
    margin-top: 0.5rem;
}
.team-role {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.7rem;
    font-style: italic;
}
.team-bio {
    font-size: 1rem;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}
.breadcrumbs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #1a3a24;
    padding: 0.75em 2em 0.75em 2em;
    margin: 0;
    box-shadow: 0 2px 8px rgba(26,35,64,0.06);
    font-family: 'Crimson Text', serif;
    font-size: 1.1em;
    border-bottom: 0; /* Ensure no border */
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumb-separator {
  margin: 0 0.5em;
  color: #b89b5e;
  font-size: 1.2em;
}
.breadcrumb-icon {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.3em;
  vertical-align: middle;
}
.breadcrumb-current {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #b89b5e;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 40000;
  background: linear-gradient(135deg, #1a3a24 0%, #ab8d44 100%);
  border: 2px solid #ffe7a0;
  border-radius: 12px;
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(171, 141, 68, 0.4);
  transition: all 0.3s ease;
}

.mobile-nav-toggle .material-icons {
  color: #ffe7a0;
  font-size: 32px;
  transition: transform 0.3s ease;
}

.mobile-nav-toggle:hover {
  background: linear-gradient(135deg, #ab8d44 0%, #1a3a24 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 231, 160, 0.5);
}

.mobile-nav-toggle:active {
  transform: scale(0.95);
}

.mobile-nav-toggle.active .material-icons {
  transform: rotate(90deg);
}

.hero-nav-btns-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-90%);
    z-index: 30000;
    max-width: 340px;
    width: 100%;
    padding-left: 2.2vw;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    pointer-events: auto;
}
.hero-nav-fadein-btn.hero-nav-fadein-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.77,0.2,0.05,1.0), transform 0.8s cubic-bezier(0.77,0.2,0.05,1.0);
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    box-shadow: none;
    margin: 0;
    padding: 0.3rem 1.2rem 0.3rem 0.2rem;
    border-radius: 0 32px 32px 0;
    cursor: pointer;
    overflow: visible;
    background: none;
}
.hero-nav-fadein-btn.hero-nav-fadein-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.hero-nav-fadein-btn .gold-vert-line {
    display: inline-block;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ffe7a0 0%, #ab8d44 100%);
    margin-right: 1.1rem;
    border-radius: 2px;
    transition: height 0.7s cubic-bezier(0.77,0.2,0.05,1.0);
    vertical-align: middle;
    box-shadow: 0 0 6px #ab8d44a0;
}
.hero-nav-fadein-btn.hero-nav-fadein-left.visible .gold-vert-line {
    height: 2.1rem;
}
.hero-nav-fadein-btn .hero-nav-btn-text {
    color: #fff;
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: color 0.2s;
}
.hero-nav-fadein-btn:hover .hero-nav-btn-text {
    color: #ffe7a0;
}
.hero-nav-fadein-btn:hover .gold-vert-line {
    box-shadow: 0 0 16px #ffe7a0;
}
@media (max-width: 900px) {
    .team-section {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .team-grid {
        gap: 1.2rem;
    }
}

/* IMG Coming Soon Overlay */
.img-coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a3a24;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    border: 2px solid #ab8d44;
    font-family: 'Crimson Text', serif;
}
