@charset "utf-8";
/* CSS Document */

/* Color & Font-Family Referansları:
 #220122 - Koyu Mürdüm
 #7c1f77 - Koyu Pembe
 #ffb280 !important - Kavuniçi
 #f3e6e3 - Çok Açık Pembe
 #d8cfc4 - Lila 
 rgba(216,207,196,0.85) - Lila 
 background: radial-gradient(circle,rgba(34, 1, 34, 1) 0%, rgba(124, 31, 119, 1) 47%, rgba(255, 178, 128, 1) 100%) 
 background: radial-gradient(circle,rgba(34, 1, 34, 1) 0%, rgba(124, 31, 119, 0) 47%, rgba(255, 178, 128, 1) 100%) 
 #eec - Açık Bej (Hex kısa yazım: #eeccbb anlamına gelir)
 -----
 font-family: 'Segoe UI', sans-serif; 
*/



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



html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}

.container, .header-container, .footer-container, .products-grid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}


/* Genel Footer Stilleri */
.site-footer {
  background: radial-gradient(#eec, #eeddde);
  color: #333;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  width: 100%;
  margin: 0 auto;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1 1 180px;
  min-width: 150px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  color: #220122;
  margin-bottom: 10px;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #220122;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #7c1f77;
  text-decoration: underline;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #7c1f77;
}

/* Footer alt kısmı */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #000;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.footer-bottom a {
  color: #7c1f77;
  font-weight: bold;
  text-decoration: none;
}

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

/* Mobil uyum için genel ayarlar */
@media (max-width: 992px) {
  .footer-sections {
    gap: 15px;
  }
  .footer-column {
    flex: 1 1 140px;
    min-width: 140px;
  }
  .footer-column h4 {
    font-size: 15px;
  }
}

/* Tablet ve küçük ekranlar */
@media (max-width: 768px) {
  .footer-sections {

    text-align: center;
    gap: 25px;
  }

  .footer-column {
    width: 100%;
    max-width: 480px;
    margin-bottom: 20px;
  }

  .footer-column h4 {
    font-size: 14px;
    color: #220122;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    display: inline-block;
  }
}

/* Telefonlar ve çok küçük ekranlar */
@media (max-width: 480px) {
  .footer-sections {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-column {
    width: 100%;
    max-width: 100%;
  }

  .footer-column h4 {
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }

  .footer-column ul li {
    font-size: 14px;
  }

  .footer-contact-form {
    padding-top: 10px;
  }

  .footer-contact-form input,
  .footer-contact-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .footer-contact-form button {
    font-size: 15px;
    padding: 12px;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 20px;
  }

  .form-alert {
    font-size: 14px;
    padding: 12px 18px;
  }
}

/* =================== */
/* MODAL FORM STİLİ */
/* =================== */

.contact-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-modal.hidden {
  display: none !important;
}

.modal-content {
  background-color: #fff;
  padding: 30px 30px 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Kapatma çarpısı */
.close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
  user-select: none;
}

.close-modal:hover {
  color: #7c1f77;
}

/* Başlık */
.modal-content h2 {
  font-size: 22px;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
  font-weight: 700;
}

/* =================== */
/* FORM ELEMANLARI */
/* =================== */

.footer-contact-form {
  width: 100% !important;
}

.footer-contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 15px;
}

.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  border-color: #7c1f77;
  outline: none;
  box-shadow: 0 0 8px rgba(124, 31, 119, 0.4);
}

.footer-contact-form textarea {
  min-height: 120px;
}

.footer-contact-form button {
  width: 100%;
  background-color: #220122;
  color: #fff;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.footer-contact-form button:hover {
  background-color: #7c1f77;
}

.footer-contact-form button:active {
  background-color: #ffb280;
}

/* =================== */
/* FORM ALERT (BİLDİRİM) */
/* =================== */

.form-alert {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4caf50;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  font-size: 16px;
  z-index: 10000;
  transition: top 0.5s ease;
  max-width: 90%;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.form-alert.success {
  background-color: #7c1f77;
}

.form-alert.error {
  background-color: #00A340;
}

.form-alert.show {
  top: 20px;
}

