/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #b82525; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #421bcf; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff; /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
  --contrast-color: #ffd700;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

:root {
  --analogous-color-0: #f8d08e;
  --analogous-color-1: #F7E7D4;
  --analogous-color-2: #FB8604;
  --analogous-color-3: #FCBA12;
  --analogous-color-4: #FDED2A;
  --analogous-color-5: #343009;
  --analogous-color-6: #6b3f0d;
  --analogous-color-7: #c89466;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(40, 58, 90, 0.9);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
    -moz-transition-delay: 0 !important;
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.custom-h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--analogous-color-6);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.custom-h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--analogous-color-6);
  border-radius: 2px;
}

.gradient-underline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.gradient-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#e74c3c), to(#3498db));
  background: -webkit-linear-gradient(left, #e74c3c, #3498db);
  background: -moz-linear-gradient(left, #e74c3c, #3498db);
  background: linear-gradient(90deg, #e74c3c, #3498db);
  border-radius: 2px;
}

.icon-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.icon-heading i {
  margin-right: 10px;
  color: #e74c3c;
}

.framed-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  padding: 10px 20px;
  border: 4px solid #e74c3c;
  display: inline-block;
  margin-bottom: 30px;
  border-radius: 10px;
}

.bg-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #3498db;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 30px;
  border-radius: 10px;
}

.shadow-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.gradient-underline-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.gradient-underline-h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#6b3f0d), to(#FB8604));
  background: -webkit-linear-gradient(left, #6b3f0d, #FB8604);
  background: -moz-linear-gradient(left, #6b3f0d, #FB8604);
  background: linear-gradient(90deg, #6b3f0d, #FB8604);
  border-radius: 2px;
}

.h1-page {
  color: var(--analogous-color-2);
}

.topbar {
  font-size: 0.9rem;
  background-color: var(--analogous-color-6);
}

.topbar a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.topbar a:hover {
  opacity: 0.8;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #0d6efd !important;
}

.dropdown-menu {
  border: none;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.hero-section {
  padding: 3rem 0;
  background-color: var(--analogous-color-0);
}

.min-vh-75 {
  min-height: 50vh;
}

.hero-section h1 {
  color: #212529;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: #6c757d;
  font-size: 1.25rem;
}

.btn-primary {
  padding: 0.75rem 2rem;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-primary:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
  }
  .hero-section img {
    margin-top: 2rem;
  }
}
.hero-section .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@-moz-keyframes up-down {
  0% {
    -moz-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.faq {
  background-color: var(--analogous-color-0);
}

.logo-slider {
  padding: 4rem 0;
}

.logo-slider h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
  color: #1a1a1a;
}

.swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
}

.logo-item {
  max-width: 150px;
  height: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.logo-item:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 991.98px) {
  .logo-slider {
    padding: 3rem 0;
  }
  .logo-item {
    max-width: 120px;
  }
}
.category {
  background-color: white;
}

.faq {
  background-color: var(--analogous-color-0);
}

.hero-page {
  background-color: var(--analogous-color-1);
}

.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.parallax-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    min-height: 400px;
  }
  .parallax-content h2 {
    font-size: 2.5rem;
  }
  .parallax-content p {
    font-size: 1.1rem;
  }
}
.text-remix {
  width: 24px;
  height: 24px;
  fill: #17b446;
}

.about-icon {
  color: var(--analogous-color-2);
}

.detail-page-inner {
  color: black;
}

.detail-page-inner h3 {
  color: var(--analogous-color-6);
}

.footer {
  background-color: var(--analogous-color-6);
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer p {
  color: #b3b3b3;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-social a:hover {
  background-color: #0d6efd;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #b3b3b3;
}

@media (max-width: 991.98px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer h5 {
    margin-top: 1.5rem;
  }
}


/***** mobile whatsapp ve arrowup buttons *******/

.fixed-buttons {
    position: fixed;
    top: 50%; /* Dikeyde ortala */
    right: 20px; /* Sağ taraftan 20px boşluk */
    transform: translateY(-50%); /* Dikeyde ortala */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Butonlar arası boşluk */
    z-index: 1000; /* Diğer içeriklerin üzerine gelsin */
}

.fixed-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Buton genişliği */
    height: 50px; /* Buton yüksekliği */
    border-radius: 50%; /* Yuvarlak butonlar */
    text-decoration: none;
    color: #333; /* Buton metin rengi */
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn i{
    color: white;
}

.phone-btn {
    background-color: #0d6efd;
}
.phone-btn i{
    color: white;
}

.scroll-top-btn {
    background-color: #fac14f;
    display: none; /* Başlangıçta gizli */
}

.scroll-top-btn i{
    color: white;
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


/******* kategory *****/

.card{
    background-color: transparent;
    border: none;
}
.card-img-top {
    /*object-fit: cover;*/
    width: auto;
    height: auto;
    padding: 10px;
}

/******* custom bottons *****/

/* Minimal buton stili */
.btn-minimal {
    padding: 8px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #3c3737 !important;
    background-color: #fac14f !important;
    border: 1px solid #bd732a !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

/* Hover efekti */
.btn-minimal:hover {
    background-color: #e89e10 !important;
    border-color: #ccc !important;
}

/* Active durumu */
.btn-minimal:active {
    background-color: #dee2e6 !important;
}

/* Focus durumu */
.btn-minimal:focus {
    outline: 2px solid rgba(0, 123, 255, 0.3) !important;
    outline-offset: 1px;
}

/* Küçük boyut */
.btn-minimal.sm {
    padding: 4px 12px !important;
    font-size: 12px !important;
}


/*************/

.mobile-full-width-image {
    width: 100%;
    height: auto;
}

.sss{
    background-color: rgba(243, 220, 185, 0.47);
}
.footer-bg{
    background-color: #7a4f08;
}
