/**
 * Template Name: Nova
 * Updated: Sep 23 2025 with Bootstrap v5.3.3
 * Author: BootstrapMade.com
 * License: https://bootstrapmade.com/license/
 */

/* Fonts */
:root {
  --default-font: "Roboto", system-ui, sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #1b2f45;
  --heading-color: #1b2f45;
  --accent-color: #ff0000;
  --surface-color: #f8f9fa;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #ff0000;
  --nav-mobile-background-color: #1b2f45;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1b2f45;
  --nav-dropdown-hover-color: #ff0000;
}

/* General Styling */
body {
  font-family: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
  color: #cc0000;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff; /* Hero metni için beyaz */
}

/* Buttons */
.btn-modern {
  background: linear-gradient(45deg, #ff0000, #cc0000);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  background: linear-gradient(45deg, #cc0000, #b30000);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* Header */
.header {
  background: rgba(27, 47, 69, 0.9);
  padding: 15px 0;
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(27, 47, 69, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .logo-img {
  max-height: 80px;
  transition: transform 0.3s ease;
}

.header .logo-img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .header .logo-img {
    max-height: 64px;
  }
}

/* Navigation Menu */
.navmenu ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.navmenu li {
  margin: 0 10px;
}

.navmenu a {
  color: var(--nav-color);
  font-family: var(--nav-font);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--nav-hover-color);
  background: rgba(255, 0, 0, 0.1);
  border-radius: 5px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
  }

  .navmenu ul {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nav-mobile-background-color);
    padding: 20px;
    transition: all 0.3s ease;
  }

  .navmenu a {
    color: #ffffff;
    padding: 10px;
    display: block;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  animation: fade 10s infinite;
}

@keyframes fade {
  0% { opacity: 0.5; }
  50% { opacity: 0.7; }
  100% { opacity: 0.5; }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 47, 69, 0.5);
  z-index: 1;
}

.hero .container {
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-title p {
  font-size: 1.1rem;
  color: #6c757d;
}

/* Why Us Section */
.why-us {
  padding: 80px 0;
}

.why-us .img-bg img {
  border-radius: 10px;
  max-height: 400px;
  object-fit: cover;
}

.why-us .swiper {
  padding: 40px 0;
}

.why-us .item {
  text-align: center;
  padding: 20px;
}

.why-us .item h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.why-us .item p {
  font-size: 1.1rem;
  color: #6c757d;
}

.why-us .swiper-button-prev,
.why-us .swiper-button-next {
  color: var(--accent-color);
}

.why-us .swiper-pagination-bullet {
  background: #6c757d;
}

.why-us .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/* Services Section */
.services {
  padding: 80px 0;
}

.services .service-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.services .service-item:hover {
  transform: translateY(-5px);
}

.services .icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-right: 15px;
}

.services .title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.services .description {
  font-size: 1rem;
  color: #6c757d;
}

.services .readmore {
  font-size: 1rem;
  font-weight: 600;
}

/* Kanal Listeleme Section */
.kanallar {
  padding: 80px 0;
}

.filter-form-modern {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-form-modern .form-control,
.filter-form-modern .form-select {
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
}

.filter-form-modern .form-control:focus,
.filter-form-modern .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

.card-modern {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.card-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.card-text {
  font-size: 1rem;
  color: #6c757d;
}

@media (max-width: 768px) {
  .card-img-wrapper {
    height: 150px;
  }
  .card-title {
    font-size: 1.2rem;
  }
}

/* Call To Action Section */
.call-to-action {
  padding: 80px 0;
  position: relative;
}

.call-to-action img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 47, 69, 0.5);
}

.call-to-action .container {
  position: relative;
  z-index: 1;
}

.call-to-action h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.call-to-action p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 20px;
  color: #ffffff;
}

/* Footer */
.footer {
  padding: 40px 0;
  background: var(--surface-color);
}

.footer .logo-img {
  max-height: 80px;
}

.footer .social-links a {
  background: var(--accent-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: background 0.3s ease;
}

.footer .social-links a:hover {
  background: #cc0000;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer .footer-links ul li {
  margin-bottom: 10px;
}

.footer .footer-links a {
  font-size: 1rem;
  color: #6c757d;
}

.footer .footer-links a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  border-top: 1px solid #dee2e6;
  padding-top: 20px;
  margin-top: 20px;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
}

#preloader::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 4px solid var(--accent-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll Top */
.scroll-top {
  background: var(--accent-color);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  bottom: 20px;
  right: 20px;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background: #cc0000;
}

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

/* Video Modal */
.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: none;
  background: linear-gradient(45deg, #ff0000, #cc0000);
  color: #ffffff;
}

.modal-title {
  font-family: var(--heading-font);
  font-weight: 700;
}

.modal-body {
  padding: 30px;
}

.intro-video {
  max-width: 100%;
  max-height: 400px;
  border-radius: 8px;
}

.form-check-label {
  font-size: 1rem;
  color: #1b2f45;
}

@media (max-width: 576px) {
  .intro-video {
    max-height: 200px;
  }
}