first commit

This commit is contained in:
2026-02-28 11:43:07 +01:00
commit 1946f96bf8
5772 changed files with 817711 additions and 0 deletions

0
layout/contrast.css Normal file
View File

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,144 @@
$breakpoints: (
xs: 576px,
sm: 768px,
md: 992px,
lg: 1200px
);
@mixin respond-above($breakpoint) {
@if map-has-key($breakpoints, $breakpoint) {
$breakpoint-value: map-get($breakpoints, $breakpoint);
@media (min-width: $breakpoint-value) {
@content;
}
} @else {
@warn 'Invalid breakpoint: #{$breakpoint}.';
}
}
@mixin respond-below($breakpoint) {
@if map-has-key($breakpoints, $breakpoint) {
$breakpoint-value: map-get($breakpoints, $breakpoint);
@media (max-width: ($breakpoint-value - 1)) {
@content;
}
} @else {
@warn 'Invalid breakpoint: #{$breakpoint}.';
}
}
@mixin respond-between($lower, $upper) {
@if map-has-key($breakpoints, $lower) and map-has-key($breakpoints, $upper) {
$lower-breakpoint: map-get($breakpoints, $lower);
$upper-breakpoint: map-get($breakpoints, $upper);
@media (min-width: $lower-breakpoint) and (max-width: ($upper-breakpoint - 1)) {
@content;
}
} @else {
@if (map-has-key($breakpoints, $lower) == false) {
@warn 'Your lower breakpoint was invalid: #{$lower}.';
}
@if (map-has-key($breakpoints, $upper) == false) {
@warn 'Your upper breakpoint was invalid: #{$upper}.';
}
}
}
@mixin border-radius($px: 0) {
-webkit-border-radius: $px;
-moz-border-radius: $px;
border-radius: $px;
}
@mixin box-shadow($value) {
-webkit-box-shadow: $value;
-moz-box-shadow: $value;
box-shadow: $value;
}
@mixin transition($element: all, $time: .5s, $option: ease) {
-webkit-transition: $element $time $option;
transition: $element $time $option;
}
@mixin opacity($value) {
$IEValue: $value*100;
opacity: $value;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity="+$IEValue+")";
filter: alpha(opacity=$IEValue);
}
@mixin flexbox() {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
@mixin flex($values) {
-webkit-box-flex: $values;
-moz-box-flex: $values;
-webkit-flex: $values;
-ms-flex: $values;
flex: $values;
}
@mixin flex-direction($direction) {
-webkit-flex-direction: $direction;
-moz-flex-direction: $direction;
-ms-flex-direction: $direction;
flex-direction: $direction;
}
@mixin flex-wrap($wrap) {
-webkit-flex-wrap: $wrap;
-moz-flex-wrap: $wrap;
-ms-flex-wrap: $wrap;
flex-wrap: $wrap;
}
@mixin flex-flow($flow) {
-webkit-flex-flow: $flow;
-moz-flex-flow: $flow;
-ms-flex-flow: $flow;
flex-flow: $flow;
}
@mixin order($val) {
-webkit-box-ordinal-group: $val;
-moz-box-ordinal-group: $val;
-ms-flex-order: $val;
-webkit-order: $val;
order: $val;
}
@mixin flex-grow($grow) {
-webkit-flex-grow: $grow;
-moz-flex-grow: $grow;
-ms-flex-grow: $grow;
flex-grow: $grow;
}
@mixin flex-shrink($shrink) {
-webkit-flex-shrink: $shrink;
-moz-flex-shrink: $shrink;
-ms-flex-shrink: $shrink;
flex-shrink: $shrink;
}
@mixin flex-basis($width) {
-webkit-flex-basis: $width;
-moz-flex-basis: $width;
-ms-flex-basis: $width;
flex-basis: $width;
}
@mixin justify-content($justify) {
-webkit-justify-content: $justify;
-moz-justify-content: $justify;
-ms-justify-content: $justify;
justify-content: $justify;
-ms-flex-pack: $justify;
}
@mixin align-content($align) {
-webkit-align-content: $align;
-moz-align-content: $align;
-ms-align-content: $align;
align-content: $align;
}
@mixin align-items($align) {
-webkit-align-items: $align;
-moz-align-items: $align;
-ms-align-items: $align;
align-items: $align;
}
@mixin align-self($align) {
-webkit-align-self: $align;
-moz-align-self: $align;
-ms-align-self: $align;
align-self: $align;
}

728
layout/style-scss/style.css Normal file
View File

@@ -0,0 +1,728 @@
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: "Open Sans", sans-serif;
background: hsl(210, 29%, 12%);
color: hsl(210, 40%, 98%);
font-size: 16px;
line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Montserrat", sans-serif;
margin: 0;
line-height: 1.2;
}
a {
text-decoration: none;
color: inherit;
}
img {
max-width: 100%;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
#navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
transition: all 0.3s ease;
}
.nav-topbar {
display: none;
background: hsl(210, 35%, 8%);
border-bottom: 1px solid rgba(44.88, 56.1, 67.32, 0.6);
}
@media (min-width: 768px) {
.nav-topbar {
display: block;
}
}
.nav-topbar .container {
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
font-size: 0.875rem;
color: hsl(210, 15%, 60%);
gap: 1.5rem;
}
.nav-topbar a {
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
gap: 0.4rem;
transition: color 0.2s ease;
}
.nav-topbar a:hover {
color: hsl(195, 100%, 45%);
}
.nav-topbar a svg {
flex-shrink: 0;
}
.nav-main {
position: relative;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
transition: box-shadow 0.3s ease;
}
.nav-main.scrolled {
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.nav-main .container {
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-ms-flex-pack: space-between;
padding-top: 0.75rem;
padding-bottom: 0.75rem;
}
.nav-logo img {
height: 48px;
width: auto;
display: block;
}
@media (max-width: 767px) {
.nav-logo img {
height: 40px;
}
}
@media (min-width: 768px) {
#main-menu {
display: block;
}
}
@media (max-width: 767px) {
#main-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.97);
backdrop-filter: blur(8px);
border-top: 1px solid #e5e5e5;
z-index: 99;
}
#main-menu.visible {
display: block;
}
}
#main-menu ul {
list-style: none;
margin: 0;
padding: 0;
}
@media (min-width: 768px) {
#main-menu ul {
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
gap: 2rem;
}
}
@media (max-width: 767px) {
#main-menu ul {
display: flex;
-moz-flex-direction: column;
flex-direction: column;
padding: 1rem 1.5rem;
gap: 0.25rem;
}
}
#main-menu li {
list-style: none;
}
#main-menu a {
display: block;
font-family: "Montserrat", sans-serif;
font-size: 0.8125rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #555;
transition: color 0.2s ease;
}
#main-menu a:hover {
color: hsl(195, 100%, 45%);
}
@media (max-width: 767px) {
#main-menu a {
padding: 0.6rem 0;
font-size: 0.875rem;
border-bottom: 1px solid #f0f0f0;
}
}
#main-menu li.active > a {
color: hsl(195, 100%, 45%);
}
#main-menu-btn {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.25rem;
-moz-flex-direction: column;
flex-direction: column;
gap: 5px;
}
@media (max-width: 767px) {
#main-menu-btn {
display: flex;
}
}
#main-menu-btn span {
display: block;
width: 24px;
height: 2px;
background: #444;
transition: all 0.3s ease;
}
#main-menu-btn.active span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
#main-menu-btn.active span:nth-child(2) {
opacity: 0;
}
#main-menu-btn.active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
#home {
position: relative;
min-height: 100vh;
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-ms-flex-pack: center;
overflow: hidden;
}
#home video.hero-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
#home .hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, hsla(210, 35%, 8%, 0.88) 0%, hsla(210, 29%, 12%, 0.75) 50%, hsla(210, 25%, 18%, 0.6) 100%);
}
#home .hero-content {
position: relative;
z-index: 1;
text-align: center;
max-width: 800px;
padding: 0 1.5rem;
}
#home .hero-eyebrow {
font-family: "Montserrat", sans-serif;
font-size: 0.875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.3em;
color: hsl(195, 100%, 45%);
margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
#home .hero-eyebrow {
font-size: 1rem;
}
}
#home h1 {
font-size: clamp(2.25rem, 7vw, 4.5rem);
font-weight: 800;
margin-bottom: 1.5rem;
color: hsl(210, 40%, 98%);
}
#home .text-gradient {
background: linear-gradient(90deg, hsl(195, 100%, 45%), hsl(180, 80%, 55%));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
#home .hero-desc {
font-size: 1rem;
color: hsl(210, 15%, 60%);
max-width: 560px;
margin: 0 auto 2.5rem;
line-height: 1.75;
}
@media (min-width: 768px) {
#home .hero-desc {
font-size: 1.125rem;
}
}
#home .hero-buttons {
display: flex;
flex-wrap: wrap;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-ms-flex-pack: center;
gap: 1rem;
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: hsl(195, 100%, 45%);
color: hsl(210, 29%, 8%);
padding: 1rem 2rem;
border-radius: 0.5rem;
font-family: "Montserrat", sans-serif;
font-size: 0.8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
box-shadow: 0 4px 20px rgba(0, 172.125, 229.5, 0.3);
transition: filter 0.2s ease;
}
.btn-primary:hover {
filter: brightness(1.1);
}
.btn-outline {
display: inline-flex;
align-items: center;
gap: 0.5rem;
border: 1px solid rgba(247.86, 249.9, 251.94, 0.3);
color: hsl(210, 40%, 98%);
padding: 1rem 2rem;
border-radius: 0.5rem;
font-family: "Montserrat", sans-serif;
font-size: 0.8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
transition: all 0.2s ease;
}
.btn-outline:hover {
border-color: hsl(195, 100%, 45%);
color: hsl(195, 100%, 45%);
}
.hero-scroll {
position: absolute;
bottom: 2.5rem;
left: 50%;
transform: translateX(-50%);
color: hsl(210, 15%, 60%);
transition: color 0.2s ease;
animation: bounce 2s infinite;
}
.hero-scroll:hover {
color: hsl(195, 100%, 45%);
}
@keyframes bounce {
0%, 100% {
transform: translateX(-50%) translateY(0);
}
50% {
transform: translateX(-50%) translateY(10px);
}
}
#about {
padding: 6rem 0;
background: hsl(210, 35%, 8%);
}
#about .about-grid {
display: grid;
gap: 4rem;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
}
@media (min-width: 992px) {
#about .about-grid {
grid-template-columns: 1fr 1fr;
}
}
.stats-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.stat-card {
background: hsl(210, 29%, 15%);
padding: 1.5rem;
border-radius: 0.5rem;
border: 1px solid hsl(210, 20%, 22%);
text-align: center;
}
.stat-card .stat-value {
font-family: "Montserrat", sans-serif;
font-size: 1.875rem;
font-weight: 800;
color: hsl(195, 100%, 45%);
margin-bottom: 0.25rem;
}
.stat-card .stat-label {
font-size: 0.875rem;
color: hsl(210, 15%, 60%);
}
.about-text h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: 1.5rem;
}
.about-text h2 span {
color: hsl(195, 100%, 45%);
}
.about-text p {
color: hsl(210, 15%, 60%);
line-height: 1.75;
margin: 0 0 1.5rem;
}
.highlights {
list-style: none;
margin: 0;
padding: 0;
display: flex;
-moz-flex-direction: column;
flex-direction: column;
gap: 0.75rem;
}
.highlights li {
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
gap: 0.75rem;
font-size: 0.9375rem;
color: rgba(247.86, 249.9, 251.94, 0.9);
}
.highlights li svg {
flex-shrink: 0;
color: hsl(195, 100%, 45%);
}
#services {
padding: 6rem 0;
background: linear-gradient(180deg, hsl(210, 29%, 12%) 0%, hsl(210, 35%, 8%) 100%);
}
#services .section-header {
text-align: center;
margin-bottom: 4rem;
}
#services .section-header h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: 1rem;
}
#services .section-header h2 span {
color: hsl(195, 100%, 45%);
}
#services .services-grid {
display: grid;
gap: 1.5rem;
}
@media (min-width: 576px) {
#services .services-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (min-width: 992px) {
#services .services-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.service-card {
background: hsl(210, 29%, 15%);
padding: 2rem;
border-radius: 0.5rem;
border: 1px solid hsl(210, 20%, 22%);
transition: border-color 0.3s ease;
}
.service-card:hover {
border-color: rgba(0, 172.125, 229.5, 0.4);
}
.service-card:hover .service-icon {
background: rgba(0, 172.125, 229.5, 0.2);
}
.service-icon {
width: 56px;
height: 56px;
border-radius: 0.5rem;
background: rgba(0, 172.125, 229.5, 0.1);
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-ms-flex-pack: center;
margin-bottom: 1.25rem;
transition: background 0.3s ease;
color: hsl(195, 100%, 45%);
}
.service-card h3 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.75rem;
}
.service-card p {
font-size: 0.9375rem;
color: hsl(210, 15%, 60%);
line-height: 1.7;
margin: 0;
}
#contact {
padding: 6rem 0;
background: linear-gradient(180deg, hsl(210, 29%, 12%) 0%, hsl(210, 35%, 8%) 100%);
}
#contact .section-header {
text-align: center;
margin-bottom: 4rem;
}
#contact .section-header h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: 1rem;
}
#contact .section-header h2 span {
color: hsl(195, 100%, 45%);
}
#contact .contact-grid {
display: grid;
gap: 2rem;
max-width: 700px;
margin: 0 auto;
}
@media (min-width: 576px) {
#contact .contact-grid {
grid-template-columns: repeat(3, 1fr);
}
}
.contact-card {
background: hsl(210, 29%, 15%);
padding: 2rem;
border-radius: 0.5rem;
border: 1px solid hsl(210, 20%, 22%);
text-align: center;
transition: border-color 0.3s ease;
display: block;
}
.contact-card:hover {
border-color: rgba(0, 172.125, 229.5, 0.4);
}
.contact-card:hover svg {
transform: scale(1.1);
}
.contact-card svg {
color: hsl(195, 100%, 45%);
transition: transform 0.3s ease;
margin-bottom: 1rem;
display: block;
margin-left: auto;
margin-right: auto;
}
.contact-card .contact-label {
font-size: 0.875rem;
color: hsl(210, 15%, 60%);
margin-bottom: 0.25rem;
}
.contact-card .contact-value {
font-size: 0.9375rem;
font-weight: 600;
color: hsl(210, 40%, 98%);
display: block;
}
.glow-line {
width: 64px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(0, 172.125, 229.5, 0.6), transparent);
margin: 0 auto;
}
footer {
background: hsl(210, 29%, 12%);
border-top: 1px solid rgba(44.88, 56.1, 67.32, 0.5);
padding: 2.5rem 0;
}
footer .footer-main {
display: flex;
-moz-flex-direction: column;
flex-direction: column;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
gap: 1.5rem;
text-align: center;
}
@media (min-width: 768px) {
footer .footer-main {
-moz-flex-direction: row;
flex-direction: row;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-ms-flex-pack: space-between;
text-align: left;
}
}
footer .footer-logo {
font-family: "Montserrat", sans-serif;
font-size: 1.25rem;
font-weight: 800;
letter-spacing: -0.02em;
}
footer .footer-logo span:first-child {
color: hsl(210, 40%, 98%);
}
footer .footer-logo span.accent {
color: hsl(195, 100%, 45%);
}
footer .footer-tagline {
font-size: 0.75rem;
color: hsl(210, 15%, 60%);
margin-top: 0.25rem;
}
footer .footer-links {
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
gap: 1.5rem;
font-size: 0.9375rem;
color: hsl(210, 15%, 60%);
}
footer .footer-links a {
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
gap: 0.4rem;
transition: color 0.2s ease;
}
footer .footer-links a:hover {
color: hsl(195, 100%, 45%);
}
footer .footer-bottom {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(44.88, 56.1, 67.32, 0.5);
display: flex;
-moz-flex-direction: column;
flex-direction: column;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
gap: 0.5rem;
text-align: center;
font-size: 0.8125rem;
color: hsl(210, 15%, 60%);
}
@media (min-width: 768px) {
footer .footer-bottom {
-moz-flex-direction: row;
flex-direction: row;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-ms-flex-pack: space-between;
}
}
footer .footer-bottom a:hover {
color: hsl(195, 100%, 45%);
}
#cookie-information {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 9999;
background: hsl(210, 29%, 15%);
border-top: 1px solid hsl(210, 20%, 22%);
padding: 1rem 1.5rem;
display: flex;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-ms-flex-pack: space-between;
gap: 1rem;
font-size: 0.875rem;
color: hsl(210, 15%, 60%);
display: flex;
flex-wrap: wrap;
}
#cookie-information a {
color: hsl(195, 100%, 45%);
}
#cookie-information button,
#cookie-information .cookie-accept {
background: hsl(195, 100%, 45%);
color: hsl(210, 29%, 8%);
border: none;
padding: 0.5rem 1.25rem;
border-radius: 0.5rem;
font-family: "Montserrat", sans-serif;
font-size: 0.8125rem;
font-weight: 600;
cursor: pointer;
white-space: nowrap;
}/*# sourceMappingURL=style.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,751 @@
@import "_mixins";
// ─── Zmienne ────────────────────────────────────────────────────────────────
$bg: hsl(210, 29%, 12%);
$bg-dark: hsl(210, 35%, 8%);
$bg-card: hsl(210, 29%, 15%);
$fg: hsl(210, 40%, 98%);
$primary: hsl(195, 100%, 45%);
$muted: hsl(210, 15%, 60%);
$border: hsl(210, 20%, 22%);
$radius: 0.5rem;
// ─── Reset & base ────────────────────────────────────────────────────────────
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
overflow-x: hidden;
font-family: 'Open Sans', sans-serif;
background: $bg;
color: $fg;
font-size: 16px;
line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Montserrat', sans-serif;
margin: 0;
line-height: 1.2;
}
a {
text-decoration: none;
color: inherit;
}
img {
max-width: 100%;
}
// ─── Kontener ────────────────────────────────────────────────────────────────
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
// ─── Navbar ──────────────────────────────────────────────────────────────────
#navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
@include transition(all, .3s, ease);
}
.nav-topbar {
display: none;
background: $bg-dark;
border-bottom: 1px solid rgba($border, .6);
@include respond-above(sm) {
display: block;
}
.container {
@include flexbox;
@include align-items(center);
padding-top: .5rem;
padding-bottom: .5rem;
font-size: .875rem;
color: $muted;
gap: 1.5rem;
}
a {
@include flexbox;
@include align-items(center);
gap: .4rem;
@include transition(color, .2s, ease);
&:hover {
color: $primary;
}
svg {
flex-shrink: 0;
}
}
}
.nav-main {
position: relative;
background: rgba(#fff, .92);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
@include transition(box-shadow, .3s, ease);
&.scrolled {
@include box-shadow(0 4px 24px rgba(#000, .12));
}
.container {
@include flexbox;
@include align-items(center);
@include justify-content(space-between);
padding-top: .75rem;
padding-bottom: .75rem;
}
}
.nav-logo img {
height: 48px;
width: auto;
display: block;
@include respond-below(sm) {
height: 40px;
}
}
// ─── Menu CMS (MENU_GLOWNE) ──────────────────────────────────────────────────
#main-menu {
@include respond-above(sm) {
display: block;
}
@include respond-below(sm) {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(#fff, .97);
backdrop-filter: blur(8px);
border-top: 1px solid #e5e5e5;
z-index: 99;
&.visible {
display: block;
}
}
ul {
list-style: none;
margin: 0;
padding: 0;
@include respond-above(sm) {
@include flexbox;
@include align-items(center);
gap: 2rem;
}
@include respond-below(sm) {
@include flexbox;
@include flex-direction(column);
padding: 1rem 1.5rem;
gap: .25rem;
}
}
li {
list-style: none;
}
a {
display: block;
font-family: 'Montserrat', sans-serif;
font-size: .8125rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .08em;
color: #555;
@include transition(color, .2s, ease);
&:hover {
color: $primary;
}
@include respond-below(sm) {
padding: .6rem 0;
font-size: .875rem;
border-bottom: 1px solid #f0f0f0;
}
}
li.active>a {
color: $primary;
}
}
#main-menu-btn {
display: none;
background: none;
border: none;
cursor: pointer;
padding: .25rem;
@include flex-direction(column);
gap: 5px;
@include respond-below(sm) {
@include flexbox;
}
span {
display: block;
width: 24px;
height: 2px;
background: #444;
@include transition(all, .3s, ease);
}
&.active span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
&.active span:nth-child(2) {
opacity: 0;
}
&.active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
}
// ─── Hero ─────────────────────────────────────────────────────────────────────
#home {
position: relative;
min-height: 100vh;
@include flexbox;
@include align-items(center);
@include justify-content(center);
overflow: hidden;
video.hero-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg,
hsl(210, 35%, 8%, .88) 0%,
hsl(210, 29%, 12%, .75) 50%,
hsl(210, 25%, 18%, .6) 100%);
}
.hero-content {
position: relative;
z-index: 1;
text-align: center;
max-width: 800px;
padding: 0 1.5rem;
}
.hero-eyebrow {
font-family: 'Montserrat', sans-serif;
font-size: .875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .3em;
color: $primary;
margin-bottom: 1.5rem;
@include respond-above(sm) {
font-size: 1rem;
}
}
h1 {
font-size: clamp(2.25rem, 7vw, 4.5rem);
font-weight: 800;
margin-bottom: 1.5rem;
color: $fg;
}
.text-gradient {
background: linear-gradient(90deg, $primary, hsl(180, 80%, 55%));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-desc {
font-size: 1rem;
color: $muted;
max-width: 560px;
margin: 0 auto 2.5rem;
line-height: 1.75;
@include respond-above(sm) {
font-size: 1.125rem;
}
}
.hero-buttons {
@include flexbox;
@include flex-wrap(wrap);
@include align-items(center);
@include justify-content(center);
gap: 1rem;
}
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: .5rem;
background: $primary;
color: hsl(210, 29%, 8%);
padding: 1rem 2rem;
@include border-radius($radius);
font-family: 'Montserrat', sans-serif;
font-size: .8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
@include box-shadow(0 4px 20px rgba($primary, .3));
@include transition(filter, .2s, ease);
&:hover {
filter: brightness(1.1);
}
}
.btn-outline {
display: inline-flex;
align-items: center;
gap: .5rem;
border: 1px solid rgba($fg, .3);
color: $fg;
padding: 1rem 2rem;
@include border-radius($radius);
font-family: 'Montserrat', sans-serif;
font-size: .8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
@include transition(all, .2s, ease);
&:hover {
border-color: $primary;
color: $primary;
}
}
.hero-scroll {
position: absolute;
bottom: 2.5rem;
left: 50%;
transform: translateX(-50%);
color: $muted;
@include transition(color, .2s, ease);
animation: bounce 2s infinite;
&:hover {
color: $primary;
}
}
@keyframes bounce {
0%,
100% {
transform: translateX(-50%) translateY(0);
}
50% {
transform: translateX(-50%) translateY(10px);
}
}
// ─── O nas ────────────────────────────────────────────────────────────────────
#about {
padding: 6rem 0;
background: $bg-dark;
.about-grid {
display: grid;
gap: 4rem;
@include align-items(center);
@include respond-above(md) {
grid-template-columns: 1fr 1fr;
}
}
}
.stats-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.stat-card {
background: $bg-card;
padding: 1.5rem;
@include border-radius($radius);
border: 1px solid $border;
text-align: center;
.stat-value {
font-family: 'Montserrat', sans-serif;
font-size: 1.875rem;
font-weight: 800;
color: $primary;
margin-bottom: .25rem;
}
.stat-label {
font-size: .875rem;
color: $muted;
}
}
.about-text {
h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: 1.5rem;
span {
color: $primary;
}
}
p {
color: $muted;
line-height: 1.75;
margin: 0 0 1.5rem;
}
}
.highlights {
list-style: none;
margin: 0;
padding: 0;
@include flexbox;
@include flex-direction(column);
gap: .75rem;
li {
@include flexbox;
@include align-items(center);
gap: .75rem;
font-size: .9375rem;
color: rgba($fg, .9);
svg {
flex-shrink: 0;
color: $primary;
}
}
}
// ─── Usługi ──────────────────────────────────────────────────────────────────
#services {
padding: 6rem 0;
background: linear-gradient(180deg, $bg 0%, $bg-dark 100%);
.section-header {
text-align: center;
margin-bottom: 4rem;
h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: 1rem;
span {
color: $primary;
}
}
}
.services-grid {
display: grid;
gap: 1.5rem;
@include respond-above(xs) {
grid-template-columns: 1fr 1fr;
}
@include respond-above(md) {
grid-template-columns: repeat(4, 1fr);
}
}
}
.service-card {
background: $bg-card;
padding: 2rem;
@include border-radius($radius);
border: 1px solid $border;
@include transition(border-color, .3s, ease);
&:hover {
border-color: rgba($primary, .4);
.service-icon {
background: rgba($primary, .2);
}
}
}
.service-icon {
width: 56px;
height: 56px;
@include border-radius($radius);
background: rgba($primary, .1);
@include flexbox;
@include align-items(center);
@include justify-content(center);
margin-bottom: 1.25rem;
@include transition(background, .3s, ease);
color: $primary;
}
.service-card h3 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: .75rem;
}
.service-card p {
font-size: .9375rem;
color: $muted;
line-height: 1.7;
margin: 0;
}
// ─── Kontakt ─────────────────────────────────────────────────────────────────
#contact {
padding: 6rem 0;
background: linear-gradient(180deg, $bg 0%, $bg-dark 100%);
.section-header {
text-align: center;
margin-bottom: 4rem;
h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: 1rem;
span {
color: $primary;
}
}
}
.contact-grid {
display: grid;
gap: 2rem;
max-width: 700px;
margin: 0 auto;
@include respond-above(xs) {
grid-template-columns: repeat(3, 1fr);
}
}
}
.contact-card {
background: $bg-card;
padding: 2rem;
@include border-radius($radius);
border: 1px solid $border;
text-align: center;
@include transition(border-color, .3s, ease);
display: block;
&:hover {
border-color: rgba($primary, .4);
svg {
transform: scale(1.1);
}
}
svg {
color: $primary;
@include transition(transform, .3s, ease);
margin-bottom: 1rem;
display: block;
margin-left: auto;
margin-right: auto;
}
.contact-label {
font-size: .875rem;
color: $muted;
margin-bottom: .25rem;
}
.contact-value {
font-size: .9375rem;
font-weight: 600;
color: $fg;
display: block;
}
}
// ─── Glow line ───────────────────────────────────────────────────────────────
.glow-line {
width: 64px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba($primary, .6), transparent);
margin: 0 auto;
}
// ─── Footer ──────────────────────────────────────────────────────────────────
footer {
background: $bg;
border-top: 1px solid rgba($border, .5);
padding: 2.5rem 0;
.footer-main {
@include flexbox;
@include flex-direction(column);
@include align-items(center);
gap: 1.5rem;
text-align: center;
@include respond-above(sm) {
@include flex-direction(row);
@include justify-content(space-between);
text-align: left;
}
}
.footer-logo {
font-family: 'Montserrat', sans-serif;
font-size: 1.25rem;
font-weight: 800;
letter-spacing: -.02em;
span:first-child {
color: $fg;
}
span.accent {
color: $primary;
}
}
.footer-tagline {
font-size: .75rem;
color: $muted;
margin-top: .25rem;
}
.footer-links {
@include flexbox;
@include align-items(center);
gap: 1.5rem;
font-size: .9375rem;
color: $muted;
a {
@include flexbox;
@include align-items(center);
gap: .4rem;
@include transition(color, .2s, ease);
&:hover {
color: $primary;
}
}
}
.footer-bottom {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid rgba($border, .5);
@include flexbox;
@include flex-direction(column);
@include align-items(center);
gap: .5rem;
text-align: center;
font-size: .8125rem;
color: $muted;
@include respond-above(sm) {
@include flex-direction(row);
@include justify-content(space-between);
}
a:hover {
color: $primary;
}
}
}
// ─── Cookie bar (CMS) ────────────────────────────────────────────────────────
#cookie-information {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 9999;
background: $bg-card;
border-top: 1px solid $border;
padding: 1rem 1.5rem;
@include flexbox;
@include align-items(center);
@include justify-content(space-between);
gap: 1rem;
font-size: .875rem;
color: $muted;
@include flexbox;
@include flex-wrap(wrap);
a {
color: $primary;
}
button,
.cookie-accept {
background: $primary;
color: hsl(210, 29%, 8%);
border: none;
padding: .5rem 1.25rem;
@include border-radius($radius);
font-family: 'Montserrat', sans-serif;
font-size: .8125rem;
font-weight: 600;
cursor: pointer;
white-space: nowrap;
}
}