/*
 * UCN Mühendislik – Kurumsal ve modern web sitesi stili.
 * Bu dosya, site genelinde kullanılan ortak stilleri tanımlar.
 */

/* Temel ayarlar */
* {
  box-sizing: border-box;
  margin: 0;
  /* padding: 0; */
}

html, body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}


header {
  padding: 10px 0;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 1rem;
}

.logo-container {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 1100;
}
nav {
  margin-left: auto;
}

.logo-cont{
  margin: 0px 0px 0px 6rem;
  position: absolute;
}
/* Refined logo appearance with better spacing & alignment */
.logo-img {
  height: 120px;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: absolute;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #EE7A02;
}

/* Ana sayfa – slider */
.slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide .caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-align: center;
}

/* Hakkımızda bölümü */
.about-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.about-section .about-text {
  flex: 1 1 400px;
}
.about-section .about-image {
  flex: 1 1 400px;
}
.about-section .about-image img {
  width: 100%;
  border-radius: 8px;
}

/* Galeri sayfası */
.gallery {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* İletişim sayfası */
.contact-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.75rem;
  background-color: #0C3966;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #EE7A02;
}

footer {
  background-color: #0C3966;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  margin-top: 4rem;
}
/* Mobil logo düzeltmesi */
@media (max-width: 768px) {
  .logo-container {
    top: 5px;
    left: 10px;
  }
  .logo-cont {
    margin:0px;
    margin-left: -6px;

  }
  .logo-img {
    height: 45px;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  }

  header {
    min-height: 60px;
  }

  .nav-container {
    margin-top: 0;
    padding-top: 10px;
  }

  nav ul li a {
    font-size: 13px;
    margin: 0 5px;
  }
}