/* FERGAB International Web Sitesi Ana Stil Dosyası */

/* Renk Paleti */
:root {
  --dark-brown: #2A1A0A;
  --medium-brown: #8B5A2B;
  --light-brown: #D2B48C;
  --cream: #F5F5DC;
  --beige: #F5DEB3;
  --white: #FFFFFF;
  --black: #000000;
  --shadow: rgba(0, 0, 0, 0.1);
  --whatsapp-green: #25D366;
  --whatsapp-dark-green: #128C7E;
}

/* Genel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-brown);
  background-color: var(--cream);
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Sayfa Geçiş Animasyonu - Kaldırıldı */
/* .page-transition {
  animation: fadeOut 0.8s ease;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
} */

a {
  text-decoration: none;
  color: var(--medium-brown);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-brown);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--medium-brown);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--dark-brown);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--medium-brown);
  color: var(--medium-brown);
}

.btn-outline:hover {
  background-color: var(--medium-brown);
  color: var(--white);
}

.btn-buy {
  background-color: var(--whatsapp-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-buy:hover {
  background-color: var(--whatsapp-dark-green);
}

.btn-buy i {
  font-size: 1.2rem;
}

/* Başlık Stilleri */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: var(--dark-brown);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

/* Açılış Sayfası Stilleri */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.splash-logo {
  max-width: 300px;
}

.splash-text {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--dark-brown);
  text-align: center;
  animation: fadeIn 2s ease-in;
}

.splash-health-text {
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--medium-brown);
  text-align: center;
  font-weight: 500;
  animation: fadeIn 2.5s ease-in;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Header Stilleri */
header {
  background-color: var(--white);
  box-shadow: 0 2px 5px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 60px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-left: 10px;
  text-transform: uppercase;
  text-align: center;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  font-weight: 500;
  padding: 5px 10px;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
  border-bottom: 2px solid var(--medium-brown);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-brown);
}

/* Ana Sayfa Banner Stilleri */
.banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  max-height: 800px;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  max-width: 800px;
  width: 90%;
  padding: 20px;
  background-color: rgba(42, 26, 10, 0.7);
  border-radius: 5px;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--white);
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Bölüm Stilleri */
.section {
  padding: 60px 0;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 3px;
  background-color: var(--medium-brown);
}

/* Hoş Geldiniz Bölümü */
.welcome-section {
  background-color: var(--white);
  text-align: center;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.welcome-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Ürünler Bölümü */
.products-section {
  background-color: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow);
  transition: transform 0.3s ease;
}

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

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-info p {
  margin-bottom: 15px;
  color: #666;
}

.product-buttons {
  display: flex;
  gap: 10px;
}

/* Hizmetler Bölümü */
.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  text-align: center;
  padding: 30px;
  background-color: var(--cream);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.service-icon {
  font-size: 3rem;
  color: var(--medium-brown);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
}

/* Neden Biz Bölümü */
.why-us-section {
  background-color: var(--light-brown);
  color: var(--dark-brown);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--dark-brown);
}

.feature-text h4 {
  margin-bottom: 10px;
}

/* Çağrı Bölümü */
.cta-section {
  background-color: var(--dark-brown);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer Stilleri */
footer {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: 60px 0 20px;
  width: 100%;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-brown);
}

.footer-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--medium-brown);
  color: var(--white);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--light-brown);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--medium-brown);
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
  height: 400px;
  background-color: var(--light-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  color: var(--white);
}

.about-content {
  padding: 60px 0;
}

.about-section {
  margin-bottom: 60px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow);
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  color: var(--medium-brown);
  margin-bottom: 20px;
}

/* Ürünler Sayfası Stilleri */
.products-hero {
  height: 400px;
  background-color: var(--medium-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.products-hero h1 {
  font-size: 3rem;
  color: var(--white);
}

.products-content {
  padding: 60px 0;
}

.product-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  margin: 5px;
  background-color: transparent;
  border: 2px solid var(--medium-brown);
  color: var(--medium-brown);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--medium-brown);
  color: var(--white);
}

.product-detail {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.product-gallery {
  flex: 1;
}

.product-main-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-detail {
  flex: 1;
}

.product-price {
  font-size: 1.5rem;
  color: var(--medium-brown);
  margin-bottom: 20px;
}

.product-description {
  margin-bottom: 30px;
}

.product-features {
  margin-bottom: 30px;
}

.product-features h3 {
  margin-bottom: 15px;
}

.product-features ul {
  list-style: none;
}

.product-features li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--medium-brown);
}

/* Ürün Özellikleri Sayfası Stilleri */
.product-feature-page {
  padding: 60px 0;
}

.product-feature-header {
  text-align: center;
  margin-bottom: 40px;
}

.product-feature-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Ürün Özellikleri Sayfası Görsel Stilleri - Küçültülmüş ve Tıklanabilir */
.product-feature-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow);
}

.product-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-feature-image img:hover {
  transform: scale(1.02);
}

/* Tam Ekran Görüntüleme Modal Stilleri */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 5px;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--light-brown);
}

/* Hizmetler Sayfası Stilleri */
.services-hero {
  height: 400px;
  background-color: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-hero h1 {
  font-size: 3rem;
  color: var(--white);
}

.services-content {
  padding: 60px 0;
}

.service-detail {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.service-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-steps {
  margin-top: 30px;
}

.service-steps h3 {
  margin-bottom: 20px;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--medium-brown);
  color: var(--white);
  border-radius: 50%;
  font-weight: bold;
}

/* İletişim Sayfası Stilleri */
.contact-hero {
  height: 400px;
  background-color: var(--light-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  color: var(--white);
}

.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-info {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow);
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--medium-brown);
}

/* Kullanıcı Girişi Sayfası Stilleri */
.login-section {
  padding: 80px 0;
  background-color: var(--cream);
}

.login-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 15px var(--shadow);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 30px;
}

.login-form {
  margin-bottom: 20px;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
}

.form-footer a {
  color: var(--medium-brown);
}

.form-footer a:hover {
  text-decoration: underline;
}

.form-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #ddd;
}

.form-divider span {
  padding: 0 10px;
  color: #666;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
  .welcome-content {
    flex-direction: column;
  }
  
  .product-detail {
    flex-direction: column;
  }
  
  .banner-content {
    width: 85%;
    padding: 15px;
  }
  
  .banner-content h2 {
    font-size: 2.2rem;
  }
  
  .banner {
    height: 70vh;
  }
}

@media (min-width: 1600px) {
  .banner {
    height: 100vh;
    max-height: 900px;
  }
  
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px var(--shadow);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 10px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .banner {
    height: 450px;
  }
  
  .banner-content {
    width: 90%;
    padding: 15px;
  }
  
  .banner-content h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .banner-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .banner {
    height: 350px;
  }
  
  .banner-content {
    width: 95%;
    padding: 12px;
  }
  
  .banner-content h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  
  .banner-content p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .product-thumbnails {
    justify-content: center;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .product-buttons {
    flex-direction: column;
  }
}
