/* CSS içerik buraya yerleştirildi */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  line-height: 1.8;
  font-size: 17px;
}


nav {
  margin-top: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
}

section {
  padding: 50px 25px;
  max-width: 900px;
  margin: 20px auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

h2 {
  color: #1e3d59;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

h4 {
  margin-top: 20px;
  margin-bottom: 1px;
  font-size: 1.2rem;
}

p {
  margin-top: 2px;  /* Adjust the top margin to reduce the space above */
  margin-bottom: 18px;  /* Keep the bottom margin as it is */
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

a {
  color: #1e3d59;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 25px;
  background: #1e3d59;
  color: white;
  font-size: 0.9rem;
}

@media(max-width:600px){
  header h1 {
    font-size: 1.6rem;
  }
  section {
    padding: 25px 15px;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  body {
    font-size: 15px;
  }
}

h3.small-gap {
  margin-top: 15px;
  margin-bottom: 5px;
}

h3.small-gap + p {
  margin-top: 0;
}
















/* Genel Tasarım */
body {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

header {
  background-color: #2b2b2b; /* Premium bir koyu renk */
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Roboto', sans-serif;
}

nav {
  display: flex;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
  color: #f7f7f7;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.menu li a:hover {
  color: #ffcc00; /* Premium renk tonları için altın sarısı */
}

/* Mobil Uyumlu Tasarım */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .logo-container {
    margin-bottom: 10px;
  }

  .menu {
    flex-direction: column;
    gap: 15px;
  }

  .menu li a {
    font-size: 1.2rem;
  }
}

/* Premium Hover Effects */
.menu li a:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}


        /* Body and background */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f7f7f7;
        }

  /* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background with opacity */
    overflow: auto;
    transition: opacity 0.3s ease-in-out;
}

/* Modal Content (Image) */
.modal-content {
    display: block;
    max-width: 90%;  /* Reduced width for spacing */
    max-height: 90%; /* Reduced height for spacing */
    margin: 5% auto; /* Added margin for spacing around */
    padding: 20px; /* Add some padding inside modal for aesthetic */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    object-fit: contain; /* Ensure the image scales proportionally */
    transition: transform 0.3s ease-in-out;
}

/* The Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}

.close:hover,
.close:focus {
    color: #ff6f61;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Image preview hover effect */
img {
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* Responsiveness */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
    }
}