/* Admin Layout */
.admin-body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.admin-nav {
  background-color: #1a1a1a;
  color: white;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.admin-nav-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.admin-nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.admin-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.admin-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* Notices and Alerts */
.admin-notice,
.admin-alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.admin-notice {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.admin-alert {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Page Header */
.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-page-header h1 {
  margin: 0;
  font-size: 2rem;
  color: #333;
}

.admin-page-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Buttons */
.admin-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #6c757d;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s;
}

.admin-button:hover {
  background-color: #5a6268;
}

.admin-button-primary {
  background-color: #007bff;
}

.admin-button-primary:hover {
  background-color: #0056b3;
}

/* Tables */
.admin-table {
  width: 100%;
  background-color: white;
  border-collapse: collapse;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.admin-table thead {
  background-color: #343a40;
  color: white;
}

.admin-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.admin-table td {
  padding: 1rem;
  border-top: 1px solid #dee2e6;
}

.admin-table tbody tr:hover {
  background-color: #f8f9fa;
}

.admin-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Links */
.admin-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.admin-link:hover {
  text-decoration: underline;
}

.admin-link-danger {
  color: #dc3545;
}

.admin-link-danger:hover {
  color: #c82333;
}

/* Forms */
.admin-form {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 800px;
}

.admin-form-field {
  margin-bottom: 1.5rem;
}

.admin-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.admin-form-input,
.admin-form-textarea,
.admin-form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

.admin-form-input:focus,
.admin-form-textarea:focus,
.admin-form-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

.admin-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.admin-form-file-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  background-color: white;
  cursor: pointer;
}

.admin-form-file-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

.admin-image-preview {
  margin-top: 0.5rem;
}

.admin-preview-image {
  max-width: 200px;
  max-height: 200px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 0.5rem;
}

.admin-image-section {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #f8f9fa;
}

.admin-image-section-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  color: #333;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dee2e6;
}

.admin-form-help {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.admin-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}

/* Errors */
.admin-errors {
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.admin-errors h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.admin-errors ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

/* Show Pages */
.admin-show {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.admin-show-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dee2e6;
}

.admin-show-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.admin-show-section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
}

.admin-show-section p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.admin-show-section strong {
  color: #333;
  margin-right: 0.5rem;
}

.admin-show-image {
  max-width: 300px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-bio {
  line-height: 1.8;
  color: #555;
}

.admin-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.admin-no-image {
  color: #6c757d;
  font-style: italic;
}

/* Dashboard */
.admin-dashboard {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.admin-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.admin-stat-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #dee2e6;
}

.admin-stat-card h2 {
  margin: 0 0 0.5rem 0;
  font-size: 3rem;
  color: #007bff;
}

.admin-stat-card p {
  margin: 0 0 1rem 0;
  color: #6c757d;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .admin-nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .admin-nav-links {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }

  .admin-nav-link {
    width: 100%;
    text-align: center;
  }

  .admin-content {
    padding: 1rem;
  }

  .admin-page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-table {
    font-size: 0.875rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.75rem 0.5rem;
  }

  .admin-form {
    padding: 1.5rem;
  }

  .admin-dashboard-stats {
    grid-template-columns: 1fr;
  }
}

/* Image Selector Grid */
.admin-image-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.admin-image-selector-item {
  cursor: pointer;
  border: 2px solid #dee2e6;
  border-radius: 4px;
  padding: 0.5rem;
  background-color: white;
  transition: all 0.2s;
  text-align: center;
}

.admin-image-selector-item:hover {
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0,123,255,0.2);
  transform: translateY(-2px);
}

.admin-image-selector-item.selected {
  border-color: #007bff;
  background-color: #e7f3ff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

.admin-image-selector-thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.admin-image-selector-name {
  font-size: 0.75rem;
  color: #333;
  word-break: break-word;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .admin-image-selector-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
  }
  
  .admin-image-selector-thumbnail {
    height: 80px;
  }
}

/* Reorder Page */
.admin-reorder-instructions {
  background-color: #e7f3ff;
  border: 1px solid #b3d9ff;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 2rem;
  color: #004085;
}

.admin-reorder-status {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.admin-reorder-status-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.admin-reorder-status-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.admin-reorder-status-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.admin-reorder-team-section {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.admin-reorder-team-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.5rem 0;
}

.admin-reorder-team-description {
  color: #6c757d;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.admin-reorder-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.admin-reorder-member-card {
  background-color: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  cursor: move;
  transition: all 0.2s;
}

.admin-reorder-member-card:hover {
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0,123,255,0.2);
}

.admin-reorder-member-card.admin-reorder-ghost {
  opacity: 0.4;
  background-color: #e9ecef;
}

.admin-reorder-member-card.admin-reorder-chosen {
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.admin-reorder-member-card.admin-reorder-drag {
  opacity: 0.8;
  transform: rotate(2deg);
}

.admin-reorder-member-image-container {
  width: 100%;
  height: 200px;
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  background-color: #e9ecef;
}

.admin-reorder-member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.admin-reorder-member-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6c757d;
  color: white;
}

.admin-reorder-placeholder-initials {
  font-size: 2rem;
  font-weight: 600;
}

.admin-reorder-member-info {
  text-align: center;
}

.admin-reorder-member-name {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.25rem 0;
}

.admin-reorder-member-title {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}

.admin-reorder-no-teams {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  color: #6c757d;
}

@media (max-width: 768px) {
  .admin-reorder-members-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
}

/* Login Page Styles */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  flex-direction: column;
  position: relative;
}

