* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;

}

.body {
  overflow-x: hidden;
  padding-top: 80px;
}

header {
  background: #2C3E50;
  padding: 20px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.header-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #3fd437;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-right: 10px;
}

/* .logo-text {
  color: #3fd437;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
} */

/* Hamburger Menü */
.hamburger {
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1101;
}

.hamburger div {
  height: 3px;
  background: #3fd437;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.hamburger div:nth-child(1) {
  width: 100%;
}

.hamburger div:nth-child(2) {
  width: 80%;
}

.hamburger div:nth-child(3) {
  width: 60%;
}

/* Hamburger active state */

.hamburger.active div:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  width: 100%;
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  width: 100%;
}


/* Menü */
nav {
  position: relative;
  display: flex;
  align-items: center;
}

ul.navbar {
  list-style: none;
  display: flex;
  gap: 30px;
  color: #3fd437;
}

ul.navbar li {
  display: inline-block;
}

ul.navbar li a {
  color: #3fd437;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: block;
}

ul.navbar li a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}


/* Dil butonları */
.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.language-switcher button {
  background-color: #2C3E50;
  /* Buton arka planını navbar rengi yap */
  color: #3fd437;
  /* Yazı rengini menü yeşiline yakın yap */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  padding: 8px 15px;
  transition: background-color 0.3s ease
}

.language-switcher button:hover {
  background: #ffffff1a;
  color: #3fd437;
}

/* Mobil Görünümde Hamburger Menü */
/* Mobil görünüm */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  ul.navbar {
    flex-direction: column;
    background: #131418;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    padding-top: 100px;
    clip-path: circle(50px at 90% -10%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: clip-path 0.6s ease;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    z-index: 1000;
  }

  ul.navbar.open {
    clip-path: circle(150% at 90% -10%);
    -webkit-clip-path: circle(150% at 90% -10%);
    pointer-events: auto;
    visibility: visible;
  }

  ul.navbar li {
    margin: 25px 0;
    text-align: center;
  }

  ul.navbar li a {
    font-size: 24px;
    padding: 12px 25px;
    color: #d4d4d4;
  }

  ul.navbar li a:hover {
    color: #3fd437;
    background: none;
    transform: none;
  }

  .language-switcher {
    justify-content: center;
  }
}


/* Main içerik düzeni */
main {
  padding-top: 60px;
}


#hero {
  background: #ECF0F1;
  padding: 80px 0;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.hero-content {
  flex: 1;
  color: #2C2C2C;
  animation: fadeIn 1.5s ease-in-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.hero-content h1:hover {
  transform: scale(1.05);

}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #2C2C2C;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 27, 11, 0.3);
}

.cta-button:hover {
  background-color: #2C3E50;
  color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px #877408;

}

/* .hero-image {
  flex: 1;
  text-align: right;
  animation: fadeIn 2s ease-in-out;
} */

.video-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.video-container img {
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-container img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}



/* VIDEO için özel stil */
/* .hero-image video {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-image video:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
} */


@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .video-container {
    flex: none;
    width: 100%;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .video-container {
    flex-direction: column;
    align-items: center;
  }

  .video-container video {
    width: 90%;
    height: auto;
    margin-bottom: 15px;
  }
}

.products-container h2 {

  text-align: center;
  /* Center align the heading */
  font-size: 2.5rem;
  /* Increase font size */
  font-weight: bold;
  /* Make it bold */
  margin-bottom: 40px;
  /* Space below the heading */
  color: #333;
  /* Text color */
  text-transform: uppercase;
  /* Make the text uppercase */
  letter-spacing: 2px;
  /* Add spacing between letters */
}

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

.product-card {
  background-color: #2c3e502a;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 22px;
  animation: slideInUp 1s ease-in-out;
}

.product-card:nth-child(1) {
  animation-delay: 0.2s;
}

.product-card:nth-child(2) {
  animation-delay: 0.4s;
}

.product-card:nth-child(3) {
  animation-delay: 0.6s;
}

.product-card:nth-child(4) {
  animation-delay: 0.8s;
}

