/* ============================================
   Yavuz Aydın — İYİ Parti Trabzon Milletvekili
   Kişisel Web Sitesi — Static CSS
   ============================================ */

:root {
  --iyi-turkuaz: #25AAE0;
  --iyi-turkuaz-dark: #1E93C4;
  --iyi-sari: #FFC907;
  --iyi-sari-dark: #FFB700;
  --iyi-lacivert: #0A1E2C;
  --bg: #FFFFFF;
  --text: #0A1E2C;
  --text-muted: #4E657A;
  --text-light: #64748B;
  --border: #E4EBF0;
  --border-light: #F1F5F9;
  --whatsapp: #25D366;
  --shadow-sm: 0 2px 8px -2px rgba(10, 30, 44, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(10, 30, 44, 0.12);
  --shadow-lg: 0 30px 60px -30px rgba(37, 170, 224, 0.35);
  --radius: 16px;
  --radius-full: 9999px;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--iyi-turkuaz); color: white; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f5fafd; }
::-webkit-scrollbar-thumb { background: #c8e3ef; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--iyi-turkuaz); }

/* Container */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* Typography */
.overline {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--iyi-turkuaz);
}
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
h1 { font-size: clamp(2.5rem, 6vw, 5.75rem); }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
.italic { font-style: italic; color: var(--iyi-turkuaz); font-weight: 700; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--iyi-turkuaz); }
.text-white { color: #fff; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.75rem; border-radius: var(--radius-full); font-weight: 600; font-size: 0.95rem; transition: transform 250ms ease, background-color 250ms ease, box-shadow 250ms ease, border-color 250ms ease; }
.btn-primary { background: var(--iyi-turkuaz); color: #fff; }
.btn-primary:hover { background: var(--iyi-turkuaz-dark); transform: translateY(-2px); box-shadow: 0 20px 40px -20px rgba(37, 170, 224, 0.6); }
.btn-secondary { background: var(--iyi-sari); color: var(--iyi-lacivert); }
.btn-secondary:hover { background: var(--iyi-sari-dark); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--text); border: 1px solid rgba(10, 30, 44, 0.12); }
.btn-ghost:hover { border-color: var(--iyi-turkuaz); color: var(--iyi-turkuaz-dark); transform: translateY(-2px); }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}
.navbar.scrolled { background: rgba(255, 255, 255, 0.96); border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px -10px rgba(10, 30, 44, 0.08); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--iyi-lacivert); }
.brand-tag { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--iyi-turkuaz); margin-top: 2px; }
.nav-links { display: none; gap: 0.25rem; align-items: center; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 200ms ease; }
.nav-link:hover { color: var(--iyi-lacivert); }
.nav-link.active { color: var(--iyi-turkuaz); }
.nav-link.active::after { content: ""; position: absolute; bottom: -6px; left: 1rem; right: 1rem; height: 2px; background: var(--iyi-sari); border-radius: 2px; }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }
.mobile-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); color: var(--iyi-lacivert); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu .nav-link { padding: 0.75rem 1rem; border-radius: 10px; }
.mobile-menu .nav-link.active { background: rgba(37, 170, 224, 0.1); }
.mobile-menu .btn { margin-top: 0.75rem; justify-content: center; }

