:root {
  --primary: #7b2d6f;    /* Koyu pembe / erik rengi, sofistike ve zarif */
  --secondary: #ffffff;  /* Çok açık pembe-mor tonlarında, nazik ve temiz */
  --accent: #c72c6f;     /* Canlı koyu pembe / fuşya, vurgu için ideal */
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: var(--secondary);
      color: #333;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

  header {
  background: var(--primary);
  color: white;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15rem; /* logo ile menü arasındaki mesafe */
  flex-wrap: nowrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: row-reverse; /* Sağdan sola doğru sıralar */
  justify-content: flex-start;  /* Menü öğeleri soldan başlayabilir, ama ters yön olduğu için sağdan başlar */
}

nav a, .dropbtn {
  color: white;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.25rem 0.5rem;
}

.hero {
  position: relative;
  background-size: cover;
  color: white;
  padding: 4rem 0 6rem;
  overflow: hidden; /* Taşan baloncukları gizlemek için */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Baloncuklar için ortak stil */
/* Ortak stil */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.9);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-iteration-count: infinite;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Farklı boyutlar, konumlar ve animasyonlar */
.bubble1 {
    width: 40px;
    height: 40px;
    bottom: 12%;
    left: 18%;
    animation-name: float1;
    animation-duration: 7s;
    animation-delay: 0s;
}

.bubble2 {
    width: 25px;
    height: 25px;
    bottom: 22%;
    left: 43%;
    animation-name: float2;
    animation-duration: 6s;
    animation-delay: 2.5s;
}

.bubble3 {
    width: 30px;
    height: 30px;
    bottom: 18%;
    left: 72%;
    animation-name: float3;
    animation-duration: 8s;
    animation-delay: 1.2s;
}

.bubble4 {
    width: 45px;
    height: 45px;
    bottom: 28%;
    left: 88%;
    animation-name: float1;
    animation-duration: 9s;
    animation-delay: 3.1s;
}

/* Animasyonlar */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translate(10px, -15px) scale(1.05) rotate(5deg);
        opacity: 0.6;
    }

    50% {
        transform: translate(15px, -25px) scale(1.1) rotate(-5deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(10px, -15px) scale(1.05) rotate(5deg);
        opacity: 0.6;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.4;
    }

    25% {
        transform: translate(-15px, -10px) scale(0.95) rotate(-6deg);
        opacity: 0.7;
    }

    50% {
        transform: translate(-20px, -20px) scale(0.9) rotate(6deg);
        opacity: 0.9;
    }

    75% {
        transform: translate(-15px, -10px) scale(0.95) rotate(-6deg);
        opacity: 0.7;
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translate(8px, -18px) scale(1.08) rotate(7deg);
        opacity: 0.55;
    }

    50% {
        transform: translate(12px, -28px) scale(1.12) rotate(-7deg);
        opacity: 0.75;
    }

    75% {
        transform: translate(8px, -18px) scale(1.08) rotate(7deg);
        opacity: 0.55;
    }
}



    @keyframes float {
      0% { background-position: 0 0; }
      100% { background-position: 100% 100%; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
    }

.hero-text {
    flex: 1;
    min-width: 260px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4); /* Hafif şeffaf çerçeve */
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1); /* Transparan beyaz arka plan */
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px); /* Arka planı hafif bulanıklaştırır */
    -webkit-backdrop-filter: blur(8px); /* Safari uyumu için */
}

    .hero-text:hover {
        background: rgba(255, 255, 255, 0.25); /* Hover’da biraz daha belirgin arka plan */
        border-color: rgba(255, 255, 255, 0.7);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
        transform: translateY(-5px);
    }


    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
    }

    .form-section {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 450px;
      margin: 0 auto;
    }

    .form-section h2 {
      color: var(--primary);
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1rem;
      text-align: left;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .form-group i {
      margin-right: 0.5rem;
      color: var(--primary);
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }

    .form-section button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      width: 100%;
      margin-top: 1rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      padding: 3rem 0;
    }

    .card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  cursor: pointer;
}

    .card h3 {
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .card p {
      font-size: 0.95rem;
      color: #555;
    }

  footer {
  background-color: #7b2d6f; /* Koyu pembe/ mor tonlarından biri */
  color: #f8f8f8;
  padding: 1rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  font-family: 'Inter', sans-serif;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

footer a {
  color: #f8f8f8;
  text-decoration: underline;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffb6c1; /* Açık pembe hover efekti */
}

    /* Hamburger butonu */
.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

/* Menü (nav) başlangıçta gizli ve tam ekran kaplayan overlay */
nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* Menü açılınca */
nav.open {
  right: 0;
}

/* Menü linkleri */
nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--accent);
}

/* Arka plan koyulaşması (overlay) */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger ikonu 'X' haline dönüşümü */
.menu-toggle.open i.fas.fa-bars {
  display: none;
}

.menu-toggle.open i.fas.fa-times {
  display: inline-block;
  font-size: 1.7rem;
  color: white;
}

.menu-toggle i.fas.fa-times {
  display: none;
}

/* Masaüstü için normal nav */
@media(min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    height: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    right: 0 !important;
  }
  nav a {
    margin: 0 1rem;
    font-size: 1rem;
    color: white;
  }
  .menu-overlay {
    display: none;
  }
}
.icon-list {
  max-width: 1000px; /* Daha geniş container */
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 sütun */
  gap: 2.5rem 3rem; /* Satır ve sütun boşluklarını artırdık */
}

.icon-list a.item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f9f9f9;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.icon-list a.item:hover {
  background-color: #ffe6d6;
  color: #7b2d6f;
}

.icon-list a.item i {
  font-size: 2.5rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
  color: #7b2d6f;
  transition: color 0.3s ease;
}

.icon-list a.item:hover i {
  color: #df0ec3;
}
@media (max-width: 700px) {
  .icon-list {
    grid-template-columns: 1fr;
    max-width: 90%;
  }
}
.katalog {
  max-width: 1100px; /* Daha geniş alan */
  margin: 3rem auto;
  padding: 0 1rem;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.katalog h1 {
  font-weight: 600;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.3rem;
  color: #222;
}

.katalog p:first-of-type {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #666;
}

.product-single {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 3rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer; /* Hoverda gösterim için */
}

    .product-single:hover {
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
        transform: scale(1.05);
    }

        .product-single:hover h3 {
            color: #007bff; /* Hoverda başlık mavileşir */
            transition: color 0.3s ease;
        }

        .product-single:hover p {
            color: #333; /* Açık renkli metin */
            transition: color 0.3s ease;
        }


    .product-single img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
        margin-bottom: 1rem;
        object-fit: contain; /* veya tamamen kaldır */
    }

.product-single h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  text-align: center;
  color: #111;
}

.product-single p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  text-align: center;
}

@media (max-width: 480px) {
  .product-single img {
    height: 300px; /* Mobilde daha uygun */
  }
}


.btn:hover {
  background-color: #388E3C;
}
 .whatsapp-float {
    position: fixed;
    width: 160px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .whatsapp-float i {
    margin-right: 10px;
    font-size: 24px;
  }
  .whatsapp-float:hover {
    background-color: #128C1E;
  }
  .whatsapp-float span {
    font-weight: 600;
    font-family: 'Inter', sans-serif;
  }
  @media (max-width: 480px) {
    .whatsapp-float {
      width: 140px;
      height: 45px;
      font-size: 16px;
      bottom: 20px;
      right: 20px;
    }
    .whatsapp-float i {
      font-size: 20px;
      margin-right: 8px;
    }
  }
  