.login-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-top: 80px; /* Account for header */
}

.login-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 700;
}

.login-header p {
  margin: 0;
  color: #6c757d;
  font-size: 1rem;
}

.login-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  box-sizing: border-box;
  background-color: #fff;
}

.form-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-input::placeholder {
  color: #adb5bd;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  cursor: pointer;
  accent-color: #007bff;
}

.form-checkbox-label {
  margin: 0;
  font-weight: 400;
  color: #555;
  cursor: pointer;
  user-select: none;
}

.form-actions {
  margin-top: 2rem;
}

.login-button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.login-button:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
  transform: translateY(-1px);
}

.login-button:active {
  transform: translateY(0);
}

.login-links {
  margin-top: 1.5rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.login-link {
  color: #007bff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.login-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Error Messages */
#error_explanation {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

#error_explanation h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: #721c24;
  font-weight: 600;
}

#error_explanation ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

#error_explanation li {
  color: #721c24;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Flash Messages */
.login-box .notice,
.login-box .alert {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.login-box .notice {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.login-box .alert {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
  .login-container {
    padding: 1rem;
    margin-top: 60px;
  }

  .login-box {
    padding: 2rem 1.5rem;
  }

  .login-header h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .login-box {
    padding: 1.5rem 1rem;
  }

  .login-header h1 {
    font-size: 1.5rem;
  }
}


/* Focus & Approach Page Styles */

.focus-approach-page {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  position: relative;
}

/* Hero Image Section - Banner Style */
.hero-image-section {
  width: 100%;
  position: relative;
  margin-top: 0; /* Header will be positioned absolutely */
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 300px; /* Fixed banner height */
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  /* Ensure crisp rendering */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  /* Force hardware acceleration for better rendering */
  transform: translateZ(0);
  will-change: transform;
  /* Prevent blur from subpixel rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Text Overlay */
.hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* Account for header */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
}

.hero-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  padding: 0 2rem;
  line-height: 1.2;
}

/* Content Section */
.focus-content {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ParentCo and Image Section - Two Column Layout */
.parentco-image-section {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.parentco-section {
  flex: 1;
  text-align: left;
  color: #ffffff;
}

.parentco-section .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.parentco-image {
  flex: 1;
  max-width: 50%;
}

.parentco-image .focus-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Approach Section - Now below the image */
.approach-section {
  margin-top: 40px;
}

.approach-text {
  flex: 1;
  color: #ffffff;
}

.approach-image {
  flex: 1;
  max-width: 50%;
}

.focus-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.subsection-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
}

.subheading {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.approach-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
}

.investment-themes,
.focus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.investment-themes li,
.focus-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #ffffff;
}

.investment-themes li::before,
.focus-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.4;
}

.indent-text {
  display: block;
  margin-top: 0.25rem;
  padding-left: 1rem;
  font-size: 0.95rem;
  color: #cccccc;
  font-style: italic;
}

/* Themes and Focus Section - Centered */
.themes-focus-section {
  max-width: 1000px;
  margin: 60px auto 0;
  text-align: center;
  color: #ffffff;
}

.themes-focus-section .subheading {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.themes-focus-section .subheading:first-child {
  margin-top: 0;
}

.themes-focus-section .approach-paragraph {
  text-align: center;
  margin-bottom: 1.5rem;
}

.themes-focus-section .investment-themes,
.themes-focus-section .focus-list {
  text-align: left;
  display: inline-block;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

/* Additional Sections */
.additional-sections {
  max-width: 1000px;
  margin: 60px auto 0;
  text-align: center;
  color: #ffffff;
}

.content-block {
  margin-bottom: 3rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block .subheading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.content-block .approach-paragraph {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-image-container {
    height: 280px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .hero-image-container {
    height: 250px;
  }
  
  .hero-title {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }
  
  .hero-text-overlay {
    padding-top: 70px;
  }
  
  .approach-section {
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .subsection-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero-image-container {
    height: 220px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
    padding: 0 1.5rem;
  }
  
  .hero-text-overlay {
    padding-top: 60px;
  }
  
  .focus-content {
    padding: 60px 20px;
  }
  
  .parentco-image-section {
    flex-direction: column;
    gap: 40px;
  }
  
  .parentco-image {
    max-width: 100%;
  }
  
  .approach-section {
    margin-top: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .subsection-title {
    font-size: 1.75rem;
  }
  
  .subheading {
    font-size: 1.25rem;
  }
  
  .approach-paragraph {
    font-size: 1rem;
  }
  
  .investment-themes li,
  .focus-list li {
    font-size: 1rem;
  }
  
  .themes-focus-section {
    margin-top: 40px;
    padding: 0 20px;
  }
  
  .themes-focus-section .investment-themes,
  .themes-focus-section .focus-list {
    max-width: 100%;
  }
  
  .additional-sections {
    margin-top: 40px;
    padding: 0 20px;
  }
  
  .content-block {
    margin-bottom: 2rem;
  }
  
  .content-block .approach-paragraph {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    height: 180px;
  }
  
  .hero-title {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    padding: 0 1rem;
  }
  
  .hero-text-overlay {
    padding-top: 50px;
  }
  
  .focus-content {
    padding: 40px 15px;
  }
}

/* Footer Styles */
.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-text {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

.footer-copyright {
  margin: 0;
  font-size: 0.85rem;
  color: #999999;
}

/* For home page with video - footer appears below video container */
.video-container + .site-footer {
  position: relative;
  margin-top: 0;
  clear: both;
}

/* Ensure video container on home page doesn't get affected by footer */
body:has(.video-container) {
  overflow-x: hidden;
}

body:has(.video-container) .video-container {
  position: relative;
  z-index: 0;
}

/* For regular content pages - ensure footer is at bottom */
.team-page {
  min-height: calc(100vh - 200px); /* Adjust based on footer height */
  padding-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 1.5rem 0;
  }

  .footer-content {
    padding: 0 1rem;
  }

  .footer-text {
    font-size: 0.85rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}

/* Home page styles with video background */

body {
  margin: 0;
  padding: 0;
  background-color: #000;
}

/* Only hide overflow on home page with video */
.video-container {
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  background-color: #000;
  overflow: hidden;
  display: block;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
}

/* Responsive video scaling for smaller screens */
@media (max-width: 768px) {
  .background-video {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .background-video {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

/* For very wide screens, ensure video covers */
@media (min-width: 1920px) {
  .background-video {
    object-fit: cover;
  }
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Header container for logo and navigation */
.header-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  pointer-events: auto;
  z-index: 3;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Logo - positioned absolutely on the left */
.logo-container {
  position: absolute;
  left: 40px;
  flex-shrink: 0;
  pointer-events: auto;
  padding: 10px 15px;
}

.logo {
  max-height: 60px;
  width: auto;
  height: auto;
}

.logo-placeholder {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  padding: 10px 20px;
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Hamburger menu button (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  pointer-events: auto;
}

.mobile-menu-toggle:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.hamburger-line {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation centered */
.top-navigation {
  display: flex;
  justify-content: center;
  pointer-events: auto;
  padding: 10px 20px;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 1);
}

.nav-link-active {
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.15);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 1);
}


/* Responsive adjustments */
@media (max-width: 1200px) {
  .header-container {
    padding: 20px 30px;
  }
  
  .nav-menu {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .header-container {
    padding: 15px 25px;
  }
  
  .nav-menu {
    gap: 12px;
  }
  
  .nav-link {
    font-size: 11px;
    padding: 4px 8px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .logo {
    max-height: 40px;
  }
  
  .logo-container {
    padding: 8px 12px;
    position: static;
    left: auto;
  }
  
  /* Show hamburger menu */
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  
  /* Hide navigation by default on mobile */
  .top-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    margin: 0;
    padding: 80px 30px 30px;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
    transition: right 0.3s ease;
    z-index: 9;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  }
  
  /* Show navigation when menu is open */
  .top-navigation.mobile-menu-open {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-link {
    display: block;
    width: 100%;
    padding: 15px 10px;
    font-size: 14px;
    text-align: left;
    border-radius: 0;
  }
  
  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  /* Overlay when menu is open */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 12px 15px;
  }
  
  .logo {
    max-height: 35px;
  }
  
  .top-navigation {
    width: 85%;
    max-width: 280px;
  }
  
  .nav-link {
    font-size: 13px;
    padding: 12px 8px;
  }
}

/* LP Portal Page Styles */

.lp-portal-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp-portal-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-top: 80px; /* Account for header */
}

.lp-portal-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-portal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.lp-portal-header h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 700;
}

.lp-portal-header p {
  margin: 0;
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

.lp-portal-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  box-sizing: border-box;
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.form-input:disabled {
  opacity: 0.6;
}

.form-input::placeholder {
  color: #adb5bd;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  cursor: not-allowed;
  accent-color: #007bff;
  opacity: 0.6;
}

.form-checkbox-label {
  margin: 0;
  font-weight: 400;
  color: #999;
  cursor: not-allowed;
  user-select: none;
}

.form-actions {
  margin-top: 2rem;
}

.lp-portal-button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.6;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

.lp-portal-button:disabled {
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
  .lp-portal-container {
    padding: 1rem;
    margin-top: 60px;
  }

  .lp-portal-box {
    padding: 2rem 1.5rem;
  }

  .lp-portal-header h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .lp-portal-box {
    padding: 1.5rem 1rem;
  }

  .lp-portal-header h1 {
    font-size: 1.5rem;
  }
}


/* Opportunities Page Styles */

.opportunities-page {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  position: relative;
}

.opportunities-content {
  padding: 120px 40px 80px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.opportunities-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 60px 0;
  color: #ffffff;
}

.opportunities-text {
  max-width: 800px;
  margin: 0 auto;
}

.opportunities-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 2rem 0;
  color: #ffffff;
  text-align: center;
}

.opportunities-paragraph:last-child {
  margin-bottom: 0;
}

.opportunities-link {
  color: #007bff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.opportunities-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Accredited Investor Modal */
.accredited-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.accredited-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.opportunities-page.blurred {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

.modal-content-box {
  position: relative;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  z-index: 10001;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  margin: 0 0 2rem 0;
  text-align: center;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-button {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 150px;
}

.modal-button-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.modal-button-primary:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
  transform: translateY(-1px);
}

.modal-button-secondary {
  background-color: #6c757d;
  color: white;
}

.modal-button-secondary:hover {
  background-color: #5a6268;
  transform: translateY(-1px);
}

.modal-button:active {
  transform: translateY(0);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content-box {
    padding: 2rem 1.5rem;
    width: 95%;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
  
  .modal-text {
    font-size: 1rem;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-button {
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .opportunities-title {
    font-size: 2rem;
  }
  
  .opportunities-paragraph {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .opportunities-content {
    padding: 100px 20px 60px;
  }
  
  .opportunities-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
  
  .opportunities-paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .opportunities-content {
    padding: 80px 15px 40px;
  }
  
  .opportunities-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }
  
  .opportunities-paragraph {
    font-size: 0.95rem;
  }
}

/* Strategic Advisory Page Styles */

.strategic-advisory-page {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  position: relative;
}

.strategic-content {
  padding: 120px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 60px 0;
  color: #ffffff;
}

.strategic-sections {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.strategic-section-left,
.strategic-section-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.strategic-image-container {
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
}

.strategic-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  /* Ensure crisp rendering */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  transform: translateZ(0);
  will-change: transform;
}

.strategic-text-content {
  text-align: center;
  color: #ffffff;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.strategic-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
  text-align: center;
}

.strategic-paragraph:last-child {
  margin-bottom: 0;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
  max-width: 600px;
}

.services-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #ffffff;
}

.services-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.4;
}

.services-list li:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .page-main-title {
    font-size: 2.25rem;
  }
  
  .strategic-sections {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .page-main-title {
    font-size: 2rem;
  }
  
  .strategic-sections {
    gap: 40px;
  }
  
  .strategic-image-container {
    height: 350px;
  }
  
  .section-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .strategic-content {
    padding: 100px 20px 60px;
  }
  
  .page-main-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
  
  .strategic-sections {
    flex-direction: column;
    gap: 50px;
  }
  
  .strategic-section-left,
  .strategic-section-right {
    width: 100%;
  }
  
  .strategic-image-container {
    height: 300px;
  }
  
  .section-heading {
    font-size: 1.35rem;
  }
  
  .strategic-paragraph {
    font-size: 1rem;
  }
  
  .services-list {
    max-width: 100%;
  }
  
  .services-list li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .strategic-content {
    padding: 80px 15px 40px;
  }
  
  .page-main-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }
  
  .section-heading {
    font-size: 1.25rem;
  }
  
  .strategic-paragraph {
    font-size: 0.95rem;
  }
  
  .services-list li {
    font-size: 0.95rem;
  }
}

/* Team page styles */

body {
  overflow: auto !important;
}

.team-page {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  position: relative;
  overflow: visible;
}

.team-content {
  padding: 120px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-section {
  margin-bottom: 80px;
}

.team-name {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.team-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member-card.clickable {
  cursor: pointer;
}

.team-member-card.clickable:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-member-card:not(.clickable) {
  cursor: default;
}

.member-image-container {
  width: 100%;
  padding-top: 100%; /* Square aspect ratio */
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.member-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.team-member-card:hover .member-image {
  transform: scale(1.1);
}

.member-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.placeholder-initials {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.member-title {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
}

.member-summary {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0077b5;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.linkedin-link:hover {
  color: #005885;
  transform: scale(1.1);
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.no-teams {
  text-align: center;
  font-size: 18px;
  color: #999;
  padding: 60px 20px;
}

/* Modal styles */
.member-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.member-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background-color: rgba(20, 20, 20, 0.95);
  border-radius: 16px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1002;
  line-height: 1;
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

#modal-body {
  padding: 40px;
}

.modal-member-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.modal-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.modal-image-placeholder .placeholder-initials {
  font-size: 72px;
}

.modal-member-info {
  text-align: center;
}

.modal-member-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.modal-member-title {
  font-size: 18px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.modal-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0077b5;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 30px;
  padding: 8px 16px;
  border: 1px solid #0077b5;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.modal-linkedin-link:hover {
  background-color: #0077b5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.modal-linkedin-link .linkedin-icon {
  width: 20px;
  height: 20px;
}

.modal-member-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: left;
}

.modal-member-bio p {
  margin-bottom: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .team-content {
    padding: 100px 20px 40px;
  }
  
  .page-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .team-name {
    font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .team-description {
    font-size: 16px;
    text-align: center;
  }
  
  .team-members-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .modal-content {
    width: 95%;
    max-height: 85vh;
  }
  
  #modal-body {
    padding: 30px 20px;
  }
  
  .modal-member-image {
    width: 150px;
    height: 150px;
  }
  
  .modal-member-name {
    font-size: 24px;
  }
  
  .modal-member-title {
    font-size: 16px;
  }
  
  .modal-member-bio {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .team-members-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .member-name {
    font-size: 18px;
  }
  
  .member-title {
    font-size: 12px;
  }
}

/* User Agreement Page Styles */

.user-agreement-page {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  position: relative;
}

.user-agreement-content {
  padding: 120px 40px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.agreement-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 40px 0;
  color: #ffffff;
}

.agreement-intro {
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-text {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.agreement-section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agreement-text {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
  text-align: justify;
}

.agreement-text:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .agreement-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .agreement-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .user-agreement-content {
    padding: 100px 20px 60px;
  }
  
  .agreement-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  .agreement-intro {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .agreement-section {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }
  
  .agreement-text {
    font-size: 0.95rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .user-agreement-content {
    padding: 80px 15px 40px;
  }
  
  .agreement-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .agreement-text {
    font-size: 0.9rem;
  }
}


/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
