@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Global Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

/* Container ve Genel Site Düzeni */
.container {
    width: 100%;
    height: 100vh;
    background-color: #1e2227;
    color: #fff;
}



/* Navigation Bar */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 8%;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 100;

}

.logo {
    width: 50x;
    height: 60px;
    cursor: pointer;
  }

nav .nav-links {
    text-decoration: none;
    color: #fff;
    font-size: 26px;
}

nav .nav-links a {
    text-decoration: none;
    color: #1e2227;
    font-size: 25px;
    margin: 5px;
}

/* Row ve Kolon Düzeni */
.row {
    width: 100%;
    height: 100%;
    display: flex;
}

.col-1,
.col-2 {
    flex-basis: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.col-1 {
    padding-left: 8%;
}

.col-2 {
    background-color: #1e2227;
    padding-top: 8%;
    position: relative;
    border-radius: 10px 50px;
}

/* Col-1 İçerikleri */
.col-1 h1 {
    font-size: 74px;
    line-height: 105px;
    margin-bottom: 10px;
}

.col-1 p {
    padding-right: 25px;
    line-height: 1.5;
}

.col-1 .price {
    display: flex;
    align-items: flex-end;
    column-gap: 10px;
    margin-top: 10px;
}

.col-1 .price h2 {
    font-size: 25px;
    line-height: 60px;
    /* margin-bottom değeri çok yüksek görünüyorsa uygun şekilde ayarlayın */
    margin-bottom: 30px;
    line-height: 2;
}

.col-1 .buttons {
    display: flex;
    column-gap: 25px;
    flex-wrap: wrap;
}

.col-1 button,
.col-1 a {
    display: inline-block;
    width: fit-content;
    padding: 18px 50px;
    background: #007bff;
    border-radius: 10px 20px;
    border: none;
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.5s;
}

.col-1 button:hover,
.col-1 a:hover {
    background: #005eff;
    transform: translateY(-5px);
}

/* Feature Görseli */
.feature-img {
    width: 100%;
    text-align: center;
}

.feature-img img {
    width: 80%;
    transform: rotate(-20deg);
    transition: transform 0.5s;
}

.feature-img img:hover {
    transform: translate(-20px, 10px) rotate(0deg);
}

/* Col-2 Arka Plan Yazısı */
.col-2 h2 {
    position: absolute;
    left: 10%;
    top: 25%;
    font-size: 130px;
    opacity: 0.3;
}

/* Sağdaki Slider Alanı (Blue Section) */
.blue-section {
    position: fixed; /* Slider ekranın sabit olmasını sağlıyor */
    right: 0;
    top: 0;
    width: 50vw;       /* Ekranın sağ yarısı */
    height: 100vh;     /* Tam yükseklik */
    background: #1e2227;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px 50px;
    z-index: 50;
    transition: transform 0.3s ease-in-out; /* Yumuşak geçiş efekti */
}

/* Slider Çerçevesi */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px 50px;
}

/* Slider: Resimleri Yatay Sıralama */
.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    border-radius: 10px 50px;
}

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

/* Slider Navigasyon Butonları */
.blue-section .slider-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    user-select: none;
}

.blue-section .slider-container .prev {
    left: 10px;
}

.blue-section .slider-container .next {
    right: 10px;
}

.blue-section .slider-container button:hover {
    background: rgba(0, 0, 0, 0.8);
}




.dropdown 
{ position: relative;
  display: inline-block; }

.dropdown-toggle 
{ background-color: #ffffff;
  color: white; 
  border: none; 
  cursor: pointer; }
  

.dropdown-menu 
{  display: none; 
   position: absolute; 
   background-color: #ffffff; 
   min-width: 160px; 
   box-shadow: 5px 10px 8px 16px rgba(0,0,0,0.2); }

.dropdown-menu a 
{ color: black; 
  padding: 10px 16px; 
  text-decoration: none; 
  display: block; }

.dropdown:hover .dropdown-menu 
{ display: block; 
 }



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

body{
    background-image: url();
    font-family: sans-serif;
}

.menu-bar{
    background: rgb(255, 255, 255);
    text-align: center;
}
.menu-bar ul{
    display: inline-flex;
    list-style: none;
}

.menu-bar ul li{
    width: 200px;
    margin: 15px;
    padding: 15px;
}

.menu-bar ul li a{
    text-decoration: none;
    color:  #1e2227;
}

.active, .menu-bar ul li:hover{
    background: rgb(235, 235, 235);
    border-radius: 5px;
}

.menu-bar .fas{
    margin-right: 8px;
}

.sub-menu-1{
    display: none;
}

.menu-bar ul li:hover .sub-menu-1{ 
    display: block;
    position: absolute;
    background-color: #d3d3d3;
    margin-top: 15px;
    margin-left: -5px;
    font-size: 15px;
}

.menu-bar ul li:hover .sub-menu-1 ul{
    display: block;
}

.menu-bar ul li:hover .sub-menu-1 ul li{
    width: 150px;
    padding: 10px;
    border-bottom: 1px solid;
    background: transparent;
    text-align: left;
    border-radius: 0;
    cursor: pointer;
}
.menu-bar ul li:hover .sub-menu-1 ul a:hover{
    color: rgb(183, 183, 183);
}


footer {
    background-color: #e5e3e3;
    padding: 40px 20px;
    color: #000;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-left,
  .footer-middle,
  .footer-right {
    flex: 1 1 250px;
    margin: 10px;
  }
  
  .footer-image {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .footer-middle ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  .footer-middle a {
    text-decoration: none;
    color: #000;
  }
  
  .footer-middle a:hover {
    text-decoration: underline;
  }
  
  .instagram-icon {
    display: inline-block;
    font-size: 24px;
    color: #d62976; /* Instagram pembe tonu */
    text-decoration: none;
    margin-top: 10px;
  }
  


  body {
    margin: 0;
    padding: 0;
    background-color: #e4e2e2;
    font-family: Arial, sans-serif;
  }
  
  .footer {
    background-color: #e4e2e2;
    padding: 60px 40px;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .footer-left img {
    width: 120px;
    margin-bottom: 40px;
  }
  
  .insta-icon {
    font-size: 20px;
    color: #d62976;
    text-decoration: none;
  }
  
  .footer-middle,
  .footer-right {
    min-width: 200px;
  }
  
  .footer-middle h3,
  .footer-right h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .footer-middle ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.8;
  }
  
  .footer-middle ul li a {
    color: #000;
    text-decoration: none;
  }
  
  .footer-middle ul li a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      gap: 40px;
    }
  
    .footer-left,
    .footer-middle,
    .footer-right {
      text-align: left;
    }
  }



  
  