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

/* Font Yükleme */
@font-face {
  font-family: 'Lobster';
  src: url('../fonts/Lobster.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Global Değişkenler */
:root {
  --font-default: 'Lobster', 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";
  --font-primary: 'Lobster', sans-serif;
  --font-secondary: 'Lobster', sans-serif;
  
  --color-default: #000000;
  --color-background: #ffffff;
  --color-primary: #feb900;
  --color-secondary: #ff903f;
  
  scroll-behavior: smooth;
}

/* Body Stili */
body {
  font-family: var(--font-default);
  background: var(--color-background);
  color: var(--color-default);
  overflow-x: hidden;
}

/* Bağlantılar */
a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
}

/* Başlık Stilleri */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
}

/* Yükleme Ekranı */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Yükleme Spinner */
.loading-spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid var(--color-secondary);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

/* Animasyon */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Desktop Header */
.desktop-header {
  position: relative;
  z-index: 1;
  background: transparent;
}
.desktop-header .navbar {
  padding: 0.5rem 0;
}
.desktop-header .navbar .container {
  padding: 0 75px;
}
.desktop-header .nav-content {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.desktop-header .nav-link {
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  padding: 5px 10px;
  text-decoration: none;
}
.desktop-header .nav-link:hover {
  color: #ff6b6b;
}
.desktop-header .navbar-brand img {
  display: block;
  margin: 0 auto;
}

.desktop-header .btn-order {
  background: #ff6b6b;
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, transform 0.3s;
  
  i {
    font-size: 20px;
    color: #fff;
  }
  
}
.desktop-header .btn-order:hover {
  background: #fd4343;
  transform: scale(1.1);
}

/* Mobile Header */
.mobile-header {
  position: relative;
  z-index: 3;
  display: none;
  padding: 10px 0;
}
.mobile-header .mobile-logo img {
  display: block;
}
.mobile-header .mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-header .mobile-menu-btn .bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 15px;
}

.mobile-menu-panel .mobile-menu-list .btn-order {
  background: #ff6b6b;
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  i {
    font-size: 20px;
    color: #fff;
  }
}


/* Mobile Menü Paneli */
.mobile-menu-panel {
  background: #000000f0;
  border-radius: 0 0 25px 25px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  .mobile-logo img {
    position: absolute;
    top: 25px;
    left: 25px;
  }
}
.mobile-menu-panel.active {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu-panel .mobile-menu-close {    
  display: flex;
  right: 20px;
  top: 20px;
  position: absolute;
  background: #ff6b6b;
  border-radius: 15px;
  width: 50px;
  height: 50px;
  color: #fff;
  border: none;
  font-size: 75px;
  padding: 5px 0px 10px 0px;
  cursor: pointer;
  float: right;
  margin: 10px;
  justify-content: center;
  align-items: center;
}
.mobile-menu-panel .mobile-menu-list {
  list-style: none;
  padding: 150px 35px 20px;
  margin: 0;
}
.mobile-menu-panel .mobile-menu-list li {
  margin-bottom: 15px;
}
.mobile-menu-panel .mobile-menu-list li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
  
  &:hover {
    color: #ff6b6b;
    transform: scale(1.1);
  }
}

/* Video Bölümü (Tam Genişlikte) */
.video-fallback{
  display: block; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  z-index: 2;
}
.video-section {
  position: absolute;
  z-index: 0;
  width: 100%;
  top: 0;
}
.video-section .container-fluid {
  padding: 0;
}
.video-wrapper {
  position: relative;
}
.video-content {
  position: relative;
  text-align: center;
}
.video-content .section-title {
  color: #ff6b6b;
  margin-bottom: 20px;
}
.embed-responsive {
  position: relative;
  z-index: 1;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.player {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  z-index: 1;
}
.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Video Overlay: Tıklamaları engellemek için */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  z-index: 5;
  background: #00000050;
}

.carousel-control-next {
  border-top-left-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 0;
}

.carousel-control-prev {
  border-top-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 8px;
}

.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 1;
}

/* Kampanya Slider */
.campaigns-section {
  margin-bottom: 0;
  position: relative;
  background: transparent;
  z-index: 1;
  padding: 0;
}
.campaigns-section .campaign-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  padding: 15px 35px;
  border-radius: 8px;
}
.campaigns-section .campaign-card img {
  width: 120px;
  border-radius: 4px;
  object-fit: cover;
}
.campaigns-section .campaign-card .campaign-info h4 {
  color: #ff6b6b;
  margin: 0 0 5px;
  font-size: 1.5rem;
}
.campaigns-section .campaign-card .campaign-info p {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}
.campaigns-section .carousel-control-prev-icon,
.campaigns-section .carousel-control-next-icon {
  color: #fff;
}

