html, body {
  overflow-x: hidden;
}


/* ===== Navbar Genel Stil ===== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 30px;
  transition: background 0.3s ease, transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

/* Sayfa en üstteyken şeffaf navbar (blur yok) */
.navbar-transparent {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Scroll yapılınca blur ve arkaplan gelsin */
.navbar-blur {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}




/* Navbar konteyner */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px; /* Navbar yüksekliği sabitlenirse linkler kaymaz */
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  margin-right: 20px; /* LOGO ile linkler arasında boşluk */
}

.logo img {
  height: 120px; 
  margin-left: 20px;
}

/* Menü bağlantıları */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Menü linkleri */
.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Hover efekti */
.nav-links a:hover {
  color: #C1FF72; /* Neon yeşil */
}

/* Dil seçici */
.lang-switch {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

/* Dil düğmeleri */
.lang-btn {
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid #C1FF72;
  color: white;
  font-size: 14px;
  transition: background 0.3s ease;
}

.lang-btn:hover {
  background: #C1FF72;
  color: black;
}

/* Responsive (Mobil) için ayar) */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-end;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: 70px;
    right: 0;
    padding: 20px;
    display: none; /* Menü varsayılan gizli */
  }

  .nav-links.active {
    display: flex;
  }

  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Hamburger Butonu */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.651);
  cursor: pointer;
}

/* Mobilde göster */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.685);
    position: absolute;
    top: 70px;
    right: 0;
    padding: 20px;
    width: 200px;
    display: none;
    z-index: 999;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .lang-switch {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 70px; /* veya 60px */
    margin-left: 10px;
  }
}

/* Navbar başlangıçta görünsün */
#navbar.navbar-show {
  transform: translateY(0);
}

/* Scroll ile yukarıdan kaybolsun */
#navbar.navbar-hide {
  transform: translateY(-100%);
}









/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  background: url("../images/tepe.png") center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.788); /* Karanlık filtre */
  z-index: 1;
}

.hero-logo {
  z-index: 2;
  margin-bottom: 30px;
}