.product-card img {
  width: 100%;
  height: 250px;
  /* Fixed height for uniform images */
  object-fit: cover;
  /* Prevent image stretching */
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.product-card h3 {
  font-size: 1.2rem;
  margin: 15px;
  color: #333;
}

.product-card p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2C2C2C;
  margin: opx 15px 15px;
}

.buy-button {
  display: block;
  width: calc(100% - 30px);
  /* Button with margin */
  margin: 15px;
  padding: 12px 20px;
  background-color: #2C2C2C;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background-color: #2C3E50;
  color: #D4AF37;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

/* YAZILAR */
.section-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.info-block {
  flex: 1 1 calc(25% - 40px);
  text-align: center;
  animation: fadeIn 1s ease;
}

.info-block img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: 1.5rem;
  color: #2C3E50;
  margin-bottom: 10px;
}

.info-block p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .info-block {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .info-block {
    flex: 1 1 100%;
  }
}


#collections {
  padding: 50px 0;
  background-color: #ECF0F1;
}

.collections-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.collections-container h2 {
  text-align: center;
  /* Center align the heading */
  font-size: 2.5rem;
  /* Increase font size */
  font-weight: bold;
  /* Make it bold */
  margin-bottom: 40px;
  /* Space below the heading */
  color: #333;
  /* Text color */
  text-transform: uppercase;
  /* Make the text uppercase */
  letter-spacing: 2px;
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

}

.collection-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.collection-info h3 {
  margin: 0 0 10px 0;
}

.collection-info p {
  margin: 0 0 15px 0;
  font-size: 0.9em;
}

.collection-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #2C2C2C;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.collection-button:hover {
  background-color: #2C3E50;
  color: #3fd437;

}

.collections-grid:hover>.collection-card:not(:hover) img {
  filter: brightness(0.5) saturate(0) contrast(1.2) blur(15px);
  transition: filter 0.3s ease;
}

.moving-text-background {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-50%);
  white-space: nowrap;
}

.moving-text-background span {
  display: inline-block;
  font-size: 140px;
  font-weight: 900;
  color: rgba(30, 30, 30, 0.15);
  text-transform: uppercase;
  letter-spacing: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  animation: scrollText 25s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}


#about {
  padding: 60px 0;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-container h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  color: #444;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text ul {
  list-style-type: none;
  padding-left: 0;
}

.about-text ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.about-text ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }
}

#contact {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.contact-content {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

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

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

.contact-info ul {
  list-style-type: none;
  padding-left: 0;
}

.contact-info ul li {
  margin-bottom: 10px;
}

.contact-form {
  flex: 1;
}

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

.contact-form label {
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form .submit-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form .submit-button:hover {
  background-color: #45a049;
}

/* ?HARİTA İLETİŞİM KISMI */
.map {
  position: relative
    /* Haritanın ekranın her yerinde görünmesi için */
    top: 0;
  /* Üstten sıfır boşluk */
  left: 0;
  /* Soldan sıfır boşluk */
  width: 100vw;
  /* Ekran genişliğinin tamamını kapla */
  height: 100vh;
  /* Ekran yüksekliğinin tamamını kapla */
  z-index: -1;
  /* Haritanın diğer içeriklerin arkasında kalması için */
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* .contact-info {
  position: static;
  bottom: 20px;
  right: 20px;
  width: 300px;
  
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.contact-info h2 {
  margin-top: 0;
  font-size: 18px;
  color: #d82e3f;
}

.contact-info p {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}

.contact-info .icon {
  margin-right: 8px;
  color: #d82e3f;
}

.contact-info a {
  color: #d82e3f;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
} */



@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: none;
    width: 100%;
  }

  .contact-content {
    gap: 30px;
  }
}

/* Keyframes for Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Keyframes for Slide-In Animation */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Keyframes for Bounce Animation */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

/* Keyframes for Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Keyframes for Rotate Animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
}

.whatsapp-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-button img:hover {
  transform: scale(1.1);
}

.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.animate-left.visible,
.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}