* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Organetto Exp Bold";
  src: url("assets/fonts/OrganettoExp-Bold.woff2") format("woff2"),
       url("assets/fonts/OrganettoExp-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Orbitron", "Organetto Exp Bold", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
  letter-spacing: 0.06em;
}

.hidden {
  display: none;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000;
}

.header {
  padding: 16px 20px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  max-width: 260px;
  width: 80%;
  height: auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.menu-button {
  background: transparent;
  border: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

.menu-dot {
  width: 7px;
  height: 7px;
  background-color: #EDE6D3;
  border-radius: 999px;
  display: block;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
}

.main.main-page {
  display: block;
  align-items: stretch;
  justify-content: flex-start;
  padding: 18px 20px 24px;
  overflow: auto;
}

.page-section {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 6px;
}

.page-title {
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.page-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.chip {
  border: 1px solid rgba(237, 230, 211, 0.45);
  color: #EDE6D3;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: default;
}

.chip:hover {
  background: rgba(237, 230, 211, 0.12);
  border-color: rgba(237, 230, 211, 0.7);
  color: #EDE6D3;
  transform: translateY(-2px);
}

.chip-link {
  text-decoration: none;
  cursor: pointer;
}

.chip-link:active {
  opacity: 0.8;
  transform: translateY(0);
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 14px;
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 230, 211, 0.95);
  margin-bottom: 10px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(237, 230, 211, 0.85);
  margin-top: 3px;
  box-shadow: 0 0 0 4px rgba(237, 230, 211, 0.08);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.timeline-sub {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

.experience {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.experience-item {
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  cursor: default;
}

.experience-item:hover {
  background: rgba(237, 230, 211, 0.08);
  border-color: rgba(237, 230, 211, 0.4);
  transform: translateY(-2px);
}

.experience-item-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.experience-item-link:active {
  opacity: 0.8;
  transform: translateY(0);
}

.experience-company {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.experience-role {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(237, 230, 211, 0.92);
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card:hover {
  background: rgba(237, 230, 211, 0.08);
  border-color: rgba(237, 230, 211, 0.4);
  transform: translateY(-2px);
}

.contact-card:hover .contact-icon {
  background: rgba(237, 230, 211, 0.15);
  border-color: rgba(237, 230, 211, 0.5);
  transform: scale(1.05);
}

.contact-card:hover .contact-icon svg {
  color: #EDE6D3;
}

.contact-card:active {
  opacity: 0.8;
  transform: translateY(0);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 230, 211, 0.06);
  border: 1px solid rgba(237, 230, 211, 0.25);
  transition: all 0.3s ease;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: #EDE6D3;
  transition: color 0.3s ease;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237, 230, 211, 0.9);
}

.contact-value {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.86);
}

.socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(237, 230, 211, 0.35);
  color: rgba(237, 230, 211, 0.95);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-link:hover {
  background: rgba(237, 230, 211, 0.12);
  border-color: rgba(237, 230, 211, 0.6);
  color: #EDE6D3;
  transform: translateY(-2px);
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.social-link:active {
  opacity: 0.8;
  transform: translateY(0);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
  z-index: 900;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 68%;
  max-width: 280px;
  background: #050505;
  border-left: 1px solid #333;
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
  z-index: 950;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu-inner {
  height: 100%;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.side-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-menu-link {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.side-menu-link:active {
  opacity: 0.7;
}

.side-menu-languages {
  display: flex;
  gap: 10px;
}

.lang-btn {
  flex: 1;
  padding: 8px 0;
  border-radius: 999px;
  border: 1px solid #555;
  background: transparent;
  color: #f5f5f5;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-btn.lang-active {
  background: #EDE6D3;
  border-color: #EDE6D3;
  color: #000;
}

.footer {
  padding: 8px 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-img {
  max-width: 220px;
  width: 70%;
  height: auto;
}

.emblem-wrapper {
  position: absolute;
  left: -80%;
  top: 50%;
  transform: translateY(-50%);
  width: 160%;
  max-width: none;
  pointer-events: none;
}

.emblem {
  width: 100%;
  height: auto;
  display: block;
  animation: emblem-rotate 90s linear infinite;
  transform-origin: center center;
}

.emblem-inner {
  transform: translateX(-120%);
  animation: emblem-slide-in 1.8s ease-out forwards;
}

@keyframes emblem-slide-in {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes emblem-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.desktop-warning {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.desktop-warning.hidden {
  display: none;
}

.warning-box {
  max-width: 420px;
  background: #111;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid #333;
  text-align: center;
  line-height: 1.5;
  font-size: 15px;
}

/* Yalnız mobil üçün layout */
@media (max-width: 768px) {
  body {
    display: block;
  }
}
