@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; /* Zastąpiono Arial na Montserrat */
}

body {
    min-height: 100vh;
    background: url('gradient.png') no-repeat center center fixed;
    background-size: 100% 100%;
    color: #fff;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 20, 0.2); /* Ciemniejsze tło */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Dodany separator */
    z-index: 1000;
}

.nav-group {
    display: flex;
    align-items: center;
}

.versal-text {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-right: 15px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-left a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-left a:hover {
    color: #ddd;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right i {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-right i:hover {
    color: #ddd;
}

.landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.text-content {
    flex: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-wrapper {
    margin-bottom: 20px;
}

.tagline {
    display: inline-block;
    background: #1abc9c;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

h1::after {
    content: "~~~";
    position: absolute;
    bottom: -10px;
    left: 0;
    color: #1abc9c;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif; /* Zastąpiono Arial na Montserrat */
}

.subtitle {
    font-size: 18px;
    color: #a2d2ff;
    line-height: 1.5;
}

.products {
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.section-wrapper {
    margin-bottom: 40px;
    text-align: left;
}

.products-container h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.products-container h2::after {
    content: "~~~";
    position: absolute;
    bottom: -10px;
    left: 0;
    color: #1abc9c;
    font-size: 24px;
}

.contact-link {
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(90deg, #5776A4, #A4D1FF);
    -webkit-background-clip: text;
    background-clip: text;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.footer {
    padding: 40px 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.8), rgba(87, 118, 164, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
    background: transparent;
    border-radius: 0;
}

.footer-left,
.footer-column {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.footer-versal {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 16px;
    color: #a2d2ff;
    margin-bottom: 15px;
    line-height: 1.5;
}

.payment-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.payment-icon {
    font-size: 24px;
    color: #5776A4;
    transition: color 0.3s ease;
}

.payment-icon:hover {
    color: #A4D1FF;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #a2d2ff;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #a2d2ff;
}