/* ===================  RENKLER & DEĞİŞKENLER  =================== */
:root {
  --accent: #e50914;
  --bg-1: #000;
  --text: #ffffff;
  --muted: #bfbfbf;
  --glass: rgba(255, 255, 255, .06);
  --border: rgba(255, 255, 255, .12);
  --radius: 22px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

/* ===================  GENEL  =================== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  padding-top: 64px;
}

body {
margin: 0;
color: var(--text);
font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Helvetica Neue, Arial, Noto Sans;
/* Düz, sade kırmızı geçiş arka plan */
background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
background-attachment: fixed;
}
p{
  color: #000 !important; 
}


a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.accent {
  color: var(--accent);
}

/* ===================  NAVBAR  =================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 10px;
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, .65));
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, .9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .4px;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(229, 9, 20, .3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
  opacity: .9;
  transition: .2s ease;
}

.nav-links a:hover {
  background: var(--glass);
  opacity: 1;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: #222;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .25s ease, opacity .25s ease;
  border-radius: 10px;
}

.dropdown-content a {
  padding: 10px 12px;
}

.dropdown-content a:hover {
  background: #444;
}

.dropdown:hover .dropdown-content {
  max-height: 500px;
  opacity: 1;
}

/* ===================  HERO  =================== */
.hero {
  min-height: calc(100dvh - 68px);
  display: grid;
  place-items: center;
}
.hero-copy h1 {
  margin: .2rem 0 1rem;
  font-size: clamp(2.2rem, 2vw + .8rem, 4rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  letter-spacing: 0.5rem;
  text-align: center;
  margin-top: -5rem;
}

.hero-copy p {
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  text-align: center;
  align-items: center;
  margin-left: 20rem;
  letter-spacing: 0.01rem;
}

.hero-visual {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
  
}

.frame {
  padding: 20px;
  border-radius: 30px;
  background: rgba(0, 0, 0, .6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}


/* ===================  FOOTER  =================== */
footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, .6);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 34px 22px;
}

.footer h4 {
  margin: 0 0 10px;
  letter-spacing: .02em;
}

.footer a,
.footer li {
  color: var(--muted);
}
.iletisim {
  float: right;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.copyright {
  text-align: center;
  color: #888;
  padding: 14px 0 28px;
  font-size: .92rem;
}


/* ===================  RESPONSIVE  =================== */
@media (max-width:1100px) {
  .menu-btn {
    display: block;
  }
  .hero-copy h1{
    margin-top: 0;
  }
  .hero-copy p{
    letter-spacing: 0;
  }
.iletisim {
  float: left;
}

  .nav-links {
    position: fixed;
    inset-inline: 0;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(0, 0, 0, .95);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px 22px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  /* Mobil akordeon: hover kapanır */
  .dropdown {
    position: static;
  }

  .dropdown:hover .dropdown-content {
    max-height: 0;
    opacity: 0;
  }

  .dropdown-content {
    position: static;
    background: transparent;
    border-radius: 0;
    padding: 1rem;
  }

  .dropdown.open-sub>a {
    background: var(--glass);
  }

  .dropdown.open-sub .dropdown-content {
    max-height: 600px;
    opacity: 1;
  }

  .dropdown-content a:hover {
    background: rgba(255, 255, 255, .06);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }
  

  /* Orta boyda 3 görsel 2x2 (alttaki span devam) gayet iyi görünüyor */
  .hero-visual {
    max-width: 420px;
  }

}

@media (max-width:700px) {

  /* Mobil: tek sütun galeri */
  .gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c";
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  
}

.cta {
  margin-top: 25px;
  text-align: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
  font-weight: 600;
  transition: .25s ease;
  margin: auto;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #a4060d);
  border-color: rgba(255, 255, 255, .15);
  box-shadow: 0 10px 20px rgba(229, 9, 20, .35);
}

.btn:hover {
  transform: translateY(-1px);
}

i {
  font-size: 2rem;
}

/* SOSYAL İKON UL'Ü: içinde .fa-brands olan UL'ü hedefle */
.footer-inner ul:has(.fa-brands) {
  display: flex !important;
  /* yatay sırala */
  justify-content: center !important;
  /* ortaya hizala */
  align-items: center !important;
  gap: 14px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-inner ul:has(.fa-brands) li {
  list-style: none !important;
}

/* ikon linkleri: tıklanabilir daire */
.footer-inner ul:has(.fa-brands) a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: var(--glass) !important;
  border: 1px solid var(--border) !important;
  text-decoration: none !important;
  margin-top: 5rem;
}

/* ikon boyutu */
.footer-inner ul:has(.fa-brands) i {
  font-size: 2rem !important;
  /* istersen 2.2rem yap */
  line-height: 1 !important;
}

i {
  margin: auto;
}

#baglanti a, #baglanti h4 {
  color: #fff;
}