/* --- style.css içeriği --- */
/* Genel Gövde Yapısı */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff; /* Sayfa zemin beyaz */
}

/* Header */
.site-header {
  background-color: #004b91;
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  max-height: 50px;
  display: block;
}

/* Ana Menü */
.main-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: white;
  text-decoration: none;
  padding: 10px 12px;
  font-size: 16px;
  display: block;
  transition: background 0.3s ease;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Dropdown Menü */
.main-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0060c2;
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 999;
}

.main-nav ul ul li {
  width: 100%;
}

.main-nav ul ul li a {
  padding: 10px 16px;
  color: white;
  white-space: nowrap;
}

.main-nav li:hover > ul {
  display: block;
}

/* Menü Toggle (mobil) */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .container {
    flex-direction: row;
  }

  .main-nav {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #004b91;
    width: 200px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav > ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav ul ul {
    position: static;
    box-shadow: none;
    background-color: #0050aa;
    padding-left: 10px;
  }

  .main-nav li:hover > ul {
    display: none;
  }
}

/* Sayfa Banner */
.page-banner {
  background-color: #004b91;
  color: white;
  text-align: center;
  padding: 40px 0;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-banner-light {
  background-color: #d4eaff;
  color: #004b91;
  text-align: center;
  padding: 40px 0;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* İçerik Alanı */
.content-wrapper {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer.footer {
  background-color: #004b91;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

footer.footer a {
  color: #fff;
  text-decoration: underline;
}


/* --- hidrocinar.css içeriği --- */
@charset "utf-8";
.copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color:#FFF;
	font-variant: normal;
}
.baslik {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10.8px;
	font-style: normal;
	color:#1E4059;
	font-weight: bold;
}
.urunicerik {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10.4px;
	font-style: normal;
	color:#36709e;
	font-weight: bold;
}
.urunbaslik {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	color:#36709e;
	font-weight: bold;
}


.iceriksiyah {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color:#1E4059;
	font-variant: normal;
	text-indent: 10px;
}
.adresnop {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color:#1E4059;
	font-variant: normal;
}
.anket {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color:#1E4059;
	font-variant: normal;
}
.devam {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color:#1E4059;
}
.buton {
	FONT-WEIGHT: bold;
	FONT-SIZE: 10px;
	COLOR: #FFFFFF;
	FONT-FAMILY: verdana, arial, sans-serif;
	border: 1px solid #0074bd;
	background-color: #0074bd;
}.slider {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 1s ease;
  width: 100%;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  33%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

.iletisim-header {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.iletisim-banner {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.iletisim-baslik {
  font-size: 36px;
  color: #004b91;
  margin-top: 15px;
  font-weight: bold;
}
