@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
  font-family: "roboto", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 399;
  font-style: normal;
}

input,button,select,textarea{
  font-family: "roboto", sans-serif !important;
}
.navbar-item:hover,
.navbar-item:active,
.navbar-link:hover,
.navbar-link:active,
.navbar-brand:hover,
.navbar-brand:focus,
a.hvr:hover {
  background-color: transparent !important;
  color: #999 !important;
}

.navbar-item.has-dropdown .navbar-link::after {
  border-color: #333 !important;
}

.navbar-burger span {
  background-color: #333 !important;
}

.hero {
  border-radius: 10px !important;
  background: 
    /* Nokta deseni */
    radial-gradient(rgba(255, 255, 255, 0.15) 1.2px, transparent 1px) 0 0 / 15px 15px,
    /* Gradient */
    linear-gradient(75deg, rgba(62, 179, 175, 1) 0%, rgba(161, 214, 210, 1) 50%, rgba(104, 217, 204, 1) 100%);
}
.tilt {
  width: 200px;
  animation: tiltSmooth 5s ease-in-out infinite;
  transform-origin: center;
  user-select: none;
}

.card {
  box-shadow: 0px 0px 1px #f2f2f2 !important;
  border: 1px solid #eee;
}

.container {
  max-width: 960px !important;
}

.buttons .button:hover {
  opacity: 0.8;
  transition: all 0.1s;
}

.boxed-title {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(to right, #f7faf9, #ffffff);
  color: #333;
  border-radius: 6px;
  font-weight: normal !important;
  margin-bottom: 1.5rem;
  text-align: left;
  
}

.navbar-item:hover {
  background-color: transparent !important;
  color: inherit !important;
}

.navbar {
	flex-shrink: 0 !important;
}

.faq-item {
  border-bottom: 1px solid #f9f9f9;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.5rem;
  cursor: pointer;
  position: relative;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f0f2f1;
}

.faq-item.active .faq-question {
  background: #e6f7f1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  background: #fafafa;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1rem 1.5rem;
}
.toggle-icon {
  position: absolute;
  right: 1.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #4caf9f;
}

.faq-item.active .toggle-icon {
  content: "-";
}

footer.footer {
  padding-bottom: 3rem;
}

.footer a {
  color: #555 !important;
}

.footer-section {
  padding: 1.5rem;
  border-right: 1px solid #e0e0e0;
}

.footer-section:last-child {
  border-right: none;
}

.footer-link:hover {
  color: #24886e !important;
  transition: all 0.6s;
}

.social-icons .icon {
  margin-right: 10px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons .icon:hover {
  transform: scale(1.2);
  color: #24886e !important;
}

.footer .content p {
  color: #7a7a7a;
}

@media (min-width: 1024px) {
  .navbar-item.has-dropdown:hover .navbar-dropdown {
    display: block;
  }
}

@media (max-width: 1023px) {
  .navbar-item.has-dropdown .navbar-dropdown {
    display: none;
  }

  .navbar-item.has-dropdown.is-active .navbar-dropdown {
    display: block;
  }

  .columns {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero {
    border-radius: 0 !important;
  }

  .faq-container {
    padding: 0 0.75rem;
  }
  
   .urun {
    padding: 0 0.75rem;
  }
  
  .mobilen {
    padding: 0 0.75rem;
  }

  .actions-container, .tabs, .tab-content {
    padding: 0 0.75rem;
  }
  .mobile-boxed, .notif-boxed, .destek-t{
    margin: 0 0.75rem;
  }

  .boxed-title {
  width: calc(100% - 1.5rem); /* columns negatif marginine göre */
  margin: 0 auto 1.5rem auto;  /* yatay ortalama */
}
  .footer .column {
    padding: 1rem 0rem !important;
  }
}

@media screen and (min-width: 1216px) {
  .container {
    max-width: 1152px;
     !important;
  }
}

@media screen and (max-width: 768px) {
  .footer-section {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
  }

  .footer-section:last-child {
    border-bottom: none;
  }
}

@keyframes tiltSmooth {
  0% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}