.hero-logo img {
  height: 200px;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-contact {
  background-color: #C1FF72;
  color: black;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-contact:hover {
  background-color: #a1e25f;
}

/* Mobilde logo gizle */
@media (max-width: 768px) {
  .hero-logo {
    display: none;
  }
}







/* ===== Comunidad Section ===== */
.community-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.community-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.community-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.community-text {
  max-width: 550px;
}

.community-text h6 {
  font-size: 14px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.community-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.community-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.community-buttons {
  display: flex;
  gap: 15px;
}

/* Ortalanmış butonlar için özel sınıf */
.community-buttons.center-buttons {
  justify-content: center;
}

@media (max-width: 768px) {
  .community-buttons {
    margin-top: 20px; /* 🧼 Görsel ile butonlar arasına boşluk */
  }
}


/* Butonlar */
.btn-outline {
  padding: 10px 22px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

.btn-arrow {
  padding: 10px 22px;
  background: none;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.btn-arrow::after {
  content: "→";
  margin-left: 5px;
  transition: margin 0.3s ease;
}

.btn-arrow:hover::after {
  margin-left: 10px;
}







/* ===== BENEFITS SECTION ===== */
.benefits-section {
  background: #0e1a2b;
  color: white;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-header h6 {
  font-size: 14px;
  color: #C1FF72;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.benefits-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefits-header p {
  font-size: 16px;
  color: #ccc;
}

/* Kart grubu */
.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Kartlar genel */
.benefit-card {
  background: #132339;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  flex: 1 1 0%;
  max-width: none;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-text {
  padding: 20px;
}

.card-text h5 {
  font-size: 13px;
  text-transform: uppercase;
  color: #C1FF72;
  margin-bottom: 5px;
}

.card-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-text p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

.card-text a {
  font-size: 14px;
  color: #C1FF72;
  text-decoration: none;
  font-weight: 500;
}

.card-text a:hover {
  text-decoration: underline;
}

/* Büyük kart (soldaki kart) */
.benefit-card.large-card {
  flex: 2 1 0%;
  flex-direction: row;
  min-height: 220px;
}

.benefit-card.large-card img {
  width: 45%;
  height: auto;
}

.benefit-card.large-card .card-text {
  width: 55%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .benefits-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-card.large-card {
    flex-direction: column; /* resim üstte, yazı altta */
    min-height: auto;
  }

  .benefit-card.large-card img {
    width: 100%;
    height: auto;
  }

  .benefit-card.large-card .card-text {
    width: 100%;
    padding: 15px;
  }

  .benefit-card {
    max-width: 100%;
  }

  .benefits-section {
    padding: 60px 20px;
  }

  .benefits-header h2 {
    font-size: 24px;
  }

  .benefits-header p {
    font-size: 14px;
  }

  .card-text p {
    font-size: 14px;
  }
}







/* ===== EVENTOS SECTION ===== */
.eventos-section {
  background: #0a0e0b; /* siyahımsı koyu zemin */
  color: #C1FF72; /* yazılar opak yeşil */
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.eventos-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #C1FF72;
}

.eventos-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.evento-card {
  background: transparent;
  max-width: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 350px;
  text-align: center;
}

.evento-card .icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.evento-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.evento-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
  min-height: 60px;
}


.btn-flat-green {
  font-size: 16px;
  font-weight: 500;
  color: #C1FF72;
  text-decoration: none;
  background: none;
  border: none;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.btn-flat-green:hover {
  text-decoration: underline;
  cursor: pointer;
}








.event-list-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  background-color: #0e1a2b;
  color: white;
}

/* ===== EVENT LIST SECTION ===== */
.event-list-section {
  background-color: #ffffff;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.event-list-container {
  max-width: 900px;
  margin: 0 auto;
}

.event-list-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a0e0b;
  text-align: center;
  margin-bottom: 60px;
}

.event-item {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 25px;
  padding: 20px;
  gap: 25px;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
}

.event-item:hover {
  background-color: #ebebeb;
}

.event-date {
  text-align: center;
  min-width: 80px;
}

.event-date .day {
  display: block;
  font-size: 14px;
  color: #333;
}

.event-date .number {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #000000;
  margin: 5px 0;
}

.event-date .month {
  display: block;
  font-size: 14px;
  color: #999;
}

.event-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0a0e0b;
}

.event-info p {
  font-size: 14px;
  color: #555;
}







.gallery-section {
  background: #0e1a2b;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #C1FF72;
}

.gallery-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90vw;
  max-height: 90vh;
  height: auto;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
}


.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.modal {
  backdrop-filter: blur(4px);
}





html {
  scroll-behavior: smooth;
}






/* GENEL TASARIM */
.contact-section {
  background-color: white;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: black;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0 150px;
}

.contact-form {
  flex: 1;
  min-width: 320px;
}

.contact-form h5.tagline {
  font-size: 12px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-form h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 14px;
  margin-bottom: 30px;
  color: #555;
}

.contact-form form label {
  display: block;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 8px;
}

.contact-form button {
  background-color: black;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* HARİTA */
.contact-map {
  flex: 1.3;
  min-width: 400px;
  max-width: 600px;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100% !important;
  height: 600px !important;
  border: 0;
}

/* NEWSLETTER GENEL */
.newsletter {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0 150px;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h4 {
  font-weight: bold;
  margin-bottom: 5px;
}

.newsletter-text p {
  font-size: 14px;
  color: #555;
}

.newsletter-form {
  flex: 2;
}

.newsletter-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 6px;
}

.newsletter-row input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.newsletter-consent {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 250px;
}

.newsletter-consent label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.newsletter-consent .newsletter-info {
  font-size: 12px;
  color: #777;
}

.newsletter-row button {
  padding: 12px 20px;
  font-weight: bold;
  background: black;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  min-width: 120px;
}

/* ✅ TEK BİR DÜZENLİ MOBİL BLOĞU */
@media (max-width: 768px) {

  /* Container’lar daha dar padding alır */
  .contact-container,
  .newsletter {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  /* Contact map mobilde tam genişlik */
  .contact-map {
    min-width: 100%;
    max-width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
  }

  .contact-map iframe {
    width: 100% !important;
    height: auto;
    max-width: 100%;
  }

  /* Checkbox grup mobil uyumlu */
  .checkbox-group {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }

  .checkbox-group label {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Newsletter mobil düzen */
  .newsletter {
    padding: 0 15px;
    gap: 20px;
  }

  .newsletter-text {
    width: 100%;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    margin: 0 auto;
  }

  .newsletter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-row input[type="email"] {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 12px;
    font-size: 14px;
  }

  .newsletter-consent {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }

  .newsletter-consent label {
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.4;
  }

  .newsletter-consent .newsletter-info {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
  }

  .newsletter-row button {
    width: 100%;
    padding: 12px;
  }
}


.checkbox-block {
  margin: 20px 0;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #eee;
}

.checkbox-info {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

.checkbox-info a {
  color: black;
  font-weight: 500;
  text-decoration: underline;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: black;
}





.site-footer {
  background-color: #0a0e0b;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 150px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
  line-height: 1.5;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  color: #C1FF72;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* önce bu vardı büyük ihtimal */
}

.footer-contact p {
  font-size: 14px;
  color: #ccc;
  margin: 8px 0;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  background-color: transparent;
  color: white;
  font-size: 16px; /* 14px yerine 16px */
  margin-top: 40px;
}


.footer-language {
  margin-top: 15px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}


.footer-language a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
  transition: color 0.2s ease;
}

.footer-language a:hover {
  color: #C1FF72;
}








.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  color: white;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  min-width: 90px;
}

.event-date .time {
  margin-top: 5px;
  font-size: 13px;
  color: #000000;
  font-weight: 500;
}









.flash-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}

.flash-card {
  padding: 30px 40px;
  border-radius: 15px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  max-width: 90%;
  text-align: center;
  animation: fadein 0.3s ease;
  pointer-events: auto;
}

/* Yeşil: Başarı */
.flash-card.success {
  background-color: #2ecc71;
  color: white;
}

/* Sarı: Zaten abone */
.flash-card.info {
  background-color: #f1c40f;
  color: #333;
}

.flash-icon {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.flash-text {
  font-size: 1.1rem;
}

@keyframes fadein {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .contact-container,
  .newsletter,
  .footer-container {
    padding: 0 20px;
  }
}





.follow-instagram {
  background-color: #fafafa;
  text-align: center;
  padding: 50px 20px; /* daha fazla boşluk */
  margin-top: 80px;
}

.follow-instagram a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: black;
  font-family: 'Poppins', sans-serif;
  font-size: 24px; /* büyütüldü */
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.follow-instagram i.fab.fa-instagram {
  font-size: 36px; /* ikon büyütüldü */
  color: #e1306c;
  transition: transform 0.3s;
}

.follow-instagram a:hover i.fab.fa-instagram {
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .follow-instagram a {
    font-size: 20px;
  }

  .follow-instagram i.fab.fa-instagram {
    font-size: 30px;
  }
}








.footer-social-icon {
  margin-top: 15px;
}

.footer-social-icon a {
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
  margin-right: 15px;
}

/* 🔴 Instagram (pembe) */
.footer-social-icon a.icon-instagram {
  color: #e1306c;
}

.footer-social-icon a.icon-instagram:hover {
  transform: scale(1.2);
}

/* 💚 WhatsApp (yeşil) */
.footer-social-icon a.icon-whatsapp {
  color: #25D366;
}

.footer-social-icon a.icon-whatsapp:hover {
  transform: scale(1.2);
}

/* 💙 Email (mavi) */
.footer-social-icon a.icon-email {
  color: #1DA1F2;
}

.footer-social-icon a.icon-email:hover {
  transform: scale(1.2);
}



/* Coming Soon görünümü */
.event-date .coming-soon {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #000;        /* koyu metin */
  line-height: 1.2;
  padding: 6px 0;
}
