/* resim-atolyesi-kursu.css start */
/* Bu dosya, modelistlik-kursu.css temel alınarak Resim Atölyesi kursu için özelleştirilmiştir. */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@400;600;700&display=swap");

/* Genel Ayarlar */
.resim-atolyesi-hero,
.resim-atolyesi-avantajlar,
.resim-atolyesi-timeline,
.resim-atolyesi-gruplar,
.resim-atolyesi-gelisim,
.resim-atolyesi-hikayeler,
.resim-atolyesi-galeri,
.resim-atolyesi-sss {
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
  background: #f9f9f9;
  color: #1b4332;
  margin-bottom: 48px;
  margin-top: 48px;
  padding: 32px 15px;
}
.resim-atolyesi-hero {
  background: #fff;
  padding: 60px 15px;
}
.resim-atolyesi-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 48px;
  flex-wrap: wrap;
}
.resim-atolyesi-hero-left {
  flex: 1 1 50%;
  min-width: 300px;
}
.resim-atolyesi-hero-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1c2b3a;
  margin-bottom: 24px;
}
.resim-atolyesi-hero-left p {
  font-size: 1rem;
  color: #3c3c3c;
  margin-bottom: 18px;
  line-height: 1.7;
}
.resim-atolyesi-hero-buttons {
  display: flex;
  gap: 16px;
}
.btn-primary,
.btn-secondary {
  font-family: inherit;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: #1c2b3a;
  color: #fff;
}
.btn-primary:hover {
  background: #145132;
}
.btn-secondary {
  background: #fff;
  color: #2d6a4f;
  border: 2px solid #2d6a4f;
}
.btn-secondary:hover {
  background: #e0f2e9;
}
.resim-atolyesi-hero-right {
  flex: 1 1 40%;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.resim-atolyesi-hero-media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.resim-atolyesi-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Avantajlar */
.resim-atolyesi-avantajlar {
  background: #ebf5f0;
  text-align: center;
}
.resim-atolyesi-avantajlar h2 {
  font-size: 2rem;
  color: #2d6a4f;
  margin-bottom: 32px;
}
.resim-atolyesi-avantajlar-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.avantaj-kutu {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44, 106, 79, 0.07);
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 260px;
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.avantaj-kutu i {
  font-size: 2.2rem;
  color: #2d6a4f;
  margin-bottom: 14px;
}
.avantaj-kutu h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c2b3a;
}
.avantaj-kutu p {
  color: #3c3c3c;
  font-size: 1rem;
}

/* Resim Atölyesi Programlar Accordion Başlangıç */
.resim-atolyesi-programlar {
  background: #fff;
}
.resim-atolyesi-programlar h2 {
  text-align: center;
  color: #2d6a4f;
  font-size: 2rem;
  margin-bottom: 24px;
}
.program-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.program-accordion-item {
  background: #e0f2e9;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.program-accordion-btn {
  width: 100%;
  text-align: left;
  background: #e0f2e9;
  color: #1c2b3a;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  padding: 18px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.program-accordion-btn::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}
.program-accordion-item.open .program-accordion-btn::after {
  content: "\2212";
  transform: rotate(180deg);
}
.program-accordion-item.open .program-accordion-btn {
  background: #2d6a4f;
  color: #fff;
}
.program-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background: #fff;
}
.program-image-container {
  padding: 24px;
}
.program-image-container img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}
/* Resim Atölyesi Programlar Accordion Bitiş */

/* Gelişim ve Deneme (Modern) */
.resim-atolyesi-gelisim {
  background: linear-gradient(120deg, #e0f2e9 60%, #f9f9f9 100%);
  padding: 56px 0 56px 0;
  margin-bottom: 48px;
}
.resim-atolyesi-gelisim-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(44, 106, 79, 0.1);
  padding: 36px 32px;
}
.gelisim-svg-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gelisim-svg-circle {
  background: linear-gradient(135deg, #2d6a4f 60%, #e0f2e9 100%);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(44, 106, 79, 0.13);
}
.gelisim-svg-circle svg {
  display: block;
}
.gelisim-text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.gelisim-text-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c2b3a;
  margin-bottom: 8px;
}
.gelisim-main {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d6a4f;
  margin-bottom: 6px;
}
.gelisim-sub {
  font-size: 1rem;
  color: #3c3c3c;
  line-height: 1.6;
}