/* ---------- Social Sidebar (fixed right) ---------- */
.social-sidebar { display: none; position: fixed; right: 1.25rem; top: 50%; transform: translateY(-50%); z-index: 30; flex-direction: column; gap: 0.75rem; align-items: center; }
@media (min-width: 1024px) { .social-sidebar { display: flex; } }
.social-sidebar-label { writing-mode: vertical-rl; font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: var(--text-light); margin-bottom: 4px; }
.social-sidebar-divider { width: 1px; height: 24px; background: var(--border); }
.social-icon { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); color: var(--text-muted); transition: all 250ms ease; }
.social-icon:hover { color: var(--iyi-turkuaz); border-color: var(--iyi-turkuaz); transform: translateX(-4px); }
.social-icon svg { width: 20px; height: 20px; }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 40; }
.whatsapp-float-inner { position: relative; }
.whatsapp-float-blur { position: absolute; inset: 0; border-radius: 50%; background: var(--whatsapp); filter: blur(20px); opacity: 0.4; transition: opacity 300ms ease; }
.whatsapp-float:hover .whatsapp-float-blur { opacity: 0.7; }
.whatsapp-float-btn { position: relative; width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.6); transition: transform 300ms ease; color: #fff; }
.whatsapp-float:hover .whatsapp-float-btn { transform: scale(1.05); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ---------- Sections ---------- */
main { padding-top: 80px; }
section { padding: 5rem 0; }
@media (min-width: 1024px) { section { padding: 8rem 0; } }
.section-heading { text-align: center; margin-bottom: 4rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-heading .overline { display: inline-block; margin-bottom: 1rem; }
.section-heading .divider { width: 64px; height: 4px; background: var(--iyi-sari); margin: 2rem auto 0; border-radius: 999px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 6rem 0 4rem; }
@media (min-width: 1024px) { .hero { padding: 8rem 0 6rem; } }
.hero-grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(37, 170, 224, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 170, 224, 0.05) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.35; }
.hero-blur-yellow { position: absolute; top: 6rem; right: 6%; width: 15rem; height: 15rem; border-radius: 50%; background: var(--iyi-sari); opacity: 0.16; filter: blur(48px); animation: floaty 6s ease-in-out infinite; }
.hero-blur-blue { position: absolute; bottom: 2rem; left: 8%; width: 18rem; height: 18rem; border-radius: 50%; background: var(--iyi-turkuaz); opacity: 0.10; filter: blur(48px); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.hero-title { margin-bottom: 1.5rem; color: var(--iyi-lacivert); font-weight: 700; }
.hero-tagline { font-style: italic; font-size: clamp(1.25rem, 3vw, 1.875rem); color: var(--text-muted); font-weight: 500; margin-bottom: 2rem; line-height: 1.3; }
.hero-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 42rem; margin-bottom: 2.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.portrait-card-wrap { position: relative; max-width: 26rem; margin: 0 auto; }
@media (min-width: 1024px) { .portrait-card-wrap { margin-left: auto; margin-right: 0; } }
.portrait-sun { position: absolute; top: -1.5rem; right: -1.5rem; width: 8rem; height: 8rem; border-radius: 50%; box-shadow: 0 10px 20px rgba(255, 201, 7, 0.35); z-index: 0; background-image: conic-gradient(from 0deg, #FFC907, #FFDD5B, #FFC907, #FFDD5B, #FFC907, #FFDD5B, #FFC907, #FFDD5B, #FFC907, #FFDD5B, #FFC907, #FFDD5B, #FFC907); animation: spin-slow 40s linear infinite; }
.portrait-ring { position: absolute; bottom: -1.5rem; left: -1.5rem; width: 10rem; height: 10rem; border-radius: 50%; border: 8px solid rgba(37, 170, 224, 0.2); z-index: 0; }
.portrait-card { position: relative; border-radius: 24px; background: #fff; padding: 0.75rem; border: 1px solid var(--border-light); box-shadow: var(--shadow-lg); z-index: 1; }
.portrait-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 18px; }
.portrait-info { padding: 1.25rem 0.75rem 0.75rem; }
.portrait-info .overline { color: var(--iyi-turkuaz); margin-bottom: 0.4rem; display: block; }
.portrait-info h3 { font-size: 1.375rem; color: var(--iyi-lacivert); font-weight: 700; }
.portrait-info p { font-size: 0.85rem; color: var(--text-light); margin-top: 0.25rem; }

/* ---------- Home teaser cards ---------- */
.teasers { padding: 5rem 0; border-top: 1px solid var(--border-light); }
.teasers-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .teasers-grid { grid-template-columns: repeat(3, 1fr); } }
.teaser { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease; display: flex; flex-direction: column; }
.teaser:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(10, 30, 44, 0.12); border-color: rgba(37, 170, 224, 0.4); }
.teaser-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(37, 170, 224, 0.1); color: var(--iyi-turkuaz); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.teaser-icon svg { width: 24px; height: 24px; }
.teaser h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--iyi-lacivert); }
.teaser p { color: var(--text-muted); font-size: 0.95rem; flex-grow: 1; }
.teaser .arrow-link { margin-top: 1.5rem; font-size: 0.85rem; font-weight: 600; color: var(--iyi-turkuaz); text-transform: uppercase; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 0.35rem; }
.teaser .arrow-link::after { content: "→"; transition: transform 250ms ease; }
.teaser:hover .arrow-link::after { transform: translateX(4px); }

