:root {
  --primary: #ff4d00;
  --secondary: #0d1b2a;
  --dark: #000;
  --light: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 50px;
  align-items: center;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  z-index: 10;
  transition: 0.3s;
}

.logo {
  height: 80px;
  border-radius: 10%;
}

.navbar a {
  color: white;
  margin-left: 24px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.navbar a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  padding: 8px 18px;
  border-radius: 6px;
  color: white !important;
}

.nav-cta:hover {
  opacity: 0.85;
  color: white !important;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('assets/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* FLOATING EMOJIS */
.hero-floats span {
  position: absolute;
  left: var(--x);
  top:  var(--y);
  font-size: 2rem;
  opacity: 0.18;
  animation: floatUp 6s ease-in-out var(--d) infinite alternate;
  pointer-events: none;
  z-index: 2;
  filter: blur(0.5px);
}

@keyframes floatUp {
  0%   { transform: translateY(0px)   rotate(0deg); }
  100% { transform: translateY(-22px) rotate(8deg); }
}

/* HERO TITLE */
.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.hero-line1 {
  display: block;
  color: white;
}

.hero-typewriter {
  color: var(--primary);
  text-shadow: 0 0 30px rgba(255,77,0,0.6), 0 0 60px rgba(255,77,0,0.3);
}

.hero-cursor {
  color: var(--primary);
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* HERO BADGES */
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  animation: fadeDown 0.9s ease 0.6s both;
}

.hero-badges span {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}

/* TICKER */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,77,0,0.92);
  padding: 10px 0;
  overflow: hidden;
  z-index: 3;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  padding: 0 36px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
}

.ticker-track span::after {
  content: '✦';
  margin-left: 36px;
  opacity: 0.6;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(13,27,42,0.5));
  z-index: 1;
}

