/* Renk ve Genel Ayar Değişkenleri */
:root {
    --primary-color: #28a745;      /* Canlı yeşil */
    --secondary-color: #1e7e34;    /* Koyu yeşil */
    --text-color: #333;
    --background-light: #f4f7fb;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition-speed: 0.4s;
  }

  body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-light);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
  }

  /* HERO SECTION */
  .hero-section {
    position: relative;
    height: 600px;
    margin-top: 0;
    padding: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    z-index: 10;
    overflow: hidden;

    /* Kavisli alt kenar için maske */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path fill="black" d="M0,0 L0,70 Q500,100 1000,70 L1000,0 Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path fill="black" d="M0,0 L0,70 Q500,100 1000,70 L1000,0 Z"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
    mask-position: bottom;
  }

  @keyframes zoomInBg {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
  }

  .hero-overlay {
    background: #28a745;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-overlay h1 {
    color: var(--white);
    font-size: 4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s forwards;
  }

  .hero-overlay p {
    color: var(--white);
    font-size: 1.8rem;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
  }

  /* INFO SECTION */
  .info-section {
    padding: 80px 20px;
  }

  .info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
  }

  .info-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Resim artık açıklamanın üstü ile hizalı olacak */
  .info-image {
    display: flex;
    align-items: flex-start; /* Üst hizalama */
    justify-content: center;
  }

  .info-image img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: transform var(--transition-speed) ease;
  }

  .info-image img:hover {
    transform: scale(1.03);
  }

  .info-text h2 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .info-text p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
  }

  /* MISSION & VISION SECTION */
  .mission-vision-section {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 80px 20px;
    background: var(--background-light);
    flex-wrap: wrap;
  }

  .mv-card {
    background: var(--white);
    flex: 0 1 45%;
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
  }

  .mv-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mv-card:hover {
    transform: translateY(-5px);
  }

  .mv-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }

  .mv-card h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .mv-card p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
  }

  /* Animations */
  @keyframes fadeInDown {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .info-card {
      grid-template-columns: 1fr;
    }
    .mission-vision-section {
      flex-direction: column;
      align-items: center;
    }
    .mv-card {
      flex: 1 1 90%;
    }
    .hero-section {
      height: 320px;
    }
    .hero-overlay h1 {
      font-size: 3rem;
    }
    .hero-overlay p {
      font-size: 1.5rem;
    }
  }
