/* ============================================
   PRUPP DESIGN — MOBILE-FIRST RESPONSIVE
   Brand: #445ED7 / #1C2878 / #FFFFFD
   ============================================ */

/* ============================================
   TABLET (max-width: 991px)
   ============================================ */
@media screen and (max-width: 991px) {
  .container {
    width: 92%;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 7rem 0 4rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-desc {
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .feature-icon-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .feature-card h4 {
    margin-bottom: 0.4rem;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .product-card .product-img {
    height: 200px;
  }

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

  .process-step::after {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-main img {
    height: 300px;
  }

  .sustainability-content {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery {
    position: static;
  }

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

  .blog-card--featured .blog-card-link {
    grid-template-columns: 1fr;
  }

  .blog-card--featured .blog-card-image img,
  .blog-card--featured .blog-card-placeholder {
    min-height: 220px;
    height: 220px;
  }

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

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

  .blog-preview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ============================================
   MOBILE (max-width: 768px)
   ============================================ */
@media screen and (max-width: 768px) {
  .container {
    width: 94%;
  }

  .features,
  .products-section,
  .process-section,
  .testimonials,
  .faq-section {
    padding: 3.5rem 0;
  }

  .cta-section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  /* ---------- Mobile Navigation ---------- */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 1001;
  }

  .hamburger:hover,
  .hamburger:active {
    background-color: rgba(255, 255, 255, 0.15);
  }

  .hamburger.active {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .hamburger.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(160deg, #0d1117 0%, #1c2878 50%, #445ed7 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 6rem 1.5rem 2rem;
    transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .nav-links.active li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 1rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 0;
    transition: all 0.25s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #fffffd;
    background: rgba(255, 255, 255, 0.08);
    padding-left: 1rem;
    border-radius: 10px;
  }

  .nav-links li:last-child a {
    margin-top: 1rem;
    background: rgba(68, 94, 215, 0.25);
    border: 1px solid rgba(68, 94, 215, 0.4);
    border-radius: 12px;
    justify-content: center;
    font-weight: 600;
    border-bottom: none;
  }

  .nav-links li:last-child a:hover {
    background: rgba(68, 94, 215, 0.4);
  }

  .overlay {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  /* ---------- Hero Mobile ---------- */
  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-inner {
    padding: 6rem 0 3rem;
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.8rem;
    margin-bottom: 1.25rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    justify-content: center;
    padding: 0.9rem 1.5rem;
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 0;
    margin-top: 2.5rem;
    padding-top: 2rem;
    justify-content: space-around;
  }

  .stat-item {
    text-align: center;
    flex: 1;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* ---------- Features ---------- */
  .features-header {
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .feature-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    border-radius: 12px;
  }

  .feature-card h4 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* ---------- Products ---------- */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-card .product-img {
    height: 160px;
  }

  .product-card .product-info {
    padding: 0.75rem;
  }

  .product-card .product-info h4 {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .product-card .product-desc {
    font-size: 0.78rem;
    -webkit-line-clamp: 1;
    margin-bottom: 0.5rem;
  }

  .product-card .product-footer {
    padding: 0.6rem 0.75rem;
  }

  .product-price {
    font-size: 1rem;
  }

  .product-action-btn {
    font-size: 0.72rem;
    padding: 0.35rem 0.6rem;
    gap: 0.25rem;
  }

  .product-type-badge {
    font-size: 0.62rem;
    padding: 0.2rem 0.55rem;
    top: 0.6rem;
    left: 0.6rem;
  }

  .products-header .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* ---------- Process ---------- */
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .process-step {
    padding: 1.25rem 1rem;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .process-step h4 {
    font-size: 0.95rem;
  }

  .process-step p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  /* ---------- Testimonials ---------- */
  .testimonials-grid {
    gap: 0.75rem;
  }

  .testimonial-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .testimonial-quote {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
  }

  .testimonial-card .testimonial-text {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .testimonial-author-name {
    font-size: 0.88rem;
  }

  .testimonial-stars {
    font-size: 0.7rem;
  }

  /* ---------- FAQ ---------- */
  .faq-container {
    margin-top: 2rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }

  .faq-question h4 {
    font-size: 0.88rem;
  }

  .faq-toggle {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }

  /* ---------- CTA ---------- */
  .cta-content h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .cta-content p {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    justify-content: center;
    width: 100%;
  }

  /* ---------- Page Banner ---------- */
  .page-banner {
    padding: 7rem 0 2.5rem;
  }

  .page-banner h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .page-banner p {
    font-size: 0.92rem;
  }

  /* ---------- Products Filter ---------- */
  .products-filter {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
  }

  .filter-group {
    width: 100%;
  }

  .filter-select {
    width: 100%;
  }

  .search-input-wrap {
    width: 100%;
    min-width: 0;
  }

  /* ---------- Product Detail ---------- */
  .product-detail {
    padding: 1rem 0 3rem;
  }

  .product-detail-grid {
    gap: 1.5rem;
  }

  .product-details .product-title {
    font-size: 1.5rem;
  }

  /* Variant Selector Mobile */
  .variant-option {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .variant-thumb {
    width: 48px;
    height: 48px;
  }

  .variant-name {
    font-size: 0.88rem;
  }

  .variant-price {
    font-size: 0.82rem;
  }

  .variant-desc {
    font-size: 0.72rem;
  }

  .variant-check {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }

  .product-price-large .amount {
    font-size: 2rem;
  }

  .product-specs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .spec-card {
    padding: 0.75rem 0.5rem;
  }

  .spec-card i {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .spec-card .spec-label {
    font-size: 0.65rem;
  }

  .spec-card .spec-value {
    font-size: 0.78rem;
  }

  .product-meta-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .shipping-info-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .related-products h3 {
    font-size: 1.2rem;
  }

  /* Lightbox */
  .lightbox-controls {
    padding: 0 8px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .close-lightbox {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
    font-size: 22px;
  }

  .lightbox-thumbnails {
    gap: 6px;
    margin-top: 12px;
  }

  .lightbox-thumb {
    width: 48px;
    height: 48px;
  }

  .thumbnails {
    gap: 0.5rem;
  }

  .thumbnail {
    width: 56px;
    height: 56px;
  }

  /* ---------- Blog ---------- */
  .blog-section {
    padding: 3rem 0 1rem;
  }

  .blog-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    gap: 0.4rem;
  }

  .blog-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-tag {
    flex-shrink: 0;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  .blog-card-image img {
    height: 180px;
  }

  .blog-card-placeholder {
    height: 180px;
    font-size: 2.5rem;
  }

  .blog-card-body {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1.05rem;
  }

  .blog-card-excerpt {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }

  .blog-card-meta {
    flex-direction: row;
    gap: 0.75rem;
    font-size: 0.72rem;
  }

  .blog-hero-banner {
    padding: 7rem 0 2rem;
  }

  .blog-hero-title {
    font-size: 1.3rem;
  }

  .blog-hero-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .blog-detail-content {
    font-size: 0.95rem;
  }

  .blog-detail-share {
    flex-wrap: wrap;
  }

  .blog-detail-content .pros-cons {
    grid-template-columns: 1fr;
  }

  .blog-detail-content .step {
    gap: 0.75rem;
  }

  .blog-detail-content .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  /* ---------- About ---------- */
  .about-section {
    padding: 3rem 0;
  }

  .about-content h3 {
    font-size: 1.3rem;
  }

  .about-image-main img {
    height: 250px;
    border-radius: 16px;
  }

  .about-stat-float {
    bottom: -12px;
    right: -8px;
    padding: 1rem 1.25rem;
  }

  .about-stat-float .stat-number {
    font-size: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .team-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1.25rem;
  }

  .team-avatar {
    width: 64px;
    height: 64px;
    font-size: 1.4rem;
    margin: 0;
    flex-shrink: 0;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .tech-card {
    padding: 1.25rem;
  }

  .tech-card i {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }

  .tech-card h4 {
    font-size: 0.9rem;
  }

  .tech-card p {
    font-size: 0.8rem;
  }

  /* ---------- Footer ---------- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-about {
    text-align: center;
  }

  .footer-about .logo {
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  /* ---------- Blog Homepage Section ---------- */
  .blog-preview-grid {
    gap: 0.75rem;
  }

  .blog-preview-card {
    flex-direction: row;
    gap: 1rem;
  }

  .blog-preview-card .blog-preview-img {
    width: 100px;
    min-width: 100px;
    height: 80px;
    border-radius: 12px;
  }

  .blog-preview-card .blog-preview-body {
    padding: 0;
    flex: 1;
  }

  .blog-preview-card .blog-preview-body h4 {
    font-size: 0.88rem;
    -webkit-line-clamp: 2;
  }

  .blog-preview-card .blog-preview-body p {
    display: none;
  }

  .blog-preview-header .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   SMALL MOBILE (max-width: 480px)
   ============================================ */
@media screen and (max-width: 480px) {
  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .hero-stats {
    gap: 0;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .product-card .product-img {
    height: 130px;
  }

  .product-card .product-info {
    padding: 0.6rem;
  }

  .product-card .product-info h4 {
    font-size: 0.8rem;
  }

  .product-card .product-desc {
    display: none;
  }

  .product-card .product-footer {
    padding: 0.5rem 0.6rem;
  }

  .product-price {
    font-size: 0.88rem;
  }

  .product-action-btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.5rem;
  }

  .product-action-btn i {
    display: none;
  }

  .process-grid {
    gap: 0.75rem;
  }

  .process-step {
    padding: 1rem 0.75rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .process-step h4 {
    font-size: 0.88rem;
  }

  .process-step p {
    font-size: 0.78rem;
  }

  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-card .testimonial-text {
    font-size: 0.82rem;
    -webkit-line-clamp: 3;
  }

  .faq-question {
    padding: 0.85rem 1rem;
  }

  .faq-question h4 {
    font-size: 0.82rem;
  }

  .product-detail {
    padding-top: 0.5rem;
  }

  .product-details .product-title {
    font-size: 1.3rem;
  }

  .product-price-large .amount {
    font-size: 1.8rem;
  }

  .product-specs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .spec-card {
    padding: 0.6rem 0.3rem;
  }

  .buy-btn {
    padding: 0.9rem;
    font-size: 0.92rem;
  }

  .footer-heading {
    font-size: 0.78rem;
    margin-bottom: 1rem;
  }

  .footer-list a {
    font-size: 0.85rem;
  }

  .footer-contact-item p {
    font-size: 0.85rem;
  }

  .page-banner {
    padding: 6rem 0 2rem;
  }

  .page-banner h1 {
    font-size: 1.5rem;
  }

  .error-code {
    font-size: 5rem;
  }

  .about-content h3 {
    font-size: 1.15rem;
  }

  .tech-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .tech-card {
    padding: 1rem;
  }

  .tech-card i {
    font-size: 1.5rem;
  }

  .blog-hero-breadcrumb {
    font-size: 0.72rem;
  }

  .blog-hero-title {
    font-size: 1.15rem;
  }

  .blog-card-image img {
    height: 150px;
  }

  .blog-card-body {
    padding: 1rem;
  }

  .blog-card-title {
    font-size: 0.95rem;
  }

  .blog-preview-card .blog-preview-img {
    width: 80px;
    min-width: 80px;
    height: 64px;
    border-radius: 10px;
  }

  .blog-preview-card .blog-preview-body h4 {
    font-size: 0.82rem;
  }

  .slider-nav {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .slider-prev {
    left: -10px;
  }

  .slider-next {
    right: -10px;
  }

  .related-products-slider {
    margin: 0 2rem;
    gap: 0.8rem;
  }
}

/* ============================================
   EXTRA SMALL (max-width: 360px)
   ============================================ */
@media screen and (max-width: 360px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .hero-actions .btn {
    font-size: 0.82rem;
    padding: 0.8rem 1rem;
  }

  .products-grid {
    gap: 0.4rem;
  }

  .product-card .product-img {
    height: 110px;
  }

  .product-card .product-info {
    padding: 0.5rem;
  }

  .product-card .product-info h4 {
    font-size: 0.75rem;
  }

  .product-card .product-footer {
    padding: 0.4rem 0.5rem;
  }

  .product-price {
    font-size: 0.82rem;
  }

  .nav-links {
    width: 90%;
  }
}

/* ============================================
   TOUCH & INTERACTION IMPROVEMENTS
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .product-card:hover,
  .testimonial-card:hover,
  .team-card:hover,
  .tech-card:hover,
  .blog-card:hover {
    transform: none;
  }

  .btn {
    min-height: 44px;
  }

  .faq-question {
    min-height: 48px;
  }

  .tab-btn {
    min-height: 44px;
  }

  .product-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .btn:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
  }

  .blog-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}

/* ============================================
   SAFE AREA (notch/pill devices)
   ============================================ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  .nav-links {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  .back-to-top {
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

/* ============================================
   LANDSCAPE MOBILE
   ============================================ */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 5rem 0 2rem;
  }

  .hero-stats {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .nav-links {
    padding-top: 4rem;
  }

  .nav-links a {
    padding: 0.6rem 0.5rem;
    font-size: 0.95rem;
  }
}
