/* Vision Page Styles - Developed according to the design drawings, with the content centered. */

.vision-page {
  width: 100% !important;
  margin: 0 auto !important;
  background-color: rgba(234, 235, 235, 1) !important;
}

.vision-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 5;
}

/* Hero Section */
.vision-hero-section {
  text-align: center;
  position: relative;
}

.vision-hero-title {
  font-size: 44px;
  font-weight: 500;
  margin: 0 0 24px 0;
  line-height: 1.5;
  padding-top: 200px;
}

.vision-hero-subtitle {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 98px 0;
  line-height: 1.4;
}

.vision-hero-content {
  text-align: center;
  font-size: 16px;
}

/* Section Styles */
.vision-section {
  padding: 100px 0;
  width: 100%;
}

.vision-section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.vision-section-title {
  font-size: 20px;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.vision-section-subtitle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}

/* SCENES Section */
.vision-scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin: 60px 0 0;
  background: rgba(179, 179, 179, 0.2);
  padding: 40px;
}

.vision-scene-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(248, 248, 248, 1);
  text-align: center;
}

.vision-scene-card img {
  width: 100%;
  height: 165px !important;
  object-fit: cover;
}

.vision-scene-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.12);
}

.vision-scene-title {
  font-size: 24px;
  font-weight: 500;
  margin: 20px 0 16px 0;
}

.vision-scene-subtitle {
  font-size: 16px;
  margin: 0 0 16px 0;
}

.vision-scene-description {
  font-size: 16px;
  color: rgba(102, 102, 102, 1);
  line-height: 1.8;
  padding: 0 20px 25px;
}

/* BELIEFS Section */
.vision-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 60px 0;
}

.vision-belief-card {
  width: 440px;
}

.card-1 {
  margin-left: 150px;
}

.vision-belief-title {
  font-size: 22px;
  padding: 0 0 16px 0;
  border-bottom: 1px solid rgba(90, 90, 90, 1);
}

.vision-belief-description {
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0 0;
}

/* PRINCIPLES Section */
.principle-container {
  padding: 80px 0 !important;
  background: linear-gradient(353deg, rgba(179, 179, 179, 0.2) 0%, #9b9a9a 100%);
  border-radius: 64px 0px 0px 0px;
}

.vision-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 60px 40px;
}

.vision-principle-card {
  background-color: rgba(244, 246, 247, 0.36);
  padding: 32px 42px 40px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vision-principle-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(51, 51, 51, 1);
  margin: 0 0 16px 0;
}

.vision-principle-description {
  font-size: 16px;
  color: rgba(102, 102, 102, 1);
  line-height: 1.8;
  margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .vision-hero-title {
    font-size: 28px;
    padding-top: 120px;
  }

  .vision-hero-subtitle {
    font-size: 22px;
    margin-bottom: 60px;
  }

  .vision-section {
    padding: 60px 0;
  }

  .vision-section-subtitle {
    font-size: 24px;
  }

  /* Scenes Grid */
  .vision-scenes-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 15px;
  }

  /* Beliefs Grid */
  .vision-beliefs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
  }

  .vision-belief-card {
    width: 100%;
  }

  .card-1 {
    margin-left: 0;
  }

  /* Principles */
  .principle-container {
    padding: 60px 0 !important;
    border-radius: 32px 0 0 0;
  }

  .vision-principles-grid {
    grid-template-columns: 1fr;
    margin: 40px 20px;
  }

  .vision-principle-card {
    padding: 25px 20px;
  }
}

@media screen and (max-width: 480px) {
  .vision-hero-title {
    font-size: 24px;
  }

  .vision-section-title {
    font-size: 18px;
  }
}