/* style/partners.css */

/* General page styling */
.page-partners {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
  line-height: 1.6;
}

.page-partners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Fixed header padding */
.page-partners__hero-section {
  position: relative;
  padding-top: 10px; /* Adjusted for fixed header - Desktop */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #000080, #0a0a0a); /* Auxiliary color + dark background */
  color: #ffffff;
  text-align: center;
  overflow: hidden; /* For responsive image/video containers */
}

/* Hero Section */
.page-partners__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  box-sizing: border-box;
}

.page-partners__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold color for title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-partners__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-partners__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: normal; /* Allow text wrap for buttons */
  word-wrap: break-word; /* Allow text wrap for buttons */
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box; /* Ensure button responsiveness */
}

.page-partners__cta-button--primary {
  background-color: #FFD700; /* Primary brand color */
  color: #000080; /* Dark blue text for contrast */
  border: 2px solid #FFD700;
}

.page-partners__cta-button--primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-partners__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-partners__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.page-partners__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-partners__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Dark background section */
.page-partners__dark-bg {
  background-color: #0a0a0a;
  color: #f0f0f0;
}

/* Why Partner Section */
.page-partners__why-partner-section {
  padding: 80px 0;
}

.page-partners__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-partners__feature-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08); /* Slightly visible on dark background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-partners__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-partners__feature-icon {
  width: 200px; /* Minimum 200px */
  height: auto;
  margin-bottom: 20px;
  max-width: 100%; /* Responsive image */
  display: block; /* Ensure block display for proper spacing */
  margin-left: auto;
  margin-right: auto;
}

.page-partners__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-partners__feature-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* Partnership Models Section */
.page-partners__models-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-partners__models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}