﻿
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #111;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

header {
  background: #000;
  padding: 20px 0;
  text-align: center;
  position: -webkit-sticky; 
  position: sticky; 
  top: 0; 
  z-index: 10; 
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

header .logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6600;
}

header .logo span {
  color: #fff;
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #ff6600;
  transform: translateY(-5px);
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transition: width 0.3s;
}

.nav-menu ul li a:hover::after {
  width: 100%;
}


.hero {
  position: relative;
  height: 100vh;
  background: url('futbol.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  margin-bottom: 20px;
  animation: fadeInDown 1.5s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
  animation: fadeInUp 1.5s ease;
}

.hero .btn-hero {
  padding: 12px 30px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, #ff6600, #ff0066);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.hero .btn-hero:hover {
  background: linear-gradient(90deg, #ff8800, #ff2288);
  transform: translateY(-3px);
}


.prices {
  padding: 50px 20px;
  text-align: center;
  background: #1c1c1c;
}

.prices h2 {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.card h3 {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #ff6600;
}

.card .price {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ff8800;
}

.card .btn-card {
  background: linear-gradient(90deg, #ff6600, #ff0066);
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.card .btn-card:hover {
  background: linear-gradient(90deg, #ff8800, #ff2288);
  transform: translateY(-3px);
}


.features {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-item {
  background: #1c1c1c;
  padding: 25px;
  border-radius: 10px;
  width: 220px;
  font-size: 1.2rem;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

.feature-item:hover {
  background: #333;
  transform: translateY(-5px);
}

body {
  background-color: #0d0d0d;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 300px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}

.card:nth-child(2) {
  animation-delay: 0.4s;
}

.card:nth-child(3) {
  animation-delay: 0.6s;
}

.card:nth-child(4) {
  animation-delay: 0.8s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgb(255, 241, 232);
}

.card h3 {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 20px;
  font-weight: bold;
}

.card .price {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  font-size: 1rem;
  color: #ddd;
}

.features-list li {
  margin-bottom: 10px;
}

.features-list span {
  color: #ff6600;
  font-size: 1.2rem;
  margin-right: 10px;
}

.btn-card {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #ff6600, #ff0066);
  border-radius: 30px;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s ease;
}

.btn-card:hover {
  background: linear-gradient(90deg, #ff8800, #ff2288);
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.faq {
  background: #222;
  padding: 50px 20px;
  text-align: center;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-container details {
  background: #333;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  transition: background 0.3s;
}

.faq-container details:hover {
  background: #444;
}

.faq-container summary {
  font-size: 1.3rem;
  color: #FFF;
  font-weight: bold;
  cursor: pointer;
}

.faq-container p {
  color: #ddd;
  padding: 10px 0;
}

/* Footer */
footer {
  background: #111;
  padding: 30px 20px;
  text-align: center;
  font-size: 1rem;
  color: #aaa;
  margin-top: 50px;
}

footer a {
  color: #ff6600;
  text-decoration: none;
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .prices .card-container {
    flex-direction: column;
    gap: 15px;
  }

  .feature-list {
    flex-direction: column;
  }
}
.slideshow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  animation: slideshow 20s infinite;
  opacity: 0.6; /* Daha şeffaf görünüm istersen */
}

header .container {
  position: relative;
  z-index: 1;
}

@keyframes slideshow {
  0% { background-image: url('img/3.png'); }
  12.5% { background-image: url('img/2.jpg'); }
  25% { background-image: url('img/1.jpeg'); }
  37.5% { background-image: url('img/4.png'); }
  50% { background-image: url('img/5.png'); }
  62.5% { background-image: url('img/6.jpg'); }
  75% { background-image: url('img/7.png'); }
  87.5% { background-image: url('img/8.png'); }
  100% { background-image: url('img/3.png'); }
}

.about {
  background: #1c1c1c;
  padding: 60px 20px;
  color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.about-text {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 15px;
  color: #ddd;
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 80%;
  }
}

.stats-section {
  background: #111;  
  padding: 60px 20px;
  text-align: center;
}


.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;  
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background: #1e1e1e; 
  padding: 30px;
  border-radius: 10px;  
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

.stat-box:hover {
  transform: translateY(-10px);  
  box-shadow: 0 8px 30px rgba(247, 229, 217, 0.832);  
}

.stat-icon {
  font-size: 48px; 
  margin-bottom: 20px;
  color: #ff6600; 
}


.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #fff; 
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #ddd;  
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    width: 80%; 
  }
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}


.whatsapp-icon img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease-in-out; 
}


.whatsapp-button:hover .whatsapp-icon img {
  transform: scale(1.2); 
}

.whatsapp-message {
  display: none; 
  position: absolute;
  bottom: 80px; 
  left: -55%;
  transform: translateX(-50%);
  background-color:#25D366;
  color: black;
  width: 200px;
  padding: 15px 25px; 
  border-radius: 10px; 
  font-size: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease; 
  transform: translateX(-50%) scale(0.8); 
}


.whatsapp-button:hover .whatsapp-message {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1); 
}

.service-info {
  background: #1c1c1c;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.service-info h2 {
  font-size: 2.5rem;
  color: #fff3ec;
  margin-bottom: 40px;
  font-weight: bold;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-card {
  background: #333;
  padding: 20px;
  border-radius: 15px;
  width: 400px; 
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background-color: #444;
}

.service-card h3 {
  font-size: 1.6rem; 
  color: #ff6600;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-card p {
  font-size: 1rem; 
  color: #ddd;
  line-height: 1.4;
  margin-bottom: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .service-info h2 {
    font-size: 2rem;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 85%;
    margin-bottom: 20px;
  }
}
.testimonials-horizontal {
  background: #1a1a1a;
  padding: 40px 20px;
  color: #fff;
}

.testimonials-horizontal .section-title {
  text-align: center;
  color: #ff6600;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.testimonial-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.testimonial-scroll::-webkit-scrollbar {
  height: 8px;
}

.testimonial-scroll::-webkit-scrollbar-thumb {
  background-color: #ff6600;
  border-radius: 10px;
}

.testimonial-box {
  flex: 0 0 auto;
  width: 300px;
  height: 130px;
  background: #2c2c2c;
  border-radius: 12px;
  padding: 15px 20px;
  scroll-snap-align: start;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}



.testimonial-box p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.4;
  margin: 0;
}

.testimonial-box span {
  font-size: 0.9rem;
  color: #ff6600;
  font-weight: bold;
  align-self: flex-end;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 0 20px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-hero {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .card-container,
  .feature-list,
  .stats-container,
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .stat-box,
  .service-card {
    width: 85%;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-image img {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .testimonial-scroll {
    gap: 10px;
  }

  .testimonial-box {
    width: 80%;
  }
}



@media (max-width: 480px) {
  header .logo {
    font-size: 1.5rem;
  }

  .nav-menu ul {
    gap: 10px;
  }

  .nav-menu ul li a {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn-hero {
    font-size: 0.95rem;
    padding: 8px 18px;
  }

  .card,
  .stat-box,
  .service-card {
    width: 95%;
    padding: 20px;
  }

  .feature-item {
    width: 90%;
  }

  .about-text {
    font-size: 1rem;
  }

  .faq-container details {
    font-size: 0.95rem;
  }

  .testimonial-box {
    width: 90%;
    height: auto;
  }

  .whatsapp-icon img {
    width: 50px;
    height: 50px;
  }

  .whatsapp-message {
    width: 180px;
    font-size: 14px;
  }
}


.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}


@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-left: auto; 
  }
  

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    text-align: center;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu ul li a {
    font-size: 1.2rem;
    padding: 10px 0;
  }
}

