* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fffaf7;
  color: #333;
}

.brand-name {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8746e;
  margin-bottom: 14px;
  font-weight: 600;
}

.brand-logo {
  max-width: 180px;
  border-radius: 50%;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 20px;
 animation: fadeDown 0.8s ease-out;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .brand-logo {
    max-width: 140px;
    padding: 12px;
  }
}



.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      rgba(255, 248, 242, 0.85),
      rgba(255, 248, 242, 0.85)
    ),
    url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  color: #2f2f2f;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #d8756c, #c9645b);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(201, 100, 91, 0.45);
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(201, 100, 91, 0.6);
}

@media (max-width: 768px) {
  .hero h1 {
      font-size: 1.7rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 1rem;
  }
}



.products {
  padding: 80px 10%;
}

.products h2 {
  text-align: center;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.product-card {
  background: #fff;
  padding: 24px 20px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}


.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .product-card img {
    height: 220px;
  }
}



.product-card h3 {
  margin: 15px 0 10px;
}

.product-card p {
  color: #666;
  font-size: 0.95rem;
}

.product-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.custom-order {
  background: #fff3ec;
  padding: 80px 10%;
  text-align: center;
  border-top: 1px dashed #e7a9a1;
}

.custom-order h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.order-desc {
  color: #555;
  margin-bottom: 50px;
  font-size: 1.05rem;
}

.order-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.step {
  max-width: 200px;
}

.step span {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #d8bfa8, #e7a9a1);
  box-shadow: 0 6px 15px rgba(216, 191, 168, 0.4);
  color: #fff;
  border-radius: 50%;
  line-height: 45px;
  font-weight: bold;
  margin-bottom: 10px;
}


.order-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #d8756c, #c9645b);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(201, 100, 91, 0.35);
  align-self: center;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 100, 91, 0.45);
}

@media (max-width: 768px) {
  .product-card img {
    height: 220px;
  }
}



.product-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #c9645b;
  font-weight: 600;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-desc {
  font-size: 0.9rem;
  color: #666;
  margin: 10px 0 18px;
  line-height: 1.5;
}

.product-card .order-btn {
  margin-top: auto; /* BUTONLARI HİZALAR */
}

.about {
  padding: 80px 10%;
  background: #fffaf7;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}


.site-footer {
  background: #fff3ec;
  padding: 60px 10% 20px;
  border-top: 1px dashed #e7a9a1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 360px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand p {
  margin: 0;
}


.footer-links h4 {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #2f2f2f;
}

.footer-links a {
  display: block;
  color: #d8756c;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c9645b;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 40px;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8756c;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
}

.insta-link img {
  width: 20px;
  height: 20px;
}

.insta-link:hover {
  color: #c9645b;
}







