
body {
  background-color: black;
}

.landing_picture {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  overflow: hidden;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  z-index: -1; 
  filter: saturate(0.8) blur(3px) brightness(0.9) brightness(0.8);
}

.page-title {
  position: relative;
  display: inline-block;
}

.page-title img {
  width: 100%;
  display: block;
}

.overlay-text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  text-align: center;
}

.cities{
    font-size: 4vh;
}

.ten-chapters{
    padding-top: 1%;
    font-size: 5vh;
}

.One-mission{

    font-family: "Spectral", serif;
    font-size: 8vh;
    font-weight: 700;
    display: inline-block;
    border-bottom: 4px solid white;
    padding-bottom: 1vh;
}

.intro-band {
    background-color: #d2c6bd;
    width: 100%;
    padding: 4vh 0;
    margin-top: 1vh;
    margin-bottom: 8vh;
}

.intro {
    color: #2b2b2b;
    font-family: "Spectral", serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-align: justify;
    max-width: 80vw;
    line-height: 1.5;
    word-spacing: 0.05em;
    margin-left: auto;
    margin-right: auto;
}

.Titles{
    color: white;
    font-size: clamp(2.6rem, 3.2vw, 3.4rem);
    font-weight: bold;
    margin-left: 4vw;
    margin-right: 4vw
}

.Stock-title{
text-align: right;

}

.sf-subtitle{
    font-weight: normal;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-style: italic;
}

.stockton-subtitle{
    font-weight: normal;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-style: italic;
    text-align: right;
}

.losangeles-subtitle{
    font-weight: normal;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-style: italic;
}

.SfBranchDesc{
  font-weight: normal;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  margin-top: 2vh;
}
.StBranchDesc{
  font-weight: normal;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  text-align: right;
  margin-top: 2vh;
}
.LaBranchDesc{
  font-weight: normal;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  margin-top: 2vh;
}

.branch-row{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2vw;
  margin-bottom: 10vh;
}

.branch-row.img-left{
  grid-template-columns: auto 1fr;
}

.branch-button{
  align-self: flex-start;
  margin-top: 2.5vh;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.4s ease;
}

.branch-button::after{
  content: " \2192";
}

.branch-button:hover{
  color: #ff7c7c;
}

.branch-row.img-left .branch-button{
  align-self: flex-end;
}

.branch-info{
  display: flex;
  flex-direction: column;
}

.branch-chapters{
  color: white;
  font-family: "Almarai", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin-top: 1.5vh;
  white-space: pre-line;
  line-height: 1.5;
}

.branch-row.img-left .branch-chapters{
  text-align: right;
}

.branch-row.img-left .branch-info{
  text-align: right;
}

.SfBranchImg{
  min-width: 30vw;
  max-width: 50vw;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
}

/* Hide branch images on small screens (e.g. mobile) */
@media (max-width: 800px) {
  .SfBranchImg {
    display: none;
  }

  .branch-row,
  .branch-row.img-left {
    grid-template-columns: 1fr;
  }
}