.hero-content {
  color: white;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,77,0,0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero span {
  color: var(--primary);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero button {
  padding: 13px 30px;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: opacity 0.2s;
}

.hero button:hover {
  opacity: 0.85;
}

.hero-btn-outline {
  background: transparent !important;
  border: 2px solid white !important;
  color: white;
}

.hero-btn-outline:hover {
  background: white !important;
  color: black !important;
  opacity: 1 !important;
}

/* SERVICES */
.services {
  padding: 80px 20px;
  text-align: center;
  background: var(--secondary);
  color: white;
}

.services-tag {
  display: inline-block;
  background: rgba(255,77,0,0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.services h2 span {
  color: var(--primary);
}

.services-sub {
  color: #aaa;
  margin-bottom: 10px;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: #1b263b;
  padding: 36px 24px;
  width: 200px;
  border-radius: 14px;
  transition: 0.3s;
  border: 1px solid transparent;
  cursor: default;
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
}

.card p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

.card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-10px);
}

.card:hover p {
  color: rgba(255,255,255,0.85);
}

/* CLIENTS */
.clients {
  padding: 80px 20px;
  text-align: center;
  background: #0a0a0a;
  color: white;
}

.clients-tag {
  display: inline-block;
  background: rgba(255,77,0,0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.clients h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.clients h2 span {
  color: var(--primary);
}

.clients-sub {
  color: #aaa;
  margin-bottom: 40px;
}

.clients-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.client-card {
  background: #1b263b;
  border: 1px solid #2e3f55;
  border-radius: 14px;
  padding: 32px 28px;
  text-decoration: none;
  transition: 0.3s;
  width: 260px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  background: #1f2e42;
}

.client-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.client-name {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.client-type {
  font-size: 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.client-desc {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
  margin-top: 6px;
}

.client-badge {
  display: inline-block;
  margin-top: 10px;
  background: rgba(255,77,0,0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.clients-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid #2e3f55;
  padding-top: 50px;
}

.stat h3 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat p {
  font-size: 14px;
  color: #aaa;
}
.portfolio {
  padding: 80px 20px;
  text-align: center;
  background: #0a0a0a;
  color: white;
}

.portfolio-tag {
  display: inline-block;
  background: rgba(255,77,0,0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.portfolio h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.portfolio h2 span {
  color: var(--primary);
}

.portfolio-sub {
  color: #aaa;
  margin-bottom: 40px;
}

.portfolio-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.pcat-card {
  background: #1b263b;
  border: 1px solid #2e3f55;
  border-radius: 16px;
  padding: 36px 28px;
  width: 220px;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.pcat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,77,0,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pcat-card:hover::before { opacity: 1; }

.pcat-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255,77,0,0.2);
}

.pcat-icon {
  font-size: 2.6rem;
}

.pcat-card h3 {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.pcat-card p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

.pcat-arrow {
  font-size: 18px;
  color: var(--primary);
  margin-top: 6px;
  transition: transform 0.3s;
}

.pcat-card:hover .pcat-arrow {
  transform: translateX(6px);
}

/* PORTFOLIO PAGE */
.ppage-hero {
  padding: 140px 20px 60px;
  text-align: center;
  background: var(--secondary);
  color: white;
  position: relative;
  overflow: hidden;
}

.ppage-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ppage-hero-content {
  position: relative;
  z-index: 1;
}

.ppage-hero h1 { font-size: 3rem; margin-bottom: 12px; }
.ppage-hero h1 span { color: var(--primary); }
.ppage-hero p { color: #aaa; font-size: 16px; margin-bottom: 24px; }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #2e3f55;
  color: #aaa;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.back-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.ppage-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 30px 20px;
  background: #0a0a0a;
  position: sticky;
  top: 70px;
  z-index: 9;
  border-bottom: 1px solid #1a1a1a;
}

.ppage-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid #2e3f55;
  transition: 0.2s;
  letter-spacing: 0.4px;
}

.ppage-nav a:hover, .ppage-nav a.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.ppage-section {
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.ppage-section:nth-child(odd)  { background: #0a0a0a; }
.ppage-section:nth-child(even) { background: var(--secondary); }

.ppage-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,0,0.12);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ppage-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.ppage-section h2 span { color: var(--primary); }

.ppage-section-sub {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 40px;
}

.ppage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.ppage-item {
  background: #1b263b;
  border: 1px solid #2e3f55;
  border-radius: 14px;
  padding: 28px 24px;
  width: 240px;
  text-align: left;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ppage-item:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(255,77,0,0.15);
}

.ppage-item-icon { font-size: 2rem; }

.ppage-item h4 {
  font-size: 15px;
  color: white;
  font-weight: bold;
}

.ppage-item p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

.ppage-item-badge {
  display: inline-block;
  margin-top: 6px;
  background: rgba(255,77,0,0.12);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
}

.ppage-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a0a00, var(--primary));
  text-align: center;
  color: white;
}

.ppage-cta h2 { font-size: 2.2rem; margin-bottom: 12px; }
.ppage-cta p  { opacity: 0.85; margin-bottom: 28px; }

.ppage-cta a {
  display: inline-block;
  padding: 14px 36px;
  background: black;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.ppage-cta a:hover {
  background: white;
  color: black;
}

/* CTA */
.cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a0a00, var(--primary));
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.cta h2 span {
  color: var(--dark);
}

.cta-sub {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 30px;
}

.cta button {
  padding: 14px 36px;
  background: black;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.cta button:hover {
  background: white;
  color: black;
}

/* CONTACT */
.contact {
  padding: 80px 20px;
  text-align: center;
  background: var(--secondary);
  color: white;
}

.contact-tag {
  display: inline-block;
  background: rgba(255,77,0,0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact h2 span {
  color: var(--primary);
}

.contact-sub {
  color: #aaa;
  margin-top: 8px;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.contact-info {
  background: #1b263b;
  border-radius: 12px;
  padding: 30px;
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 4px;
  border-bottom: 1px solid #2e3f55;
  padding-bottom: 12px;
}

.info-item {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ccc;
  line-height: 1.5;
}

.info-item span {
  color: white;
}

.info-item a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item a:hover span {
  color: var(--primary);
}

.contact-note {
  margin-top: 10px;
  border-top: 1px solid #2e3f55;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #aaa;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 2;
  min-width: 300px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}

.form-group label {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.4px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #2e3f55;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #1b263b;
  color: white;
  width: 100%;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.contact-form button {
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: 0.3s;
  margin-top: 4px;
}

.contact-form button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* CURSOR GLOW */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.12) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}

/* HERO CANVAS */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  color: white;
  text-align: center;
  position: relative;
  padding: 0 20px;
  z-index: 2;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(13,27,42,0.5));
  z-index: 1;
}

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

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

/* STAGGERED CARD DELAYS */
.card:nth-child(1), .client-card:nth-child(1) { transition-delay: 0s; }
.card:nth-child(2), .client-card:nth-child(2) { transition-delay: 0.1s; }
.card:nth-child(3), .client-card:nth-child(3) { transition-delay: 0.2s; }
.card:nth-child(4), .client-card:nth-child(4) { transition-delay: 0.3s; }
.card:nth-child(5), .client-card:nth-child(5) { transition-delay: 0.4s; }

/* HERO TEXT ENTRANCE */
.hero-tag {
  animation: fadeDown 0.8s ease both;
}

.hero h1 {
  animation: fadeDown 0.9s ease 0.15s both;
}

.hero-sub {
  animation: fadeDown 0.9s ease 0.3s both;
}

.hero-btns {
  animation: fadeDown 0.9s ease 0.45s both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* NAVBAR LINK UNDERLINE ANIMATION */
.navbar a:not(.nav-cta) {
  position: relative;
}

.navbar a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar a:not(.nav-cta):hover::after {
  width: 100%;
}

/* STAT COUNTER PULSE */
.stat h3 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 6px;
  transition: transform 0.3s;
}

.stat:hover h3 {
  transform: scale(1.15);
}

/* WHATSAPP FLOAT PULSE RING */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2);   opacity: 0; }
}

/* SECTION TAG SHIMMER */
.services-tag, .clients-tag, .portfolio-tag, .contact-tag, .cta-tag {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* GALLERY ITEM ENTRANCE */
.gallery-item {
  animation: none;
}

/* CTA BUTTON PULSE */
.cta button {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
}

/* FOOTER */
footer {
  background: black;
  color: white;
  padding: 20px;
  text-align: center;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  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;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37,211,102,0.6);
}


.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-title { font-size: 2.4rem; }
  .hero-badges { gap: 8px; }
  .hero-badges span { font-size: 11px; padding: 5px 10px; }
  .ticker-track span { font-size: 11px; padding: 0 20px; }
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: black;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .menu-toggle {
    display: block;
  }
}