/* Index Page Styles */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 2rem;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 58, 138, 0.8), rgba(30, 64, 175, 0.7), rgba(37, 99, 235, 0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 5rem 1rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 5rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 2rem;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hero-left {
    gap: 1.5rem;
    align-items: center;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hero-text {
    gap: 0.75rem;
    align-items: center;
  }
}

.hero-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 768px) {
  .hero-title-container {
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
}

.hero-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  animation: heroLogoFloat 3s ease-in-out infinite;
}

.hero-logo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

@keyframes heroLogoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .hero-logo {
    height: 50px;
    border-radius: 12px;
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    height: 100px;
    border-radius: 20px;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
    padding: 0 0.5rem;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(229, 231, 235, 1);
  font-style: italic;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 0.875rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(229, 231, 235, 1);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-description {
    font-size: 0.875rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    width: auto;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    width: 100%;
    padding: 0 0.5rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-white {
  background: white;
  color: var(--primary-600);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary-600);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 1rem;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .stat-card {
    padding: 0.875rem;
  }
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 1.5rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(229, 231, 235, 1);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stat-label {
    font-size: 0.8125rem;
  }
}

/* Business School Card */
.hero-right {
  position: relative;
}

.business-school-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .business-school-card {
    padding: 1.25rem;
    margin-top: 1.5rem;
  }
}

.business-school-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.business-school-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
}

.business-school-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .business-school-title {
    font-size: 1.25rem;
  }
}

.business-school-description {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .business-school-description {
    font-size: 0.9375rem;
  }
}

/* What We Do Section */
.what-we-do-section {
  padding: 5rem 0;
  background: white;
  width: 100%;
}

.what-we-do-section .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .what-we-do-section .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .what-we-do-section .container {
    padding: 0 2rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.what-we-do-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.what-we-do-card:hover {
  transform: translateY(-0.5rem);
}

.products-card {
  background: #fef3c7;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
}

.services-card {
  background: #dbeafe;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
}

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  border: 2px solid white;
  transition: transform 0.3s ease;
}

.what-we-do-card:hover .card-icon {
  transform: scale(1.1);
}

.products-icon {
  background: #fef3c7;
  color: #d97706;
}

.services-icon {
  background: #dbeafe;
  color: #2563eb;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: color 0.3s ease;
}

.what-we-do-card:hover .card-title {
  color: var(--primary-600);
}

.card-description {
  color: var(--gray-600);
  line-height: 1.6;
}

.card-link {
  display: flex;
  align-items: center;
  color: var(--primary-600);
  font-weight: 600;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.what-we-do-card:hover .card-link {
  color: var(--primary-700);
}

.what-we-do-card:hover .card-link i {
  transform: translateX(0.25rem);
}

/* Cross Cutting Issues Section */
.cross-cutting-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-50), white);
  width: 100%;
}

.cross-cutting-section .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .cross-cutting-section .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .cross-cutting-section .container {
    padding: 0 2rem;
  }
}

.issues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .issues-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.issue-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.issue-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.issue-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.issue-card:hover .issue-icon {
  transform: scale(1.1);
}

.climate-icon {
  background: #dbeafe;
  color: #2563eb;
}

.inclusivity-icon {
  background: #f3e8ff;
  color: #9333ea;
}

.nutrition-icon {
  background: #d1fae5;
  color: #059669;
}

.issue-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.issue-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: color 0.3s ease;
}

.issue-card:hover .issue-title {
  color: var(--primary-600);
}

.issue-description {
  color: var(--gray-600);
  line-height: 1.6;
}

.issue-detail {
  background: var(--gray-50);
  border-radius: 0.5rem;
  padding: 1rem;
}

.issue-detail p {
  font-size: 0.875rem;
  color: var(--gray-700);
  font-style: italic;
  margin: 0;
}

.cross-cutting-stats {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cross-cutting-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-600);
}

.stat-text {
  color: var(--gray-600);
}

/* Targets Section */
.targets-section {
  padding: 5rem 0;
  background: white;
  width: 100%;
}

.targets-section .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .targets-section .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .targets-section .container {
    padding: 0 2rem;
  }
}

.targets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .targets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .targets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.target-card {
  background: linear-gradient(135deg, var(--primary-50), white);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary-100);
  transition: all 0.3s ease;
}

.target-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.target-number-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.target-number {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-600), var(--primary-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 1024px) {
  .target-number {
    font-size: 3rem;
  }
}

.target-suffix {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-600), var(--primary-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 1024px) {
  .target-suffix {
    font-size: 3rem;
  }
}

.target-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.target-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.3s ease;
}

.target-card:hover .target-label {
  color: var(--primary-600);
}

.target-description {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.target-progress {
  margin-top: 1.5rem;
  width: 100%;
  background: var(--gray-200);
  border-radius: 9999px;
  height: 0.5rem;
  overflow: hidden;
}

.target-progress-bar {
  background: linear-gradient(to right, var(--primary-500), var(--primary-600));
  height: 100%;
  border-radius: 9999px;
  transition: width 1s ease-out;
}

.targets-cta {
  text-align: center;
  margin-top: 4rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-600);
  color: white;
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: var(--primary-700);
}

/* Resources Section */
.resources-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-50), white);
  width: 100%;
}

.resources-section .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .resources-section .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .resources-section .container {
    padding: 0 2rem;
  }
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.resource-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.resource-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.resource-header {
  padding: 1.5rem;
  color: white;
}

.blog-header {
  background: linear-gradient(to right, #10b981, #059669);
}

.event-header {
  background: linear-gradient(to right, #f59e0b, #d97706);
}

.resource-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.resource-type {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.resource-emoji {
  font-size: 1.5rem;
}

.resource-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.resource-author {
  margin-left: auto;
  opacity: 0.75;
}

.resource-content {
  padding: 1.5rem;
}

.resource-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.resource-card:hover .resource-title {
  color: var(--primary-600);
}

.resource-excerpt {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.resource-link {
  display: flex;
  align-items: center;
  color: var(--primary-600);
  font-weight: 600;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.resource-card:hover .resource-link {
  color: var(--primary-700);
}

.resource-card:hover .resource-link i {
  transform: translateX(0.25rem);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
}

