/* === body overflow olmaması için === */

html, body {
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
.swiper {
    overflow: hidden;
}
.swiper-slide {
    width: 100% !important;
}



:root {
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Bebas Neue', sans-serif;
}
/* === GLOBAL === */
body {
    font-family: var(--font-primary);
    background-color: var(--color-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

[data-theme="dark"] body {
    background-color: var(--color-dark);
    color: var(--text-light);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: #ffff;
    text-transform: uppercase;
    margin: 0;
}

/* === UTILITY CLASSES === */
.bg-main    { background-color: var(--color-main); }
.bg-side    { background-color: var(--color-side); }
.bg-light   { background-color: var(--color-light); }
.bg-dark    { background-color: var(--color-dark); }

.text-main  { color: var(--text-main); }
.text-side  { color: var(--color-side); }
.text-light { color: var(--text-light); }
.text-dark  { color: var(--text-dark); }

.font-primary   { font-family: var(--font-primary); }
.font-secondary { font-family: var(--font-secondary); }

.transition     { transition: all 0.3s ease; }

/* === NAVIGATION === */
.bg-topbar {
    background-color: var(--color-main);
}
[data-theme="dark"] .bg-topbar {
    background-color: var(--color-dark);
}
.header-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}
.header-link:hover {
    color: var(--color-side);
}
.mobile-toggle {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
}


/* === THEME SWITCH (iOS Style) === */
.theme-toggle {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}
.theme-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-bg {
    background-color: #ccc;
    border-radius: 9999px;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s ease;
}
.dot {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.theme-toggle input:checked ~ .toggle-bg {
    background-color: var(--color-side);
}
.theme-toggle input:checked ~ .dot {
    transform: translateX(26px);
    background-color: var(--color-main);
}
.service-box img {
  width: 100px;
  height: 100px;
   filter: brightness(0) invert(1);
  margin-bottom: 10px;
}

.service-box {
  text-align: center;
  padding: 20px;
  color: white;
}

.service-title {
  font-size: 34px;
  margin-top: 10px;
}

.service-description {
  font-size: 14px;
  margin-top: 5px;
}

.footer {
  background-color: #001d49;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Barlow', sans-serif;
}
.footer-left{
  max-width: 600px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer h2, .footer h4 {
  font-size: 20px;
  color: #b27860;
  margin-bottom: 10px;
}

.footer p, .footer a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #d8b88f;
}

.footer .social-icons {
  margin-top: 15px;
}

.footer .social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.footer .social-icons a img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.font-service {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* Pattern arka plan */
.pattern-bg {
    background-image: url('/images/pattern.svg'); /* desen dosyan buraya */
    background-repeat: repeat;
    background-size: 200px;
}

/* Dalga SVG yukarı taşmasın */
.pattern-bg svg {
    display: block;
}


.hidden-soft {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.visible-soft {
    opacity: 1;
    pointer-events: auto;
}
