/* === GENEL AYARLAR === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #d6e8fa, #ffffff);
  color: #333;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === HERO === */
.mehmet-hero {
  position: relative;
  height: 90vh;
  background: url('../../../../Photos/goreme.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.mehmet-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.mehmet-hero-icerik {
  position: relative;
  z-index: 2;
  color: #ff4500;
  padding: 2rem 3rem;
  border-radius: 20px;

  box-shadow: 0 4px 40px rgba(0,0,0,0.2);
  animation: fadeUp 1.5s ease forwards;
}

.mehmet-hero-icerik h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
h5 {

  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mehmet-hero-icerik p {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
  color: #abbed1;
}

@keyframes fadeUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* === AKTİVİTELER === */
.mehmet-activities {
  padding: 4rem 0;
  text-align: center;
}

.mehmet-activities h2 {
  font-size: 2.2rem;
  font-family: "Poppins";
  margin-bottom: 2.5rem;
  color: #222;
    font-weight: 300;
  position: relative;
}

.mehmet-activities h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff7b00, #ffa94d);
}

/* === KARTLAR === */
.mehmet-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.mehmet-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.mehmet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.mehmet-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.mehmet-card-body {
  padding: 1.5rem;
  text-align: left;
}

.mehmet-card-body h3 {
  margin-bottom: .5rem;
  
  font-weight: 600;
  color: #111;
}

.mehmet-card-body p {
  color: #555;
  
  margin-bottom: 1rem;
  line-height: 1.5;
}

.mehmet-btn-rez {
  background: linear-gradient(90deg, #ff7b00, #ffa94d);
  border: none;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  color: #fff;
  
  cursor: pointer;
  font-weight: 600;
  transition: all .3s ease;
}

.mehmet-btn-rez a {
  color: inherit;        /* Buton yazı rengiyle uyumlu olsun */
  text-decoration: none; /* Alt çizgiyi kaldır */
  display: block;        /* Buton boyutuna uyum sağlasın */
  width: 100%;           /* Butonun tamamını kaplasın */
  height: 100%;          /* Butonun tamamını kaplasın */
}

.mehmet-btn-rez:hover {
  background: linear-gradient(90deg, #ffa94d, #ff7b00);
  transform: scale(1.05);
}

/* Modal arka plan ve tam ortalama */
.mehmet-modal {
  display: none; /* Başlangıçta gizli */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* Küçük ekranlarda taşmayı önler */
}

/* Modal kutu */
.mehmet-modal-icerik {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 400px;
  width: 100%;
  color: white;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: modalShow 0.3s ease;
}

/* Kapatma butonu sağ üst */
.mehmet-kapat {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,0.1);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.2s;
}

.mehmet-kapat:hover {
  background: orange;
}

/* Açılırken animasyon */
@keyframes modalShow {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .mehmet-hero-icerik h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
  }
  .mehmet-card-body p {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
  }
  .mehmet-modal-icerik {
    padding: 2rem 1.5rem;
  }
}

.mehmet-footer {
  background: #F5F7FA;
  backdrop-filter: blur(15px);
  padding: 4rem 2rem 2rem;
      font-weight: 300;
  color: #fff;
  font-size: 0.95rem;
}

.mehmet-footer-icerik {
  max-width: 1200px;
  margin: auto;
}

.mehmet-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.mehmet-footer-col h3 {
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #263238;
}

.mehmet-footer-col p {
  color: #89939E;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.mehmet-footer-col ul {
  list-style: none;
  font-family: 'Poppins', sans-serif;
  padding: 0;
}

.mehmet-footer-col ul li {
  margin-bottom: .5rem;
  font-family: 'Poppins', sans-serif;
}

.mehmet-footer-col ul li a {
  color: #89939E;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.mehmet-footer-col ul li a:hover {
  color: #ff7b00;
  font-family: 'Poppins', sans-serif;
}

.mehmet-sosyal {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.mehmet-sosyal img {
  width: 28px;
  transition: transform .3s ease;
}

.mehmet-sosyal img:hover {
  transform: scale(1.2);
}

.mehmet-footer-form input,
.mehmet-footer-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 0.8rem;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.mehmet-footer-form button {
  background: linear-gradient(90deg, #ff7b00, #ffa94d);
  color: #fff;
  border: none;
  padding: .8rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.mehmet-footer-form button:hover {
  background: linear-gradient(90deg, #ffa94d, #ff7b00);
}

.mehmet-copy {
  text-align: center;
  color: #aaa;
  margin-top: 1rem;
  font-size: 0.85rem;
}

@media (max-width:768px){
  .mehmet-footer-grid {
    grid-template-columns: 1fr;
  }
}
/* SPLASH SCREEN */
#mehmet-splash {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  z-index: 9999;
  overflow: hidden;
}

.mehmet-splash-bg {
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

.mehmet-balon {
  position:absolute;
  width:60px;
  z-index:2;
  animation-name: float;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-500px) rotate(15deg); }
  100% { transform: translateY(-1000px) rotate(0deg); }
}


.mehmet-bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  z-index: 1000;
}

.mehmet-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #3b3939;
  font-size: 12px;
}

.mehmet-item img {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.4));
}

.mehmet-center-btn {
  position: relative;
  top: -25px;
}

.mehmet-fire-btn {
  background: linear-gradient(135deg, #ff4500, #ff9900);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.5);
  border: 3px solid rgba(255,255,255,0.3);
}

.mehmet-fire-btn img {
  width: 35px;
  height: 35px;
  filter: brightness(1.2);
}




/* Reklam STİLLERİ */
.mehmet-reklam {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.mehmet-reklam-icerik {
  background: #f5f7fa;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 16px;
  max-width: 1000px;
  text-align: center;
}

.mehmet-reklam-icerik img {
  max-width: 100%;
  border-radius: 8px;
}
/* Reklam STİLLERİ */


/* BAYRAK STİLLERİ */
.mehmet-dil-dropdown {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}

.mehmet-bayrak {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.mehmet-dil-list {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(0,0,0,0.85);
    border-radius: 12px;
    list-style: none;
    padding: 10px 0;
    min-width: 150px;
}

.mehmet-dil-list li {
    padding: 5px 20px;
}

.mehmet-dil-list li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mehmet-bayrak-small {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

/* Hover açma */
.mehmet-dil-dropdown:hover .mehmet-dil-list {
    display: block;
}
/* BAYRAK STİLLERİ */
