@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7f7f7;
  color: #222;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #c0392b;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.top-bar-left {
  flex: 1;
}

.site-title {
  color: white;
  margin-right: 200px;
  font-size: 37px;
  font-weight: bold;
  position: absolute;
  top: 1.7%;
}



header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #c0392b;
  padding: 15px 20px;
}

header h1 {
  color: white;
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 15px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  background-color: #c0392b;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
  background-color: #ff5c5c;
  color: white;
  box-shadow: 0 0 15px rgba(255, 92, 92, 0.8);
  transform: scale(1.05);
}




.page-header {
  padding: 30px 40px 10px 40px;
  font-weight: bold;
}

.page-header h1 {
  font-size: 60px;
  color: #c0392b;
  margin-top: 50px;
  margin-left: 300px;
  font-weight: bold;
}

.content-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  gap: 25px;
}

.section {
  flex: 1 1 45%;
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 300px;
  font-weight: bold;
}

.section h2 {
  font-size: 1.8rem;
  color: #c0392b;
  margin-bottom: 15px;
}

.section p,
.section ul {
  font-size: 1.1rem;
  line-height: 1.7;
}

.section ul li {
  margin-bottom: 10px;
}

.photo-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.photo-gallery img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-gallery img:hover {
  transform: scale(1.05);
}

.instagram-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff6600;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 999;
}

.instagram-button:hover {
  background-color: #8928ca;
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

.button {
  background: #fff;
  color: #c0392b;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}


/* Normal menü linkleri */
nav ul li a {
  color: #222;
  text-decoration: none;
  padding: 10px 15px;
  transition: 0.3s;
}

/* Medyamız linki özel */
nav ul li a.medyamiz-link {
  color: white; 
  background-color: #007bff; /* parlak mavi */
  border-radius: 6px;
  font-weight: bold;
}

/* Hover efekti de güzel olur */
nav ul li a.medyamiz-link:hover {
  background-color: #0056b3; /* daha koyu mavi */
}



.button:hover {
  background-color: #ff5c5c;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 92, 92, 0.8);
  transform: scale(1.05);
}

/* Tablet cihazlar (max-width: 992px) */
@media (max-width: 992px) {
  .site-title {
    font-size: 22px;
  }

  header h1 {
    font-size: 24px;
  }

  .page-header h1 {
    font-size: 26px;
    margin: 15px auto;
  }
nav ul li a.medyamiz-link {
    padding: 8px 14px;   /* mobilde biraz daha küçük */
    font-size: 1rem;
  }
  .page-header p {
    font-size: 0.9rem;
    margin: 8px auto;
    text-align: center;
  }

  .section h2 {
    font-size: 1.4rem;
  }

  header nav ul li a {
    padding: 5px 8px;
    font-size: 0.85rem;
  }

  .content-sections {
    gap: 20px;
    padding: 25px;
  }

  .section {
    flex: 1 1 100%;
    min-width: auto;
  }

  .photo-gallery img {
    max-width: 260px;
  }
}

/* Küçük telefonlar (max-width: 576px) */
@media (max-width: 576px) {
  .site-title {
    font-size: 22px;
  }
nav ul li a.medyamiz-link {
    padding: 8px 14px;   /* mobilde biraz daha küçük */
    font-size: 1rem;
  }
  header h1 {
    font-size: 22px;
  }

  .page-header h1 {
    font-size: 26px;
  }

  .section {
    padding: 15px;
  }

  .section h2 {
    font-size: 1.3rem;
  }

  .section p,
  .section ul {
    font-size: 0.95rem;
  }

  .photo-gallery img {
    width: 100%;
    max-width: 280px;
  }

  footer {
    font-size: 0.75rem;
    padding: 12px;
  }
}
