@import "about.css";

/* ==========================================================================
   FONTS DEFINITION (Suisse Intl)
   ========================================================================== */
@font-face {
  font-family: 'Suisse Intl';
  src: url('../fonts/SuisseIntl-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';
  src: url('../fonts/SuisseIntl-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';
  src: url('../fonts/SuisseIntl-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';
  src: url('../fonts/SuisseIntl-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';
  src: url('../fonts/SuisseIntl-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl Mono';
  src: url('../fonts/SuisseIntl-Mono.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   DESIGN TOKENS & VARIABLES (Modern 2026 Palette & Typography)
   ========================================================================== */
:root {
  --font-primary: 'Suisse Intl', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Suisse Intl Mono', 'Courier New', Courier, monospace;
  
  /* Color Palette - Premium Sleek Dark Mode */
  --bg-primary: rgb(26, 28, 28);
  --bg-secondary: #161616;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --accent-color: #6366f1; /* Indigo */
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  height: 100%;
  
  /* Ukrywanie paska przewijania */
  -ms-overflow-style: none;  /* Internet Explorer oraz Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Ukrywanie paska przewijania dla Chrome, Safari, Opera */
::-webkit-scrollbar {
  display: none;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100%;
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.footer {
  width: 100%;
  padding: 80px 50px 50px 50px; /* Dolny padding (50px) zsynchronizowany z dolnym paddingiem Hero */
  background-color: var(--bg-secondary); /* Ciemniejsze, jednolite tło stopki */
  position: relative;
  z-index: 10; /* Podniesiony z-index, zapobiegający nakładaniu i ucinaniu */
}

/* Nadpisanie absolutnego pozycjonowania z hero.css dla stopki globalnej */
.footer .hero__footer {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  pointer-events: auto; /* Umożliwia klikanie w linki społecznościowe */
}

@media (max-width: 640px) {
  .footer .hero__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: auto;
    position: relative;
    bottom: auto;
  }
  
  .footer .hero__footer-center {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    order: 2; /* Zegar w środku pionowego układu */
  }

  .footer .hero__footer-left {
    order: 1;
  }

  .footer .hero__footer-right {
    order: 3;
  }
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.footer__wrapper {
  width: 100%;
}

@media (max-width: 1200px) {
  .footer {
    padding: 60px 40px 40px 40px;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 50px 30px 30px 30px;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 40px 20px 20px 20px;
  }
}

/* Oficjalna integracja stylów biblioteki Lenis (2026) */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden !important;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}