/* Reviews Bölümü */
.reviews-section .section-title {
  color: #ff6b6b;
  margin-bottom: 30px;
}
.reviews-section .review-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.reviews-section .review-card .review-text {
  font-style: italic;
  margin-bottom: 10px;
}
.reviews-section .review-card .review-rating {
  font-size: 1.5rem;
  color: #ff6b6b;
  margin-bottom: 5px;
}
.reviews-section .review-card .review-author {
  font-weight: bold;
}

.contact-section {
  position: relative;
  z-index: 1;
}

/* Contact & Konum Bölümü */
.contact-section h2.section-title {
  color: #ff6b6b;
  margin-bottom: 30px;
  text-align: center;
}
.contact-section h4 {
  text-align: center;
  color: #ff6b6b;
  margin-bottom: 15px;
  margin-top: 15px;
}
.contact-section .map-responsive {
  overflow: hidden;
  padding-bottom: 70%;
  position: relative;
  height: 0;
}
.contact-section .map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-section form .form-label {
  font-weight: 600;
}
.contact-section form .form-control {
  border-radius: 4px;
  border: 1px solid #ccc;
}
.contact-section form .form-control:focus {
  border-color: #ff6b6b;
  box-shadow: none;
}
.contact-section form button {
  background-color: #ff6b6b;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.contact-section form button:hover {
  background-color: #ee6060;
}

/* Footer */
.footer-section {
  padding-top: 40px;
}
.footer-section .footer-logo img {
  margin-bottom: 10px;
}
.footer-section p {
  font-size: 1.2rem;
}
.footer-section .footer-links a,
.footer-section .footer-right-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  margin: 0 5px;
  
}
.footer-section .footer-links a:hover,
.footer-section .footer-right-links a:hover {
  color: #ff6b6b !important;
}
.footer-section .callback-section h5 {
  margin-bottom: 10px;
  color: #ff6b6b;
}
.footer-section .callback-section .phone-callback {
  display: flex;
}
.footer-section .callback-section .phone-callback .form-control {
  border-right: 0;
  border-radius: 4px 0 0 4px;
}
.footer-section .callback-section .phone-callback button {
  border-radius: 0 4px 4px 0;
  padding: 0 15px;
  background-color: #ff6b6b;
  border: none;
  transition: background-color 0.3s ease;
}
.footer-section .callback-section .phone-callback button:hover {
  background-color: #ee6060;
}
.footer-section .container {
  border-top: 1px solid #444;
  padding-top: 20px;
}

/* Responsive Ayarlamalar */
@media (max-width: 995px) {
  .navbar-nav,
  .nav-left,
  .nav-right {
    text-align: center;
  }
  .footer-section .callback-section .phone-callback {
    flex-direction: column;
  }
  .footer-section .callback-section .phone-callback input,
  .footer-section .callback-section .phone-callback button {
    width: 100%;
    margin-bottom: 10px;
  }
  .desktop-header { display: none; }
  .mobile-header { display: block; }
}
@media (min-width: 400px) and (max-width: 499px) {
  .campaigns-section {
    margin-bottom: 50px;
  }
}

@media (min-width: 500px) and (max-width: 599px) {
  .campaigns-section {
    margin-bottom: 100px;
  }
}

@media (min-width: 600px) and (max-width: 699px) {
  .campaigns-section {
    margin-bottom: 150px;
  }
}

@media (min-width: 700px) and (max-width: 799px) {
  .campaigns-section {
    margin-bottom: 200px;
  }
}

@media (min-width: 800px) and (max-width: 899px) {
  .campaigns-section {
    margin-bottom: 250px;
  }
}

@media (min-width: 900px) and (max-width: 999px) {
  .campaigns-section {
    margin-bottom: 310px;
  }
}

@media (min-width: 1000px) and (max-width: 1099px) {
  .campaigns-section {
    margin-bottom: 330px;
  }
}

@media (min-width: 1100px) and (max-width: 1199px) {
  .campaigns-section {
    margin-bottom: 380px;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .campaigns-section {
    margin-bottom: 425px;
  }
}

@media (min-width: 1300px) and (max-width: 1399px) {
  .campaigns-section {
    margin-bottom: 475px;
  }
}

@media (min-width: 1400px) and (max-width: 1499px) {
  .campaigns-section {
    margin-bottom: 525px;
  }
}

@media (min-width: 1500px) and (max-width: 1599px) {
  .campaigns-section {
    margin-bottom: 600px;
  }
}

@media (min-width: 1600px) and (max-width: 1699px) {
  .campaigns-section {
    margin-bottom: 650px;
  }
}

@media (min-width: 1700px) and (max-width: 1799px) {
  .campaigns-section {
    margin-bottom: 700px;
  }
}

@media (min-width: 1800px) {
  .campaigns-section {
    margin-bottom: 775px;
  }
}
