@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@200;300;400;500;600&family=JetBrains+Mono:wght@300;400&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --surface: #161616;
  --surface-2: #1c1c1c;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text: #e8e4df;
  --text-secondary: #8a8580;
  --text-dim: #5a5550;
  --amber: #d4a053;
  --amber-light: #e8c085;
  --amber-glow: rgba(212, 160, 83, 0.15);
  --amber-glow-strong: rgba(212, 160, 83, 0.3);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 300;
}

::selection {
  background: var(--amber);
  color: var(--black);
}

/* ─── Grain Overlay ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: -0.01em;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-brand:hover {
  opacity: 0.8;
}

.nav-brand .brand-dot {
  color: var(--amber);
  font-size: 2rem;
  line-height: 0;
  vertical-align: baseline;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1000;
  position: relative;
}

.nav-hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Mobile Overlay ─── */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  z-index: 999;
}

.mobile-overlay.open {
  display: flex;
}

.mobile-overlay a {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}

.mobile-overlay a:hover {
  color: var(--amber);
}

/* ─── Hero Section ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.hero-bg .orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
}

.hero-bg .orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(212, 160, 83, 0.08) 0%, transparent 70%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 2.5rem;
}

.hero-label .line {
  width: 40px;
  height: 1px;
  background: var(--amber);
}

.hero-name {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-name .last-name {
  font-style: italic;
  color: var(--amber);
}

.hero-title {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--amber);
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--amber-glow-strong);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-hover);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── Section Common ─── */
.section {
  padding: 8rem 3rem;
  position: relative;
}

.section-header {
  margin-bottom: 5rem;
}

.section-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 300;
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--amber);
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin-top: 2rem;
}

/* ─── About Section ─── */
.about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text p strong {
  color: var(--text);
  font-weight: 500;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.detail-block {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s;
}

.detail-block:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.detail-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--amber);
}

.detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.detail-value {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 400;
}

.detail-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* ─── Experience Section ─── */
.experience {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline {
  max-width: 900px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--amber), var(--border), transparent);
}

.timeline-item {
  padding-left: 3.5rem;
  padding-bottom: 4rem;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -5px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--amber);
  transition: all 0.3s;
}

.timeline-item:hover .timeline-dot {
  background: var(--amber);
  box-shadow: 0 0 20px var(--amber-glow-strong);
}

.timeline-period {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.timeline-role {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.timeline-company {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 400;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── Skills Section ─── */
.skills { background: var(--black); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  max-width: 1000px;
  border: 1px solid var(--border);
}

.skill-cell {
  background: var(--black);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s;
  cursor: default;
}

.skill-cell:hover {
  background: var(--surface);
}

.skill-cell:hover .skill-icon {
  color: var(--amber);
  transform: scale(1.1);
}

.skill-icon {
  font-size: 1.5rem;
  transition: all 0.4s;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.skill-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
}

.skill-tag {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* ─── Portfolio Section ─── */
.portfolio {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.portfolio-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  align-items: center;
}

.portfolio-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 260px;
  height: 555px;
  background: linear-gradient(
    160deg,
    #e8e6e2 0%, #d8d5d0 15%, #c5c2bc 30%,
    #d4d1cc 50%, #bfbbb5 70%, #d0cdc8 85%, #e0ddd8 100%
  );
  border-radius: 14px;
  padding: 4px;
  position: relative;
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.35),
    0 25px 50px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    inset 2px 0 0 rgba(255, 255, 255, 0.3),
    inset -2px 0 0 rgba(0, 0, 0, 0.08),
    0 0 60px rgba(212, 160, 83, 0.08);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 3;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 135px;
  width: 3px;
  height: 50px;
  background: linear-gradient(90deg, #b0ada8, #ccc9c4);
  border-radius: 0 3px 3px 0;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.15), inset -1px 0 0 rgba(255, 255, 255, 0.3);
}

.phone-vol-buttons {
  position: absolute;
  right: -3px;
  top: 200px;
  width: 3px;
  height: 32px;
  background: linear-gradient(90deg, #b0ada8, #ccc9c4);
  border-radius: 0 3px 3px 0;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.15), inset -1px 0 0 rgba(255, 255, 255, 0.3);
}

.phone-vol-buttons::after { display: none; }

.phone-mockup:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #000;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 4px 0 6px rgba(255, 255, 255, 0.06),
    inset -4px 0 6px rgba(255, 255, 255, 0.06),
    inset 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}

.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, transparent 3%, transparent 97%, rgba(255,255,255,0.1) 100%);
  pointer-events: none;
  z-index: 4;
}

.phone-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, transparent 2%, transparent 98%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  z-index: 3;
}

.phone-carousel {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.phone-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.phone-slide.active {
  opacity: 1;
}

.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  background: radial-gradient(circle, #0a0a15 40%, #1e1e30 70%, #2a2a40 100%);
  border: 1px solid rgba(50, 50, 60, 0.5);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.6), 0 0 6px rgba(0, 0, 0, 0.2), inset 0 0.5px 1px rgba(255, 255, 255, 0.1);
}

.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
}

.phone-glow-1 {
  top: -50px; right: -50px;
  background: var(--amber-glow-strong);
}

.phone-glow-2 {
  bottom: -30px; left: -60px;
  background: var(--amber-glow);
}

.portfolio-info h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.portfolio-info .portfolio-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.portfolio-info p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 460px;
}

.portfolio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.portfolio-features span {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  letter-spacing: 0.03em;
  transition: all 0.3s;
}

.portfolio-features span:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ─── Contact Section ─── */
.contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1100px;
}

.contact-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-email {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  color: var(--amber);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
  margin-bottom: 3rem;
}

.contact-email:hover {
  color: var(--amber-light);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.4s;
}

.social-link:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.contact-form-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--amber);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

/* ─── Footer ─── */
footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
}

.footer-left {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-right {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero elementleri her zaman görünür — titreme önlenir */
.hero .reveal,
.hero .reveal-left {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-card { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-visual { order: -1; }
}

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links { display: none !important; }

  .section { padding: 5rem 1.5rem; }
  .hero { padding: 0 1.5rem; }
  .hero-name { font-size: 3.5rem; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll-indicator { display: none; }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .phone-mockup {
    width: 200px;
    height: 427px;
    transform: none;
  }

  .phone-mockup:hover { transform: none; }
  .phone-screen { border-radius: 11px; }
  .phone-screen img { border-radius: 11px !important; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2.8rem; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
