/* ======================================== */
/*  Styles for "Who Are We" Page
/* ======================================== */

/* 
  このページ専用のスタイル。
  既存の `osprey.css` のスタイルを一部上書きしたり、
  新しいセクション用のスタイルを追加したりします。
*/

/* ABOUT PAGE SPECIFIC OVERRIDES */
/* コンテンツ幅を少し狭めて中央に寄せる */
.container {
  max-width: 1200px; 
}


/* Page Hero */
.about-hero {
  /* background-image はHTML側のstyle属性に移動しました */
  height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.about-hero-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px 50px;
}

.breadcrumbs {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #ddd;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.about-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

/* Two Column Content Section */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.roots-image-layout {
  position: relative; /* 子要素を絶対配置するための基準 */
}
.roots-img-background {
  width: 100%;
  display: block;
}
.roots-img-foreground {
  position: absolute;
  width: 100%; /* 背景画像に対する幅 */
  bottom: -40px; /* 下にはみ出す量 */
  right: -65%; /* 右にはみ出す量 */
  z-index: 2;
}

/* OUR ROOTS セクションのテキストスタイル */
.about-col-text {
    position: absolute;
    top: 0;
    right: 0;
    width: 550px;
}

.about-col-text .roots-title {
  font-size: 2.5rem; /* 見出しを大きく */
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #000;
}
.about-col-text p {
  color: var(--color-dark-gray); /* テキストを少し濃く */
  margin-bottom: 1.5em;
  line-height: 1.7;
}
/* ▲▲▲ ここまでが修正・追加箇所 ▲▲▲ */


/* 既存の他のセクションのスタイル (変更なし) */
.about-col-text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.about-col-text .values-list {
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1px;
}

.about-col-img-stack {
  position: relative;
}
.about-col-img-stack .img-top {
  position: relative;
  z-index: 1;
}
.about-col-img-stack .img-bottom {
  position: absolute;
  width: 70%;
  bottom: -15%;
  right: -10%;
  z-index: 2;
  border: 10px solid var(--color-background);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-col-text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.about-col-text p {
  color: var(--color-medium-gray);
  margin-bottom: 1.5em;
}
.about-col-text .values-list {
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1px;
}

/* Dark Video Section */
.video-section-dark .container {
  background-color: #000;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}
.video-section-dark a {
  display: inline-block;
  position: relative;
}
.video-section-dark img {
    width: 250px;
    filter: brightness(0) invert(1);
}
.video-section-dark .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}
.video-section-dark a:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Full Width Banner */
.full-width-banner {
  position: relative;
  text-align: center;
  color: #fff;
}
.full-width-banner .play-icon-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  text-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.full-width-banner:hover .play-icon-lg {
  color: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}
.full-width-banner .banner-caption {
  position: absolute;
  bottom: 30px;
  right: 40px;
  text-align: right;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}
.full-width-banner .banner-caption p {
  margin: 0;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.full-width-banner .banner-caption span {
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Two Card Section */
.two-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.info-card {
  text-align: center;
}
.info-card img {
  width: 100%;
  margin-bottom: 25px;
}
.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.info-card a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-medium-gray);
  text-decoration: none;
  letter-spacing: 1px;
}
.info-card a:hover {
  color: var(--color-text);
}

/* Mission Banner */
.mission-banner {
  /* background-image はHTML側のstyle属性に移動しました */
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.mission-banner-content {
  background-color: rgba(37, 37, 37, 0.8);
  color: #fff;
  padding: 30px 40px;
  max-width: 700px;
}
.mission-banner-content h3 {
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.mission-banner-content p {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}


/* ========== レスポンシブ対応 (About Page) ========== */

/* スマートフォンサイズ (768px以下) */
@media (max-width: 768px) {
  .main-header {
      background-color: var(--color-dark);
      color: #fff;
      padding: 0 0 10px 0;
  }
  
  .header-logo img {
    width: 55px;
    height: auto;
    filter: brightness(0) invert(1);
  }
  .about-hero { height: 300px; }
  .about-hero h1 { font-size: 2.5rem; }
  .about-hero-content { padding: 20px 30px; }

  .about-content-grid { 
    gap: 80px; /* スマホでは画像とテキストの間隔を広めに */
  }
  .roots-image-layout {
    padding-bottom: 40px; /* 重なる画像のため、下に余白を確保 */
  }
  .roots-img-foreground {
    width: 90%;
    right: 5%; /* 中央に寄せる */
    bottom: 0; /* 下の余白に配置 */
  }
  .about-col-text .roots-title {
    font-size: 2rem;
  }


  .about-content-grid { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  /* .reverse クラスを持つグリッドの順序を逆にする */
  .about-content-grid.reverse .about-col-img { 
    order: 1; 
  }
  .about-content-grid.reverse .about-col-text { 
    order: 2; 
  }

  .roots-img-background {
      width: 70%;
      display: block;
  }

  .about-col-text {
    position: inherit;
    top: none;
    width: 100%;
    right: none;
  }
  
  .about-col-img-stack .img-bottom { 
    position: static; 
    width: 100%; 
    margin-top: 20px; 
    border: none; 
    box-shadow: none;
  }

  .two-card-grid { 
    grid-template-columns: 1fr; 
  }

  .mission-banner { height: auto; padding: 60px 20px; }
  .mission-banner-content p { font-size: 1.2rem; }
  .full-width-banner .banner-caption { bottom: 15px; right: 15px; }
  .full-width-banner .banner-caption p { font-size: 0.9rem; }
  .full-width-banner .banner-caption span { font-size: 0.7rem; }
}
