/* ========================================
   HOME.CSS — Ana Sayfa
   ======================================== */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  overflow: hidden;
  padding-top: 5rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  align-items: center;
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }
}

.hero__content {
  order: 2;
}

@media (min-width: 768px) {
  .hero__content {
    order: 1;
  }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-bordo);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title span {
  color: var(--color-bordo);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-bordo);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero__text {
  font-size: 1.1rem;
  color: var(--color-brown-mid);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__image {
  order: 1;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero__image {
    order: 2;
    justify-content: flex-end;
  }
}

.hero__image img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.hero__decor {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(196, 149, 106, 0.08);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

/* --- Danışmanlık Türleri --- */
.consult-types {
  padding: var(--spacing-lg) 0;
  background: var(--color-white);
}

.consult-types__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .consult-types__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.consult-types__card {
  padding: 2.5rem 2rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-bordo);
  transition: var(--transition);
}

.consult-types__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.consult-types__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream-dark);
  border-radius: 50%;
  color: var(--color-bordo);
  margin-bottom: 1.25rem;
}

.consult-types__icon svg {
  width: 26px;
  height: 26px;
}

.consult-types__card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-espresso);
  margin-bottom: 0.75rem;
}

.consult-types__card p {
  font-size: 0.95rem;
  color: var(--color-brown-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* --- Full Services List --- */
.services-full {
  padding: var(--spacing-xl) 0;
  background: var(--color-cream-dark);
}

.services-full__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 576px) {
  .services-full__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-full__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.services-full__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-espresso);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.services-full__item:hover {
  border-color: var(--color-bordo);
  color: var(--color-bordo);
  transform: translateX(4px);
}

.services-full__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bordo);
  flex-shrink: 0;
}

.services-full__item:nth-child(even) .services-full__dot {
  background: var(--color-gold);
}

/* Hizmet Kategorileri */
.services-full__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(196, 149, 106, 0.3);
}

.services-full__category {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-bordo);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-bordo);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

a.services-full__category:hover {
  background: var(--color-bordo);
  color: var(--color-white);
}

.services-full__category-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

@media (max-width: 575px) {
  .services-full__categories {
    gap: 0.5rem;
  }
  .services-full__category {
    font-size: 0.9rem;
    padding: 0.4rem 0.85rem;
  }
  .services-full__category-sep {
    display: none;
  }
}

/* --- About Story Sections --- */
.about-story {
  padding: var(--spacing-xl) 0;
  background: var(--color-cream);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-story__grid {
    grid-template-columns: 340px 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .about-story__grid {
    grid-template-columns: 380px 1fr;
    gap: 4rem;
  }
}

/* Photo with gold decorative accent */
.about-story__photo {
  position: relative;
  z-index: 1;
}

.about-story__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.about-story__photo-accent {
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

/* Text area */
.about-story__text h2 {
  margin-bottom: 0.75rem;
}

.about-story__text p {
  margin-bottom: 1rem;
  line-height: 1.85;
  color: var(--color-espresso);
}

.about-story__lead {
  font-size: 1.08rem;
  font-weight: 500;
}

/* --- Section 2: Reversed layout --- */
.about-story--reverse {
  background: var(--color-white);
}

@media (min-width: 768px) {
  .about-story--reverse .about-story__grid {
    grid-template-columns: 1fr 340px;
  }

  .about-story--reverse .about-story__photo {
    order: 2;
  }

  .about-story--reverse .about-story__text {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .about-story--reverse .about-story__grid {
    grid-template-columns: 1fr 380px;
  }
}

/* Bordo accent bar */
.about-story__accent-bar {
  border-left: 3px solid var(--color-bordo);
  padding-left: 1.75rem;
}

.about-story__accent-bar p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
  color: var(--color-espresso);
}

.about-story__accent-bar p:last-child {
  margin-bottom: 0;
}

/* --- Section 3: Editorial / Magazine layout --- */
.about-story--editorial {
  background: var(--color-cream-dark);
}

.about-story__editorial-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-story__editorial-layout {
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.about-story__portrait {
  position: sticky;
  top: 6rem;
}

.about-story__portrait img {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-peach);
  object-fit: cover;
}

.about-story__narrative {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.about-story__narrative p {
  margin-bottom: 1.25rem;
  line-height: 1.9;
  color: var(--color-espresso);
}

.about-story__narrative p:last-child {
  margin-bottom: 0;
}

/* Motto paragraph highlight */
.about-story__motto {
  background: var(--color-cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-bordo);
  font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .about-story {
    padding: var(--spacing-lg) 0;
  }

  .about-story__photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-story__photo-accent {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
  }

  .about-story__portrait {
    position: relative;
    top: 0;
    max-width: 220px;
    margin: 0 auto;
  }

  .about-story__narrative {
    padding: 1.5rem;
  }

  .about-story__accent-bar {
    padding-left: 1.25rem;
  }

  .about-story__motto {
    padding: 1rem 1.25rem;
  }
}

/* --- Quote Section --- */
.quote-section {
  padding: var(--spacing-lg) 0;
  background: var(--color-bordo);
  text-align: center;
}

.quote-section__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.4;
}

.quote-section__logo {
  max-width: 200px;
  margin: 0 auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

/* --- CTA Banner --- */
.cta-banner {
  padding: var(--spacing-lg) 0;
  background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-peach) 100%);
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

  .hero__image img {
    max-width: 280px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  .consult-types__card {
    padding: 1.5rem 1.25rem;
  }

  .cta-banner {
    padding: var(--spacing-md) 0;
  }

  .services-full {
    padding: var(--spacing-lg) 0;
  }

  .quote-section {
    padding: var(--spacing-md) 0;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 5rem 0 2rem;
  }

  .hero__image img {
    max-width: 240px;
  }
}