/* ---------- CV Section ---------- */
.cv-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .cv-grid { grid-template-columns: 8fr 4fr; gap: 4rem; } }
.cv-body { display: flex; flex-direction: column; gap: 1.5rem; color: var(--text-muted); font-size: 1.05rem; line-height: 1.85; }
.cv-body p .dropcap { font-size: 3rem; font-weight: 700; color: var(--iyi-turkuaz); float: left; margin-right: 0.75rem; margin-top: 0.25rem; line-height: 1; letter-spacing: -0.02em; }
.cv-body p .highlight { color: var(--iyi-turkuaz); font-weight: 600; }
.cv-body p .highlight-dark { color: var(--iyi-lacivert); font-weight: 600; }
.cv-body p.italic-note { font-style: italic; color: var(--text-light); padding-top: 1rem; font-weight: 500; }
.cv-aside { position: relative; }
@media (min-width: 1024px) { .cv-aside-sticky { position: sticky; top: 7rem; } }
.cv-profile-card-blur1 { position: absolute; top: -0.75rem; right: -0.75rem; width: 6rem; height: 6rem; border-radius: 50%; background: var(--iyi-sari); opacity: 0.3; filter: blur(32px); z-index: 0; }
.cv-profile-card-blur2 { position: absolute; bottom: -0.75rem; left: -0.75rem; width: 7rem; height: 7rem; border-radius: 50%; background: var(--iyi-turkuaz); opacity: 0.2; filter: blur(32px); z-index: 0; }
.cv-profile-card { position: relative; background: #fff; border-radius: 24px; padding: 0.75rem; border: 1px solid var(--border-light); box-shadow: var(--shadow-lg); z-index: 1; }
.cv-profile-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 18px; }
.cv-profile-info { padding: 1rem 0.5rem 0.5rem; }
.cv-profile-info .overline { font-size: 0.65rem; display: block; margin-bottom: 0.25rem; color: var(--iyi-turkuaz); }
.cv-profile-info h3 { font-size: 1.25rem; color: var(--iyi-lacivert); }
.cv-profile-info .subtitle { font-size: 0.75rem; color: var(--text-light); margin-top: 0.15rem; }
.cv-profile-facts { border-top: 1px solid var(--border-light); margin-top: 0.75rem; padding-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.75rem; }
.cv-profile-facts .row { display: flex; justify-content: space-between; }
.cv-profile-facts .row span:first-child { color: var(--text-light); }
.cv-profile-facts .row span:last-child { color: var(--iyi-lacivert); font-weight: 600; }

/* ---------- Social cards ---------- */
.social-cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 640px) { .social-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .social-cards-grid { grid-template-columns: repeat(4, 1fr); } }
.social-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease; display: flex; flex-direction: column; }
.social-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(10, 30, 44, 0.12); }
.social-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 2.5rem; }
.social-card-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.social-card-icon svg { width: 24px; height: 24px; }
.social-card-arrow { color: var(--text-light); transition: color 250ms ease, transform 250ms ease; }
.social-card-arrow svg { width: 20px; height: 20px; }
.social-card:hover .social-card-arrow { color: var(--iyi-turkuaz); transform: translate(4px, -4px); }
.social-card h3 { font-size: 1.25rem; color: var(--iyi-lacivert); margin-bottom: 0.25rem; }
.social-card p { font-size: 0.875rem; color: var(--text-light); }

/* Platform colors */
.icon-instagram { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
.icon-twitter { background: rgba(15, 20, 25, 0.1); color: #0F1419; }
.icon-facebook { background: rgba(24, 119, 242, 0.1); color: #1877F2; }
.icon-iyiparti { background: rgba(37, 170, 224, 0.1); color: var(--iyi-turkuaz); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 1200px; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; } }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 2rem; box-shadow: 0 20px 60px -30px rgba(37, 170, 224, 0.2); }
@media (min-width: 1024px) { .contact-form { padding: 2.75rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-field label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--text-light); display: block; margin-bottom: 0.75rem; }
.form-field input, .form-field textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border); padding: 0.75rem 0; font-size: 1.05rem; color: var(--iyi-lacivert); font-family: inherit; outline: none; transition: border-color 250ms ease; }
.form-field textarea { border: 1px solid var(--border); border-radius: 12px; padding: 1rem; resize: none; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--iyi-turkuaz); }
.form-field .error-msg { color: #ef4444; font-size: 0.72rem; margin-top: 0.5rem; display: none; }
.form-field.has-error .error-msg { display: block; }
.form-footer { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); margin-top: 1.5rem; }
@media (min-width: 768px) { .form-footer { flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; } }
.form-note { font-size: 0.72rem; color: var(--text-light); max-width: 26rem; line-height: 1.6; }

