/* style/about-corporate-culture.css */

/* Custom CSS Variables */
:root {
  --primary-color: #1A2B4C; /* Deep blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-light-card: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
  --border-color: rgba(255, 255, 255, 0.15);
}

/* Base styles for the page content, ensuring contrast on dark body background */
.page-about-corporate-culture {
  color: var(--text-light); /* Light text on dark body background */
  background-color: var(--bg-dark); /* Ensure consistency with body background */
  padding-bottom: 60px; /* General padding for the bottom of the page */
}

/* Fixed navigation bar spacing - for desktop */
.page-about-corporate-culture__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  /* 🚨 Must add desktop padding-top, ensuring content is not obscured by fixed navbar */
  padding-top: 10px; /* Desktop: Adjust based on actual navbar height */
  background-color: var(--primary-color); /* A slightly different dark background for the hero section */
}

.page-about-corporate-culture__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 🚨 Video click link styles (must strictly adhere) */
.page-about-corporate-culture__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-corporate-culture__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-about-corporate-culture__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio - 🚨 PageSpeed optimization: fixed aspect ratio to avoid layout shifts (CLS) */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-about-corporate-culture__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event */
}

/* 🚨 Video click hint overlay styles (optional, enhances user experience) */
.page-about-corporate-culture__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-about-corporate-culture__video-link:hover .page-about-corporate-culture__video-overlay {
  opacity: 1;
}

.page-about-corporate-culture__video-click-hint {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50px;
  white-space: nowrap;
  border: 2px solid var(--secondary-color);
}

/* 🚨 Play Now button styles (must strictly adhere, located below video in center) */
.page-about-corporate-culture__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-about-corporate-culture__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Gold color */
  color: var(--primary-color); /* Deep blue text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.page-about-corporate-culture__play-now-button:hover {
  background: #e6c200; /* Darken gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}