/* ============================================================
   ONR MARKET – style.css
   Theme: Dark Premium / Gold & Black
   ============================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07830;
  --gold-glow: rgba(201, 168, 76, 0.35);
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #181818;
  --dark-3: #222222;
  --dark-4: #2a2a2a;
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-10: rgba(255,255,255,0.1);
  --white-5: rgba(255,255,255,0.05);
  --wa-green: #25d366;
  --wa-dark: #128c7e;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.25);
  --trans: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --font-cond: 'Barlow Condensed', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
textarea, input { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.section { padding: 100px 0; }
.mt-1 { margin-top: 16px; }
.mt-half { margin-top: 10px; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white-40);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--white-5);
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  color: var(--white-70);
  font-size: 1.05rem;
}

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: var(--trans);
  cursor: pointer;
}
.float-btn svg { width: 22px; height: 22px; }
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-wa {
  background: var(--wa-green);
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.float-wa:hover { box-shadow: 0 6px 30px rgba(37,211,102,0.55); }
.float-tel {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.float-tel:hover { box-shadow: 0 6px 30px rgba(201,168,76,0.5); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-70);
  transition: var(--trans);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  font-weight: 700;
  font-family: var(--font-cond);
  letter-spacing: 0.05em;
  padding: 10px 18px;
}
.nav-links .nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse at bottom, rgba(201,168,76,0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--white-70);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 8px #4caf50;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px #4caf50; }
  50% { box-shadow: 0 0 16px #4caf50; }
}
.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 28px;
  border: 3px solid var(--gold-dark);
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.title-line { display: block; }
.title-line.gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201,168,76,0.4);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  margin-bottom: 28px;
}
.hero-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--white-70);
}
.badge-item svg { width: 16px; height: 16px; color: var(--gold); }
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--white-40);
  border-bottom: 2px solid var(--white-40);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(-3px); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(3px); opacity: 1; }
}

/* ===== KAMPANYA ===== */
.kampanya { background: var(--dark); }
.kampanya-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.kamp-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--trans);
  overflow: hidden;
}
.kamp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.03) 100%);
  opacity: 0;
  transition: var(--trans);
}
.kamp-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.1);
}
.kamp-card:hover::before { opacity: 1; }
.kamp-card.featured {
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, var(--dark-2), rgba(201,168,76,0.06));
}
.kamp-card.promo { border-color: rgba(37,211,102,0.3); }
.kamp-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kamp-card.promo .kamp-badge {
  background: var(--wa-green);
  color: white;
}
.kamp-icon { font-size: 2.8rem; margin-bottom: 16px; }
.kamp-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--white);
}
.kamp-card p {
  color: var(--white-70);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.kamp-card strong { color: var(--gold); }

/* ===== SİPARİŞ ===== */
.siparis {
  background: var(--black);
  position: relative;
}
.siparis::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.siparis-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.siparis-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--dark-2);
  border: 1px solid var(--white-5);
  border-radius: var(--radius);
  transition: var(--trans);
}
.info-card:hover { border-color: var(--gold-dark); }
.info-icon { font-size: 2rem; flex-shrink: 0; }
.info-card h4 {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.info-card p { color: var(--white-70); font-size: 0.9rem; }

.form-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.05);
}
.form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--wa-dark), #075e54);
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.form-header svg { width: 28px; height: 28px; }
.form-body { padding: 28px; display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea {
  background: var(--dark-3);
  border: 1.5px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--trans);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-40); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  background: var(--dark-4);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-error {
  padding: 12px 16px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  color: #ef4444;
  font-size: 0.9rem;
}

/* ===== HARİTA ===== */
.harita-section { background: var(--dark); }
.harita-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.harita-container {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow);
}
.harita-info { display: flex; flex-direction: column; gap: 20px; }
.harita-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--dark-2);
  border: 1px solid var(--white-5);
  border-radius: var(--radius);
}
.hd-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.harita-detail h4 {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.harita-detail p {
  color: var(--white-70);
  font-size: 0.9rem;
  line-height: 1.5;
}
.harita-detail a {
  color: var(--gold);
  transition: var(--trans);
}
.harita-detail a:hover { color: var(--gold-light); }

/* ===== İLETİŞİM ===== */
.iletisim { background: var(--black); }
.iletisim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.iletisim-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: var(--dark-2);
  border: 1px solid var(--white-5);
  border-radius: var(--radius-lg);
  transition: var(--trans);
  cursor: pointer;
}
a.iletisim-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}
.iletisim-card.no-link { cursor: default; }
.ic-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ic-icon svg { width: 30px; height: 30px; }
.wa-color { background: rgba(37,211,102,0.15); color: var(--wa-green); }
.tel-color { background: rgba(201,168,76,0.15); color: var(--gold); }
.map-color { background: rgba(66,133,244,0.15); color: #4285f4; }
.clock-color { background: rgba(255,152,0,0.15); color: #ff9800; }
.iletisim-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.iletisim-card p {
  color: var(--white-70);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.ic-action {
  color: var(--gold);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--white-5);
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--white-5);
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--white-70);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: var(--white-70);
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  color: var(--white-70);
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  color: var(--white-40);
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .harita-wrap { grid-template-columns: 1fr; }
  .harita-container { height: 320px; }
  .siparis-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--dark);
    border-left: 1px solid var(--white-5);
    flex-direction: column;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: right var(--trans);
    z-index: 99;
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 14px 16px; font-size: 1rem; }
  .nav-links .nav-cta { width: 100%; justify-content: center; margin-top: 12px; }

  .hero { padding: 100px 20px 60px; }
  .hero-logo { width: 100px; height: 100px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

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

  .harita-wrap { gap: 24px; }

  .floating-btns { bottom: 16px; right: 16px; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }

  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .section-header h2 { font-size: 1.8rem; }
  .hero-badges-row { gap: 8px; }
  .badge-item { font-size: 0.78rem; padding: 6px 12px; }
  .btn-lg { padding: 16px 24px; font-size: 1rem; }
  .form-body { padding: 20px; }
}
