:root {
  --primary-color: #5f14a6;
  --secondary-color: #fdcd66;
  --font-family: 'Poppins', sans-serif;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
}

/* Menü */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: var(--font-family);
  text-decoration: none;
  color: #333;
  position: relative;
  transition: color 0.3s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s;
}
.main-nav a:hover {
  color: var(--primary-color);
}
.main-nav a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: transform 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
   max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 1rem 2rem;
    z-index: 999;
  }
  .main-nav.open {
    /* Menü içeriğine göre bu değeri ayarlayabilirsin */
    max-height: 400px;
  }

  .hamburger {
    display: flex;
  }
}
/* Hero Bölümü */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(95, 20, 166, 0.6); /* Mor overlay */
  z-index: 2;
  animation: pulseOverlay 8s ease-in-out infinite;
}

@keyframes pulseOverlay {
  0%, 100% { background: rgba(95, 20, 166, 0.6); }
  50%      { background: rgba(95, 20, 166, 0.4); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-family: var(--font-family);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content .cta-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-family);
  font-size: 1.1rem;
  color: #fff;
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-content .cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--secondary-color);
}

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

/* Responsive ayar */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content .cta-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}
/* Services Section */
.services-section {
  padding: 6rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-family: var(--font-family);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientText 6s ease infinite;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  border: 2px solid transparent;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  border-color: var(--secondary-color);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.service-card h3 {
  font-family: var(--font-family);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
/* Portfolio Section */
.portfolio-section {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
}

.portfolio-section .section-title {
  /* Aynı gradientText animasyonu */
  font-family: var(--font-family);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientText 6s ease infinite;
}

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transform: scale(0.95);
  transition: transform 0.4s, box-shadow 0.4s;
}

.portfolio-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Hover efektleri */
.portfolio-item:hover {
  transform: scale(1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 31, 31, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.3); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.lightbox video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-container {
    gap: 1rem;
  }
  .play-icon {
    font-size: 2.5rem;
  }
}
/* About Section */
.about-section {
  padding: 6rem 2rem;
  background: #f4f4f4;
}

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

.about-image {
  flex: 1 1 400px;
  animation: fadeInRight 1s ease-out;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1 1 400px;
  animation: fadeInLeft 1s ease-out;
}

.about-text .section-title {
  font-family: var(--font-family);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  /* gradientText animasyonu tekrar kullanılıyor */
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientText 6s ease infinite;
}

.about-text p {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-image,
  .about-text {
    animation-duration: 0.8s;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
}

.testimonials-section .section-title {
  /* Önceki gradientText animasyonu */
  font-family: var(--font-family);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientText 6s ease infinite;
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

/* Scrollbar gizleme */
.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 300px;
  background: #f9f9f9;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  scroll-snap-align: center;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.testimonial-card p {
  font-family: var(--font-family);
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Alıntı işareti efekti */
.testimonial-card p::before {
  content: "“";
  font-size: 3rem;
  color: var(--secondary-color);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.2;
}

.testimonial-card h4 {
  font-family: var(--font-family);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.testimonial-card span {
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-slider {
    gap: 1rem;
  }
  .testimonial-card {
    flex: 0 0 250px;
    padding: 1.5rem 1rem;
  }
}
/* Contact Section */
.contact-section {
  padding: 6rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.contact-section .section-title {
  /* Önceki gradientText animasyonu */
  font-family: var(--font-family);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientText 6s ease infinite;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: var(--font-family);
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(95,20,166,0.3);
  outline: none;
}

.submit-btn {
  align-self: center;
  padding: 0.75rem 2.5rem;
  font-family: var(--font-family);
  font-size: 1.1rem;
  color: #fff;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: left 0.4s;
  z-index: 0;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(253,205,102,0.5);
}

.submit-btn:hover::after {
  left: 0;
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 480px) {
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem 1rem;
  }
  .submit-btn {
    padding: 0.6rem 2rem;
    font-size: 1rem;
  }
}/* ======= FOOTER – SON HAL ======= */
.site-footer {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 4rem 2rem 2rem;
  border-top: 4px solid var(--secondary-color);
  animation: fadeInUp 1s ease-out;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo-img {
  width: 100px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.footer-logo-img:hover {
  opacity: 1;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.footer-nav li {
  margin: 0;
}
.footer-nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-nav a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.3s;
}
.footer-social a:hover {
  transform: scale(1.2);
  color: var(--secondary-color);
}

.footer-info {
  text-align: right;
  font-family: var(--font-family);
  font-size: 0.9rem;
}
.footer-info p {
  margin: 0.3rem 0;
  opacity: 0.9;
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  opacity: 0.7;
}

/* küçük ekran footer ayarı */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-info {
    text-align: center;
  }
}
/* Loader Overlay */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3000;
}
/* style.css içine ekleyin */


.loader-text {
  font-family: var(--font-family);
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
  text-align: center;
  padding: 0 1rem;
}

.loader-logo {
  font-family: var(--font-family);
  font-size: 3rem;
  color: var(--secondary-color);
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 2s;
}

.loader-video {
  width: 300px;
  margin-top: 1.5rem;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Sayfa içeriğini önce gizle */
.page-content {
  display: none;
}

/* Loader fade-out */
#loader.fade-out {
  animation: fadeOut 0.8s forwards;
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; visibility: hidden; }
}
/* Skip (Çarpı) Butonu */
.loader-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 4rem;
  color: var(--primary-color);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3100;
  transition: transform 0.2s;
}
.loader-close:hover {
  transform: scale(1.2);
}

/* Video zaten tanımlı, ama opacity animasyonunu yenilersek */
.loader-video {
  width: 300px;
  margin-top: 1.5rem;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Loader fade-out ve page-content gösterme */
/* Mevcut stil: #loader.fade-out, .page-content */
/* Responsive Loader Overlay */

/* Büyük tablet ve altı */
@media (max-width: 768px) {
  .loader-text {
    font-size: 1.75rem;
    padding: 0 0.5rem;
  }
  .loader-logo {
    font-size: 2.5rem;
  }
  .loader-video {
    width: 70vw;
    max-width: 500px;
  }
  .loader-close {
    font-size: 2rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* Mobil cihazlar */
@media (max-width: 480px) {
  .loader-text {
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }
  .loader-logo {
    font-size: 2rem;
  }
  .loader-video {
    width: 90vw;
    max-width: 350px;
    margin-top: 1rem;
  }
  .loader-close {
    font-size: 1.5rem;
    top: 0.5rem;
    right: 0.5rem;
  }
}
/* Logo Image Styles */

/* Loader Logo */
.loader-logo-img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: logoPulse 2.5s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}

/* Header Logo */
.logo-img {
  width: 120px;
  height: auto;
  transition: transform 0.3s, filter 0.3s;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 8px rgba(95, 20, 166, 0.5));
}

/* Footer Logo */
.footer-logo-img {
  width: 100px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-logo-img:hover {
  opacity: 1;
}


@media (max-width: 768px) {
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo ve hamburger arası esnek boşluk */
    padding: 0.75rem 1rem;
    position: relative;             /* mutlak konumlandırmalı açılır menü için */
  }

  .logo-img {
    width: 80px;  /* isteğe göre ayarla */
  }

  .hamburger {
    display: flex;
    margin: 0;    /* kenardan sıfır boşluk */
  }

  /* Açık/kapalı menü hali */
  .main-nav {
    display: none;            /* default gizli */
    position: absolute;       /* header-container’a göre pozisyon alacak */
    top: 100%;                /* header’ın hemen altı */
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
  }
  .main-nav.open {
    display: flex;            /* open sınıfı geldiğinde göster */
  }
}
@media (max-width: 768px) {
  /* Header kapsayıcıyı tam genişlik yap, ortalamayı kaldır */
  .site-header .header-container {
    max-width: 100%;
    margin: 0;                    /* auto’yu iptal et */
    padding: 0.75rem 1rem;        /* daraltılmış padding */
    justify-content: flex-start;  /* sola yasla */
  }

  /* Logo küçült */
  .site-header .logo-img {
    width: 80px;
  }

  /* Hamburger’ı hemen logo’nun yanında tut */
  .site-header .hamburger {
    margin-left: 1rem;   /* logo’dan 1rem uzakta */
  }
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
/* ======= RESPONSIVE HAMBURGER MENÜ ======= */
@media (max-width: 768px) {
  .header-container {
    position: relative; /* açılır menü için */
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    z-index: 999;
  }

  .main-nav.open {
    max-height: 500px; /* yeterince büyük bir değer ver */
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 1rem 2rem;
  }

  .main-nav li {
    margin: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== Footer Menüyü Dikey Yap ===== */
.footer-nav {
  display: block;           /* flex yerine block */
  margin: 1rem 0;           /* biraz boşluk üst/alt */
  padding: 0;
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;    /* her öğe arası mesafe */
}

.footer-nav a {
  display: inline-block;    /* tıklama kolaylığı */
  padding: 0.25rem 0;
}

/* Footer container’ı tüm genişlikte dikey yapsak da olur, istersen bırak
@media (min-width: 769px) {
  .footer-container {
    flex-direction: column;
    align-items: start;
  }
}
*/
/* FontAwesome ikonlarının kendi fontunu koru */
/* Footer düzeni */
.site-footer {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 3rem 2rem;
  border-top: 4px solid var(--secondary-color);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
}

/* Logo sütunu */
.footer-logo {
  flex: 1 1 150px;
}
.footer-logo-img {
  width: 100px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

/* Diğer sütunlar */
.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-family: var(--font-family);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #fff;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Küçük ekranlar için dikey hizalama */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo,
  .footer-column {
    width: 100%;
  }
  .footer-copy {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-logo-img {
    /* Orijinal boyutlarını koru: */
    width: 128px;
    height: 128px;

  }
}
/* default: yan videolar gizli */
.hero-side-video {
  display: none;
}

/* masaüstü (≥769px) için */
@media (min-width: 769px) {
  /* arka plan videosunu gizle */
  .hero-video {
    display: none;
  }
  /* hero-content’i flex ile yatay hizala */
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;            /* video-metin arası mesafe */
    max-width: 1200px;
    margin: 0 auto;
  }
  /* yan videoları göster ve dikey boyuta getir */
  .hero-side-video {
    display: block;
    width: auto;
    height: 60vh;         /* dikey görünüm için */
    object-fit: cover;
    border-radius: 8px;
  }
  /* metin bloğu sabit genişlik verirsen daha dengeli olur */
  .hero-text {
    max-width: 400px;
    text-align: center;
  }
}
/* Portfolio grid: her satırda 4 öğe */
.portfolio-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; /* öğeler arası boşluk */
}

/* Görsellerin orantılı durması için */
.portfolio-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* Telefon modunda (480px’e kadar) tek sütun */
@media (max-width: 480px) {
  .portfolio-container {
    grid-template-columns: 1fr !important;
  }
}
/* About bölümündeki logoyu biraz daha küçük yap */
.about-image img {
  width: 320px; /* İstediğin değere göre ayarla */
  height: auto;
}
/* Paketlerimiz Section */
.packages-section {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
}

.packages-section .section-title {
  font-family: var(--font-family);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientText 6s ease infinite;
}

.packages-image img {
  max-width: 30%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
@media (max-width: 480px) {
  .packages-image img {
    max-width: 100%; /* istediğin orana göre ayarla */
  }
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;       /* butonun kutusu */
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.3s;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button .whatsapp-icon {
  width: 28px;       /* ikon boyutu */
  height: 28px;
  display: block;
}
.portfolio-video-wrapper {
  text-align: center;
  margin-top: 1.5rem;
  padding-bottom: 33px;
}

.portfolio-play-btn {
  background: var(--secondary-color);
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.portfolio-play-btn:hover {
  transform: scale(1.05);
}