/* SSS Accordion - YKS ile aynı şekilde */
.resim-atolyesi-sss {
  background: #f9f9f9;
}
.resim-atolyesi-sss h2 {
  text-align: center;
  color: #2d6a4f;
  font-size: 2rem;
  margin-bottom: 24px;
}
.sss-accordion {
  max-width: 700px;
  margin: 0 auto;
}
.sss-item {
  border-bottom: 1px solid #e0f2e9;
}
.sss-btn {
  width: 100%;
  text-align: left;
  background: #e0f2e9;
  color: #1c2b3a;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  padding: 18px 48px 18px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.sss-btn::before {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #2d6a4f;
  font-weight: 700;
  transition: content 0.2s;
}
.sss-btn.active::before {
  content: "−";
  color: #2d6a4f;
}
.sss-btn:hover,
.sss-btn.active {
  background: #2d6a4f;
  color: #fff;
}
.sss-btn.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.sss-content {
  display: none;
  padding: 18px;
  background: #fff;
  border-radius: 0 0 6px 6px;
}

/* SSS accordion hover efektleri YKS ile aynı olsun */
.sss-btn:focus,
.sss-btn:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Resim Atölyesi Program Resimleri */
.resim-atolyesi-basarilar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 48px;
  flex-wrap: wrap;
}
.resim-atolyesi-basarilar-kutu,
.resim-atolyesi-basarilar-gorsel {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.resim-atolyesi-basarilar-kutu {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(44, 106, 79, 0.08);
}
.resim-atolyesi-basarilar-gorsel {
  display: flex;
  justify-content: center;
  align-items: center;
}
.resim-atolyesi-program-images {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.program-image {
  width: 277px;
  height: 257px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(44, 106, 79, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 106, 79, 0.15);
}

/* program accordion border sorunu düzeltme */
.program-accordion-btn:focus,
.program-accordion-btn:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
  .resim-atolyesi-basarilar-kutu,
  .resim-atolyesi-basarilar-gorsel {
    flex: 1 1 100%;
  }
  .program-image {
    width: 180px;
    height: 135px;
  }
}
@media (max-width: 991px) {
  .resim-atolyesi-basarilar-flex {
    flex-direction: column;
    gap: 32px;
  }
  .resim-atolyesi-basarilar-kutu,
  .resim-atolyesi-basarilar-gorsel {
    flex: 1 1 100%;
  }
  .program-image {
    width: 160px;
    height: 120px;
  }
}
@media (max-width: 600px) {
  .resim-atolyesi-basarilar-kutu,
  .resim-atolyesi-basarilar-gorsel {
    padding: 20px;
  }
  .program-image {
    width: 185px;
    height: 166px;
  }
  .resim-atolyesi-hero-inner {
    flex-direction: column-reverse !important;
  }
  .resim-atolyesi-hero-media img {
    height: 400px !important;
    width: 400px !important;
  }
  .resim-atolyesi-hero {
    padding: 0px 15px !important;
  }
}
@media (max-width: 900px) {
  .resim-atolyesi-gelisim-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .gelisim-svg-circle {
    width: 90px;
    height: 90px;
  }
  .gelisim-text-block h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 1024px) {
  .resim-atolyesi-hero-inner,
  .resim-atolyesi-basarilar-flex {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .resim-atolyesi-hero-inner,
  .resim-atolyesi-basarilar-flex {
    gap: 24px;
  }
  .resim-atolyesi-hero-left h1 {
    font-size: 2.2rem;
  }
  .resim-atolyesi-avantajlar-list {
    flex-direction: column;
    align-items: center;
  }
}
/* resim-atolyesi-kursu.css end */ 