/* ===== Ana Sayfa Section Stilleri ===== */

/* Hakkımızda Section */
.homepage-about-section {
  padding: 80px 0;
  background: #ffffff;
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.homepage-about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.homepage-about-left {
  position: relative;
  background: #c33130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.homepage-about-red-overlay {
  text-align: center;
  color: #ffffff;
}

.homepage-about-red-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #ffffff;
}

.homepage-about-red-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
}

.homepage-about-signature {
  margin-top: 40px;
  opacity: 0.3;
}

.homepage-about-center {
  position: relative;
  overflow: visible;
  background: #f5f5f5;
  width: 100%;
}

.homepage-about-photos {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.homepage-about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.homepage-about-right {
  background: #ffffff;
  padding: 60px 50px;
  display: flex;
  align-items: center;
}

.homepage-about-content {
  width: 100%;
}

.homepage-about-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #c33130;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}

.homepage-about-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.homepage-about-title-highlight {
  color: #c33130;
}

.homepage-about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 40px;
}

.homepage-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #c33130;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.homepage-about-btn:hover {
  background: #a52928;
  transform: translateY(-2px);
}

/* Ürün Kategorileri Section */
.homepage-categories-section {
  padding: 0;
  background: #ffffff;
}

.homepage-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 800px;
}

.homepage-category-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.homepage-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.homepage-category-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 40px;
}

.homepage-category-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.homepage-category-subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #ffffff;
  opacity: 0.9;
}

.homepage-category-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #ffffff;
  border-radius: 8px;
  transition: color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.homepage-category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #dc2626;
  transition: left 0.4s ease;
  z-index: -1;
}

.homepage-category-btn:hover {
  color: #ffffff;
}

.homepage-category-btn:hover::before {
  left: 0;
}

/* Sağlıklı Section */
.homepage-healthy-section {
  padding: 100px 0;
  background: #ffffff;
}

.homepage-healthy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.homepage-healthy-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-healthy-icons {
  text-align: center;
}

.homepage-healthy-icon-item {
  margin-bottom: 40px;
}

.homepage-healthy-icon-item svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.homepage-healthy-icon-item p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c33130;
}

.homepage-healthy-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.homepage-healthy-badge-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.homepage-healthy-badge-percent {
  font-size: 3rem;
  font-weight: 700;
  color: #c33130;
}

.homepage-healthy-right {
  padding-left: 40px;
}

.homepage-healthy-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.homepage-healthy-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 20px;
}

.homepage-healthy-features {
  margin-top: 40px;
}

.homepage-healthy-features-title {
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.homepage-healthy-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.homepage-healthy-features-list li {
  font-size: 1rem;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.homepage-healthy-features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c33130;
  font-size: 1.5rem;
  line-height: 1;
}

/* USTA Section */
.homepage-master-section {
  padding: 100px 0;
  background: #1a1a1a;
  color: #ffffff;
}

.homepage-master-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.homepage-master-left {
  position: relative;
}

.homepage-master-images {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.homepage-master-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.homepage-master-right {
  padding-left: 40px;
}

.homepage-master-title {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  color: #ffffff;
}

.homepage-master-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
  opacity: 0.9;
}

.homepage-master-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.8;
}

/* SANAT Section */
.homepage-art-section {
  padding: 100px 0;
  background: #ffffff;
}

.homepage-art-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.homepage-art-left {
  position: relative;
  min-height: 600px;
}

.homepage-art-media {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.homepage-art-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homepage-art-right {
  padding-left: 40px;
}

.homepage-art-title {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.homepage-art-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.homepage-art-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 40px;
}

.homepage-art-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #c33130;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 60px;
}

.homepage-art-btn:hover {
  background: #a52928;
  transform: translateY(-2px);
}

.homepage-art-bottom {
  margin-top: 40px;
}

.homepage-art-bottom-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
}

.homepage-art-bottom-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #666666;
}

.homepage-art-bottom-text strong {
  color: #c33130;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
  .homepage-about-container {
    grid-template-columns: 1fr;
  }

  .homepage-healthy-grid,
  .homepage-master-container,
  .homepage-art-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .homepage-healthy-right,
  .homepage-master-right,
  .homepage-art-right {
    padding-left: 0;
  }

  .homepage-categories-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {

  .homepage-about-title,
  .homepage-healthy-title {
    font-size: 2.5rem;
  }

  .homepage-master-title,
  .homepage-art-title {
    font-size: 4rem;
  }

  .homepage-category-title {
    font-size: 2rem;
  }
}

/* Instagram Section Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}

.instagram-item {
  width: 100%;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.instagram-item:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}