/* Philosophie Page Specific Styles */

body {
  background: linear-gradient(to bottom, #f0f0f0, #fafafa);
  color: #2c3e50;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 50%, #5d4037 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(230, 200, 48, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(230, 200, 48, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  animation: slideDown 0.8s ease-out;
}

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

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #e6c830 0%, #d4a017 100%);
  color: #fff;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(230, 200, 48, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(230, 200, 48, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(230, 200, 48, 0.5);
  }
}

.hero h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.subtitle {
  color: #e6c830;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Introduction Section */
.intro-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 2;
}

.intro-content h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 1rem;
}

.intro-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e6c830, #d4a017);
  border-radius: 2px;
}

.intro-content p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: justify;
}

/* Section Container */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e6c830, #d4a017);
  border-radius: 2px;
}

/* Mission Section */
.mission-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  position: relative;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(230, 200, 48, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.mission-content {
  line-height: 2;
  position: relative;
  z-index: 1;
}

.mission-content p {
  color: #555;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  text-align: justify;
  line-height: 1.9;
}

/* Vision Section */
.vision-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  position: relative;
}

.vision-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.vision-point {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  border-left: 4px solid #e6c830;
  position: relative;
  overflow: hidden;
}

.vision-point::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(230, 200, 48, 0.1), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vision-point:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(230, 200, 48, 0.15);
  border-color: #e6c830;
}

.vision-point:hover::before {
  opacity: 1;
}

.vision-point h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.vision-point p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* Values Section */
.values-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  position: relative;
}

.values-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 200, 48, 0.08), transparent);
  border-radius: 50%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.value-card {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 200, 48, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 200, 48, 0.2), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover::before,
.value-card:hover::after {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 48px rgba(230, 200, 48, 0.2);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #e6c830;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

/* Objectives Section */
.objectives-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  position: relative;
}

.objectives-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 200, 48, 0.08), transparent);
  border-radius: 50%;
}

.intro-text {
  font-size: 1.15rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 2.5rem;
  text-align: center;
}

.objectives-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.objective-item {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 4px solid #e6c830;
  border-left: 2px solid #e6c830;
  position: relative;
  overflow: hidden;
}

.objective-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(230, 200, 48, 0.08), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.objective-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(230, 200, 48, 0.15);
}

.objective-item:hover::before {
  opacity: 1;
}

.objective-number {
  display: inline-flex;
  background: linear-gradient(135deg, #e6c830, #d4a017);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(230, 200, 48, 0.3);
}

.objective-item h3 {
  color: #2c3e50;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.objective-item p {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-content h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #e6c830;
  letter-spacing: 1px;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #e6c830;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .section-title::after {
    width: 60px;
  }

  .intro-section,
  .mission-section,
  .vision-section,
  .values-section,
  .objectives-section {
    padding: 2.5rem 1.5rem;
  }

  .intro-content h2 {
    font-size: 1.6rem;
  }

  .intro-content h2::after {
    width: 50px;
  }

  .intro-content p,
  .mission-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .vision-point {
    padding: 2rem;
    border-left-width: 3px;
  }

  .vision-point h3,
  .objective-item h3 {
    font-size: 1.1rem;
  }

  .vision-point p,
  .objective-item p {
    font-size: 0.9rem;
  }

  .value-card {
    padding: 2rem;
  }

  .value-card h3 {
    font-size: 1.1rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }

  .objective-item {
    padding: 2rem;
  }

  .objective-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    text-transform: none;
  }

  .section-title {
    font-size: 1.4rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .section-title::after {
    width: 50px;
    height: 3px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
    letter-spacing: 0.5px;
  }

  .intro-content h2 {
    font-size: 1.3rem;
  }

  .intro-content h2::after {
    width: 40px;
  }

  .intro-section,
  .mission-section,
  .vision-section,
  .values-section,
  .objectives-section {
    padding: 1.8rem 1rem;
  }

  .section-container {
    padding: 0 1rem;
  }

  .vision-content,
  .values-grid,
  .objectives-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card,
  .vision-point,
  .objective-item {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .value-card h3 {
    font-size: 1rem;
  }

  .value-card p {
    font-size: 0.85rem;
  }

  .objective-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  main {
    overflow-x: hidden;
  }
}
