/* ============================================================================
   HAKKIMIZDA - HTML YAPISINA UYGUN CSS
   ============================================================================ */

/* Ana Bölüm */
.about-section {
  background: #f8f9fa;
  position: relative;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

/* Row ve Col yapısı */
.about-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-section .col-lg-6 {
  flex: 1;
  min-width: 300px;
}

/* About Content - Sol Taraf */
.about-content {
  padding-right: 30px;
}

/* Section Title */
.section-title {
  margin-bottom: 30px;
}

.section-title .subtitle {
  background: #007bff;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0;
  line-height: 1.2;
}

.section-title h2 span {
  color: #007bff;
}

/* About Text */
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.about-text:first-of-type {
  font-weight: 500;
  color: #333;
}

/* About Features */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.about-features .feature-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.about-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.2);
}

.about-features .feature-item i {
  font-size: 20px;
  color: #007bff;
  width: 24px;
  text-align: center;
}

.about-features .feature-item span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Button */
.about-content .btn {
  background: #007bff;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content .btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.about-content .btn-primary {
  background: #007bff;
}

.about-content .mt-4 {
  margin-top: 1.5rem;
}

/* About Images - Sağ Taraf */
.about-images {
  position: relative;
  height: 500px;
}

/* Ana Resim */
.about-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 80%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-main:hover img {
  transform: scale(1.05);
}

/* Küçük Resim */
.about-image-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 3;
  border: 5px solid white;
}

.about-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-small:hover img {
  transform: scale(1.05);
}

/* Experience Badge */
.about-experience {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
  z-index: 4;
  min-width: 100px;
  animation: float 3s ease-in-out infinite;
}

.about-experience h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: white;
}

.about-experience p {
  font-size: 12px;
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  color: white;
}

/* Float Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(-50%) translateY(0px);
  }
  50% {
    transform: translateY(-50%) translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-content {
    padding-right: 20px;
  }

  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }

  .about-section .row {
    flex-direction: column;
    gap: 50px;
  }

  .about-section .col-lg-6 {
    min-width: 100%;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .about-images {
    height: 400px;
    margin: 0 auto;
    max-width: 500px;
  }

  .about-experience {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }

  .about-section .container {
    padding: 0 15px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
  }

  .about-images {
    height: 350px;
  }

  .about-image-main {
    width: 75%;
    height: 75%;
  }

  .about-image-small {
    width: 45%;
    height: 45%;
    border-width: 3px;
  }

  .about-experience {
    padding: 20px 15px;
    right: -15px;
  }

  .about-experience h3 {
    font-size: 28px;
  }

  .about-experience p {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title .subtitle {
    font-size: 12px;
    padding: 6px 15px;
  }

  .about-text {
    font-size: 15px;
    margin-bottom: 20px;
    text-align: left;
  }

  .about-features .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px 15px;
  }

  .about-features .feature-item i {
    margin-bottom: 5px;
  }

  .about-features .feature-item span {
    font-size: 15px;
  }

  .about-content .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 14px;
  }

  .about-images {
    height: 300px;
  }

  .about-experience {
    padding: 15px 12px;
    min-width: 80px;
  }

  .about-experience h3 {
    font-size: 24px;
  }

  .about-experience p {
    font-size: 10px;
  }
}

/* Bootstrap ile uyumluluk için */
.about-section .row.align-items-center {
  align-items: center;
}
