/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #1e2a38;
  line-height: 1.6;
}

/* ===== VARIABLES ===== */
:root {
  --fuchsia: #e91e8c;
  --fuchsia-light: #ff6db7;
  --ice: #4bbfe3;
  --ice-light: #a8dff5;
  --ice-pale: #e8f7fd;
  --white: #ffffff;
  --text: #1e2a38;
  --text-muted: #6b7e94;
  --border: rgba(75,191,227,0.25);
  --shadow: 0 4px 24px rgba(72,180,220,0.12);
  --shadow-fuchsia: 0 4px 20px rgba(233,30,140,0.2);
}

/* ===== HEADER ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #ffffff;
  border-bottom: 2px solid var(--ice-light);
  box-shadow: 0 2px 16px rgba(72,180,220,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fuchsia);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.desktop-nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.desktop-nav a:hover { color: var(--fuchsia); }
.admin-link { color: var(--fuchsia) !important; }

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  background: var(--fuchsia);
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 70%; max-width: 300px;
  height: 100vh;
  background: #ffffff;
  border-left: 2px solid var(--ice-light);
  z-index: 150;
  padding: 4rem 2rem;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(72,180,220,0.12);
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--ice-pale);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--fuchsia); }
.close-menu {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 2rem !important;
  border: none !important;
  color: var(--fuchsia) !important;
}

/* ===== HERO / BANNER ===== */
.hero {
  background: linear-gradient(135deg, #4bbfe3 0%, #9ad8f0 30%, #f8f0ff 65%, #ffb3de 85%, #e91e8c 100%);
  color: #ffffff;
  padding: 7rem 5%;
  text-align: center;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(0px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49%, #ffffff 50%);
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--fuchsia);
  color: #ffffff;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--fuchsia-light);
  box-shadow: 0 8px 30px rgba(233,30,140,0.4);
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E1306C;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== FARK BÖLÜMÜ ===== */
.fark-bolumu {
  padding: 3.5rem 5%;
  background: #fff;
  border-bottom: 1px solid var(--ice-pale);
}
.fark-icerik {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.fark-kol {
  flex: 1;
  padding: 2rem 2.2rem;
}
.fark-kol h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.fark-kol ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fark-kol ul li {
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.fark-diger {
  background: #f6f7f9;
  color: var(--text-muted);
}
.fark-diger h3 { color: #9ca3af; }
.fark-polaris {
  background: linear-gradient(135deg, #fff0f8 0%, #f0faff 100%);
  color: var(--text);
}
.fark-polaris h3 { color: var(--fuchsia); }
.fark-x { color: #d1d5db; font-weight: 700; flex-shrink: 0; }
.fark-c { color: var(--fuchsia); font-weight: 700; flex-shrink: 0; }
.fark-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  background: var(--fuchsia);
  writing-mode: vertical-rl;
}
@media (max-width: 600px) {
  .fark-icerik { flex-direction: column; border-radius: 12px; }
  .fark-vs { writing-mode: horizontal-tb; padding: 0.6rem; }
}

/* ===== PACKAGES ===== */
.packages {
  padding: 5rem 5%;
  text-align: center;
  background: #f8fbff;
}
.packages h2 {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.packages h2 + * { color: var(--text-muted); }
.package-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: 2rem auto 0;
}
.package-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.package-card:hover {
  transform: translateY(-5px);
  border-color: var(--ice);
  box-shadow: 0 8px 32px rgba(72,180,220,0.2);
}
.package-card.featured {
  border: 2px solid var(--fuchsia);
  background: #fff7fb;
}
.package-card.featured:hover { transform: translateY(-5px); }
.card-header h3 {
  color: var(--text);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fuchsia);
  margin-bottom: 1rem;
}
.package-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}
.package-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ice-pale);
  color: var(--text-muted);
}
.package-card ul li:before { content: ""; }
.package-card.featured ul li:before { content: ""; }

.package-note {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--ice-light);
  text-align: left;
}
.package-card .btn-gold {
  margin-top: 1rem;
  margin-bottom: 0;
  align-self: stretch;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(30,42,56,0.5);
  z-index: 300;
  justify-content: center;
  align-items: center;
}
.modal.active { display: flex; }
.modal-content {
  background: #ffffff;
  border: 1.5px solid var(--border);
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalIn 0.3s ease;
  color: var(--text);
  box-shadow: 0 8px 40px rgba(72,180,220,0.15);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.close-modal {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s;
}
.close-modal:hover { color: var(--fuchsia); }
.modal-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, var(--ice-pale) 0%, #fff0f8 100%);
  border-top: 2px solid var(--ice-light);
  color: var(--text-muted);
  padding: 2.5rem;
  text-align: center;
}
.site-footer a {
  color: var(--fuchsia);
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer a:hover { color: var(--fuchsia-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 2rem; letter-spacing: 1px; }
  .hero p { font-size: 1rem; }
  .hero::after { height: 40px; }
  .package-cards { flex-wrap: wrap; }
  .package-card { flex: 1 1 280px; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-5px); }
  .admin-sidebar { width: 200px; }
}

/* ===== ORNEKLER PAGE ===== */
.ornekler-hero {
  background: linear-gradient(135deg, #4bbfe3 0%, #9ad8f0 50%, #e8f7fd 100%);
  color: var(--text);
  padding: 4rem 5%;
  text-align: center;
  border-bottom: none;
}
.ornekler-hero h1 {
  color: #ffffff;
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.category-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
}
.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--ice);
}
.category-img {
  height: 180px;
  background: linear-gradient(135deg, var(--ice-pale), var(--ice-light));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.category-info {
  padding: 1.5rem;
  text-align: center;
}
.category-info h3 { color: var(--text); margin-bottom: 0.5rem; }
.category-info p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== CANVA EMBED ===== */
.canva-section {
  padding: 2rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}
.canva-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.canva-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== ADMIN ===== */
.admin-body { background: #f8fbff; }
.admin-login {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--ice-pale), #fff0f8);
}
.login-box {
  background: #ffffff;
  border: 1.5px solid var(--border);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.login-box h2 { color: var(--fuchsia); margin-bottom: 0.5rem; letter-spacing: 1px; }
.login-box p { color: var(--text-muted); margin-bottom: 2rem; }
.login-box input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--ice-pale);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text);
}
.login-box input:focus {
  outline: none;
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(75,191,227,0.12);
}
.error-msg {
  color: #e91e8c;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
}

