/* ========================================
   1. CSS RESET & CUSTOM PROPERTIES
   ======================================== */

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

:root {
  /* Primary palette */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;

  /* Accent */
  --accent-primary: #f26522;
  --accent-secondary: #d4551a;
  --accent-glow: rgba(242, 101, 34, 0.15);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;

  /* Utility */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --overlay-dark: rgba(0, 0, 0, 0.7);

  /* Fonts */
  --font-display: 'Bebas Neue', cursive;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ========================================
   2. BASE TYPOGRAPHY
   ======================================== */

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.1;
}

h1, h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

p {
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ========================================
   3. SCROLL-SNAP FULL PAGE LAYOUT
   ======================================== */

#fullpage {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.section {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Alternate section backgrounds */
.section:nth-child(even) {
  background: var(--bg-secondary);
}

.section:nth-child(odd) {
  background: var(--bg-primary);
}

/* ========================================
   3b. DOT NAVIGATION
   ======================================== */

.dot-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dot-nav a {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
}

.dot-nav a:hover {
  background: var(--text-secondary);
  transform: scale(1.3);
}

.dot-nav a.active {
  background: var(--accent-primary);
  transform: scale(1.4);
}

.dot-nav a .dot-tooltip {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.dot-nav a:hover .dot-tooltip {
  opacity: 1;
}

/* ========================================
   4. NAVIGATION
   ======================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  transition: background 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-brand .nav-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-primary);
  letter-spacing: 3px;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu li a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-menu li a:hover,
.nav-menu li a.active,
.nav-menu li.active a {
  color: var(--text-primary);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after,
.nav-menu li.active a::after {
  width: 100%;
}

/* ========================================
   5. SHARED SECTION STYLES
   ======================================== */

.section-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.section-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--text-primary);
  opacity: 0.05;
  position: absolute;
  top: -2.5rem;
  left: -0.5rem;
  line-height: 1;
  user-select: none;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  position: relative;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--accent-primary);
  margin-top: 0.75rem;
  transform-origin: left;
}

/* Animation base */
.anim-element {
  opacity: 0;
}

/* ========================================
   6. HERO SECTION
   ======================================== */

.section[data-anchor="hero"] {
  background: var(--bg-primary) !important;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(242, 101, 34, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(242, 101, 34, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 2rem;
}

.hero-greeting {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  color: var(--text-primary);
  line-height: 0.95;
  letter-spacing: 6px;
  margin-bottom: 1rem;
}

.hero-tagline-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-divider {
  color: var(--text-muted);
  font-weight: 300;
}

.hero-location {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent-primary);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--accent-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-primary);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--border-subtle);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.scroll-arrow {
  color: var(--text-muted);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ========================================
   7. ABOUT SECTION
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo-wrapper {
  position: relative;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.about-photo-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-photo-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 2px solid var(--accent-primary);
  display: block;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.about-body {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-primary);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ========================================
   8. EXPERIENCE SECTION
   ======================================== */

.experience-layout {
  max-width: 800px;
  margin: 0 auto;
}

.exp-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.exp-tab {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.exp-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.exp-tab:hover {
  color: var(--text-secondary);
}

.exp-tab.active {
  color: var(--text-primary);
}

.exp-tab.active::after {
  transform: scaleX(1);
}

.timeline-container {
  display: none;
}

.timeline-container.active {
  display: block;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-subtle);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
  padding-left: 1.5rem;
}

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

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-primary);
  z-index: 1;
}

.timeline-item:first-child .timeline-dot {
  background: var(--accent-primary);
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
  margin-bottom: 0.4rem;
}

.timeline-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.timeline-place {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   9. PORTFOLIO SECTION
   ======================================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

.portfolio-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-primary);
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background:
    radial-gradient(ellipse at center, rgba(242, 101, 34, 0.05), transparent 70%),
    var(--bg-primary);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 101, 34, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--text-primary);
  text-decoration: none;
  transition: background 0.3s ease;
}

.portfolio-link:hover {
  background: var(--text-primary);
  color: var(--accent-primary);
}

.portfolio-info {
  padding: 1.25rem;
}

.portfolio-info h3 {
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.portfolio-info p {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.portfolio-tags span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: var(--bg-primary);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border-subtle);
}

/* ========================================
   10. CERTIFICATIONS & SKILLS SECTION
   ======================================== */

.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.skills-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cert-icon {
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.cert-info h4 {
  color: var(--text-primary);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.cert-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tags span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.skill-tags span:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* ========================================
   11. CONTACT SECTION
   ======================================== */

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-lead {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.contact-grid {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  padding: 2rem 2.5rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.contact-icon {
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.site-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.site-footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================
   12. ANIMATION KEYFRAMES
   ======================================== */

@keyframes lineExpand {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ========================================
   13. RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }

  .skills-layout {
    gap: 2rem;
  }

  .section-number {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  #fullpage {
    scroll-snap-type: none;
    height: auto;
    overflow: visible;
  }

  .section {
    height: auto;
    min-height: 100vh;
    scroll-snap-align: none;
    padding: 5rem 0 3rem;
  }

  .dot-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 5rem 2.5rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-subtle);
  }

  .nav-menu.open {
    right: 0;
  }

  .section-inner {
    padding: 0 1.5rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-name {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-tagline-wrapper {
    flex-direction: column;
    gap: 0.25rem;
  }

  .hero-divider {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 280px;
  }

  .btn-primary, .btn-outline {
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo-placeholder,
  .about-photo-wrapper img {
    max-width: 200px;
    margin: 0 auto;
  }

  .about-stats {
    justify-content: center;
  }

  .experience-layout {
    max-width: 100%;
  }

  .exp-tabs {
    justify-content: center;
  }

  .exp-tab {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .skills-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 300px;
  }

  .section-number {
    font-size: 3.5rem;
    top: -1.5rem;
  }

  .anim-element {
    opacity: 0;
  }

  .anim-element.visible {
    opacity: 1;
    transform: translateY(0) !important;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
}

@media (max-width: 480px) {
  .site-nav {
    padding: 1rem 1.25rem;
  }

  .section-inner {
    padding: 0 1rem;
  }

  .hero-greeting {
    font-size: 0.9rem;
  }

  .hero-tagline {
    font-size: 0.8rem;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .stat-number, .stat-plus {
    font-size: 2rem;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .exp-tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
}

/* ========================================
   14. ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .anim-element {
    opacity: 1 !important;
    transform: none !important;
  }

  #fullpage {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
