/* =========================================================
   KURUMSAL RENKLER & ROOT
========================================================= */
:root {
  --dark:#0D1B2A;
  --gold:#C9A227;
  --gold2:#E6C66C;
  --muted:#D8D8D8;
  --text:#EDEDED;
  --white:#FFFFFF;
}


/* =========================================================
   GLOBAL
========================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top,#132337 0,#0D1B2A 45%,#07101C 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* =========================================================
   HEADER
========================================================= */
header {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: sticky;
  top: 0;
  background: rgba(7,16,28,0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--gold2);
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 1.4rem;
}

.nav-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.lang-switch a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.lang-switch a.active {
  color: var(--gold2);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: .2s;
}

.nav-links a:hover {
  color: var(--white);
}


/* =========================================================
   BUTTONS
========================================================= */
.btn-gold {
  background: linear-gradient(135deg,#E6C66C,#C9A227);
  color:#000;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
}


/* =========================================================
   MOBILE MENU
========================================================= */
.menu-toggle {
  display: none;
  font-size: 1.3rem;
  padding: 6px 12px;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
}

.nav-links-mobile {
  position: fixed;
  top: 58px;
  right: 0;
  width: 70%;
  max-width: 260px;
  height: calc(100vh - 58px);
  background: #0F1E33;
  padding: 20px;
  gap: 16px;
  flex-direction: column;
  transform: translateX(100%);
  transition: .25s ease-out;
  z-index: 999;
  display: none; /* masada gizli */
}

.nav-links-mobile a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-links-mobile.open {
  transform: translateX(0);
}


/* =========================================================
   SLIDER
========================================================= */
#slider {
  padding: 20px 0;
}

.slider-container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.slides {
  display: flex;
  width: 550%;
  transition: 0.6s;
}

.slide {
  width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(.75);
}

.slide-text {
  position: absolute;
  bottom: 26px;
  left: 26px;
  padding: 14px 22px;
  background: rgba(0,0,0,0.45);
  border-left: 4px solid var(--gold2);
  border-radius: 10px;
}

.slide-text h3 {
  margin: 0;
  color: var(--gold2);
  font-family: "Montserrat";
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
}

.prev { left: 10px; }
.next { right: 10px; }

.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dots div {
  width: 12px;
  height: 12px;
  background: #777;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: var(--gold2);
}


/* =========================================================
   HERO
========================================================= */
.hero {
  padding: 110px 0 90px;
}

.hero-inner {
  padding: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
}

.hero h1 {
  color: var(--gold2);
  font-family: "Montserrat";
  font-size: 2.6rem;
}


/* =========================================================
   SECTIONS
========================================================= */
.section-box {
  background: #0F1E33;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 32px rgba(0,0,0,0.55);
  margin-bottom: 36px;
}

.section-title {
  font-family: "Montserrat";
  font-size: 2rem;
  color: var(--gold2);
  margin-bottom: 14px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--gold2);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 20px;
}


/* =========================================================
   ÜRÜNLER
========================================================= */
.products-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.product-card {
  background:#132237;
  padding:22px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.15);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  color: var(--gold2);
  font-family: "Montserrat";
}


/* =========================================================
   İLETİŞİM
========================================================= */
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}

.form-left {
  display:flex;
  flex-direction:column;
  gap:14px;
}

.form-left input {
  width:100%;
  padding:12px 14px;
  background:#112030;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.15);
  color:var(--muted);
}

.form-right textarea {
  width:100%;
  height:240px;
  background:#112030;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.15);
  padding:14px;
  color:var(--muted);
  resize:none;
}

.contact-submit {
  grid-column: 1 / span 2;
  text-align:center;
  margin-top:10px;
}

.contact-submit button {
  padding:12px 36px;
  font-size:1.1rem;
  border-radius:30px;
}

.map-box {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}


/* =========================================================
   FOOTER
========================================================= */
footer {
  text-align:center;
  padding:20px;
  color: var(--muted);
}


/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:860px){
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .products-grid {
    grid-template-columns:1fr;
  }

  .contact-grid {
    grid-template-columns:1fr;
  }

  .contact-submit {
    grid-column: 1;
  }

  .nav-links-mobile {
    display: flex;
  }
}