.admin-panel { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px;
  background: #ffffff;
  border-right: 2px solid var(--ice-light);
  color: var(--text);
  padding: 2rem 0;
}
.admin-sidebar h2 {
  text-align: center;
  color: var(--fuchsia);
  margin-bottom: 2rem;
  padding: 0 1rem;
  letter-spacing: 1px;
}
.admin-sidebar a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
  background: var(--ice-pale);
  color: var(--fuchsia);
  border-left: 3px solid var(--fuchsia);
}
.admin-main {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  background: #f8fbff;
}
.admin-section {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.admin-section h3 {
  color: var(--fuchsia);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ice-pale);
  letter-spacing: 1px;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--ice-pale);
}
.admin-table th {
  background: var(--ice-pale);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td { color: var(--text); }
.admin-table input {
  width: 100%;
  padding: 0.5rem;
  background: var(--ice-pale);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  color: var(--text);
}
.admin-table input:focus {
  outline: none;
  border-color: var(--ice);
}
.btn-admin {
  background: var(--fuchsia);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 0.5rem;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}
.btn-admin:hover { background: var(--fuchsia-light); }
.btn-danger {
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #fca5a5;
}
.btn-danger:hover { background: #ffe0e0; }

.hidden { display: none; }

/* WhatsApp Kayan Buton */
.wa-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37,211,102,0.6);
}
@media (max-width: 600px) {
  .wa-btn { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
  .wa-btn svg { width: 24px; height: 24px; }
}
