/* GENEL RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
  background-color: #002aff;
  color: white;
}

/* HEADER */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.header-logo {
  height: 20px;
}

/* SECTION */
.section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 10px;
  margin-top: 35px;
}

.mockup-container {
  position: relative;
  width: 360px;
  max-width: 100%;
}

.iphone {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.mockup-video {
  position: absolute;
  width: 360px;
  height: 430px;
  top: 0;
  left: 0;
  border-radius: 0;
  object-fit: cover;
  z-index: 0;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.3);
}

.mockup2-video {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}


.text-section {
  text-align: center;
  max-width: 400px;
}

.text-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.dark-section {
  background-color: #171717;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  gap: 10px;
  margin-top: 0px;
}

.dark-section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px;
  gap: 10px;
  margin-top: 0px;
}

.dark-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
}

.dark-text {
  text-align: center;
  max-width: 500px;
}

.dark-text h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.dark-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .dark-section-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .dark-text {
    text-align: left;
  }
}

/* BUTON */
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 14px rgba(0, 86, 179, 0.4);
}

/* LANGUAGE SELECTOR */
.language-selector {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
}

.lang-btn {
  background-color: #ffffff;
  border: none;
  border-radius: 20%;
  width: 40px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

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

.lang-menu {
  display: none;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 10px;
  position: absolute;
  bottom: 60px;
  right: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lang-menu.show {
  display: flex;
}

.lang-menu a {
  margin: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lang-menu img {
  width: 32px;
  height: auto;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.lang-menu img:hover {
  transform: scale(1.1);
}

/* PANEL MENÜ */
.panel-dropdown {
  position: relative;
  margin-left: auto;
  margin-right: 8px;
}

.panel-button {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #002aff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.panel-button:hover {
  background-color: #002aff;
  color: white;
}

.panel-menu {
  position: absolute;
  top: 50px;
  right: 0;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 999;
}

.panel-menu a {
  padding: 12px 20px;
  text-decoration: none;
  color: #002aff;
  font-weight: 500;
  transition: background 0.2s ease;
}

.panel-menu a:hover {
  background-color: rgba(0, 42, 255, 0.1);
}

.panel-menu.show {
  display: flex;
}

.site-footer {
  background-color: #121212;
  color: #ccc;
  padding: 50px 20px 30px;
  font-size: 0.9rem;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: white;
}

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

.footer-column a:hover {
  color: white;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-social a {
  color: #ccc;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-logo img {
  width: 140px;
  height: auto;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
  }
}


/* RESPONSIVE */
@media (min-width: 768px) {
  .section {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .text-section {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .panel-menu {
    right: 0;
    left: auto;
    top: 50px;
  }

  .panel-button {
    font-size: 16px;
    padding: 12px 20px;
  }
.container, .header-content, .section {
  min-width: 370px;
}

}

.form-group {
   flex: 1 1 50%;
}


.form-group select {
  border-radius: 0px;
  padding: 8px 12px;
  border: none;
  font-size: 16px;
  width: 100%;
max-width: 150px;
}

.form-group input {
  border-radius: 10px;
  padding: 8px 16px;
  border: none;
  font-size: 20px;
  width: 100%;
min-width: 200px;
 flex: 1 1 100%;
}

.btn-primary {
 background-color: #121212;
font-family: 'Titillium Web', sans-serif;
color: white;
  border-radius: 10px;
  padding: 8px 12px;
  border: none;
  font-size: 20px;
  width: 100%;
max-width: 120px;
}

.product {
  flex: 1 1 calc(33% - 30px);
  min-width: 180px;
  max-width: 180px;
  display: flex;
}

.product-inner {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,.3);
  padding: 15px;
  text-align: center;
  color: #000;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%; /* İçeriği kart yüksekliğine yayar */
}

.product-inner:hover {
  transform: translateY(-5px);
}

.product-inner img {
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
}

.product-name {
  font-weight: bold;
  font-size: 12px;
}

.tag {
  display: inline-block;
  background-color: #e0e0e0;
  color: #333;
  border-radius: 15px;
  padding: 5px 10px;
  margin: 2px;
  font-size: 12px;
}

.btn-view {
  background-color: #0142ff;
font-family: 'Titillium Web', sans-serif;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
margin-bottom: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-view:hover {
  background-color: #0026a3;
}
#filter form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#filter .form-group {
  flex: 1 1 20px;
  min-width: 150px;
}

.intro-text em {
  font-style: italic;
  font-weight: 200;
  font-size: 40px;
  display: block;
  margin-top: 5px;
  opacity: 0.9;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom:10px;
}

.form-group select {
  appearance: none; /* varsayılan oku gizler */
  background-color: white;
font-family: 'Titillium Web', sans-serif;
  color: #333;
  padding: 10px 10px;
  font-size: 14px;
  border-radius: 10px;
  border: 2px solid #0039c9;
  width: 100%;
  font-weight: 500;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2324A1DE" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  cursor: pointer;
}


.intro-text {
  text-align: left;
  font-family: 'Titillium Web', sans-serif;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
margin-top: 40px;
  padding: 0 20px;
}

.search-section {
  position: relative;
  width: 100%;
  height: 30vh;
  background-color: #002aff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px;
  text-align: center;
  color: white;
  overflow: hidden;
 margin-top: 70px;
}

.search-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://smile.design/images/web/Smile_Design_Search.png');
  background-repeat: no-repeat;     /* 🔴 Tekrarlamasın */
  background-size: cover;         /* 🔵 Ekrana sığacak şekilde orantılı küçültme */
  background-position: center;      /* 🟢 Ortalansın */
  opacity: 0.3;
  z-index: 1;
}

.search-section p,
.search-section form {
  position: relative;
  z-index: 2;
}

.search-section p {
  font-size: 1.5rem;
  margin-bottom: 0px;
}

#search-form {
  width: 100%;
  max-width: 500px;
}

#search-form .form-group {
  margin-bottom: 15px;
}

#search-form input.form-control {
  border-radius: 30px;
  padding: 10px 20px;
}

#search-form button {
  border-radius: 30px;
  padding: 10px;
  font-weight: bold;
}