.contact-side { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-whatsapp-card { background: linear-gradient(135deg, var(--iyi-turkuaz), var(--iyi-turkuaz-dark)); color: #fff; border-radius: 24px; padding: 2rem; box-shadow: 0 30px 60px -30px rgba(37, 170, 224, 0.5); }
.contact-whatsapp-card svg { width: 32px; height: 32px; margin-bottom: 1rem; }
.contact-whatsapp-card .overline { color: rgba(255,255,255,0.85); display: block; margin-bottom: 0.5rem; }
.contact-whatsapp-card h3 { font-size: 1.75rem; margin-bottom: 1rem; color: #fff; }
.contact-whatsapp-card a { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: var(--iyi-turkuaz); padding: 0.6rem 1.25rem; border-radius: 999px; font-weight: 600; font-size: 0.875rem; transition: background 250ms ease, color 250ms ease; }
.contact-whatsapp-card a:hover { background: var(--iyi-sari); color: var(--iyi-lacivert); }
.contact-whatsapp-card a svg { width: 16px; height: 16px; margin: 0; }
.contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card .info-block .overline { display: block; margin-bottom: 0.5rem; color: var(--text-light); }
.contact-info-card .info-row { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--iyi-lacivert); font-size: 0.9rem; }
.contact-info-card .info-row svg { width: 16px; height: 16px; color: var(--iyi-turkuaz); margin-top: 3px; flex-shrink: 0; }

/* ---------- Footer ---------- */
footer { background: var(--iyi-lacivert); color: #fff; padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.footer-brand .overline { color: var(--iyi-sari); font-size: 0.65rem; display: block; margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; max-width: 26rem; line-height: 1.7; }
.footer-col .overline { color: rgba(255,255,255,0.4); display: block; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.85); font-size: 0.9rem; transition: color 200ms ease; }
.footer-col a:hover { color: var(--iyi-turkuaz); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: all 250ms ease; }
.footer-social a:hover { background: var(--iyi-turkuaz); border-color: var(--iyi-turkuaz); }
.footer-social svg { width: 16px; height: 16px; }
.footer-big-name {
  width: 100%;
  max-width: 100%;
  font-size: clamp(4rem, 16vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.04);
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767px) {
  .footer-big-name {
    font-size: clamp(2.25rem, 12vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
}

@media (max-width: 380px) {
  .footer-big-name {
    font-size: 11vw;
    letter-spacing: -0.055em;
  }
}
.footer-meta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; align-items: flex-start; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
@media (min-width: 768px) { .footer-meta { flex-direction: row; align-items: center; } }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { display: flex; gap: 0.5rem; font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.breadcrumbs a:hover { color: var(--iyi-turkuaz); }
.breadcrumbs .sep { color: var(--text-light); }

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.notfound-code { font-size: clamp(6rem, 20vw, 12rem); color: var(--iyi-turkuaz); font-weight: 700; line-height: 1; }

/* ---------- Toast ---------- */
.toast { position: fixed; top: 1.5rem; left: 50%; transform: translate(-50%, -100px); background: var(--iyi-lacivert); color: #fff; padding: 0.85rem 1.5rem; border-radius: 999px; font-size: 0.9rem; box-shadow: var(--shadow-md); z-index: 60; opacity: 0; transition: transform 350ms ease, opacity 350ms ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.error { background: #ef4444; }

/* ---------- Animations ---------- */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 700ms ease forwards; }
.delay-1 { animation-delay: 100ms; opacity: 0; }
.delay-2 { animation-delay: 200ms; opacity: 0; }
.delay-3 { animation-delay: 300ms; opacity: 0; }

/* Utils */
.hidden { display: none; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 2rem; }
