
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Zmienne CSS */
:root {
    --primary-color: #0078d7;
    --primary-dark: #005EA8;
    --primary-darker: #004C8C;
    --text-color: #333;
    --white: #FFFFFF;
    --transition-default: all 0.3s ease;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 20px 0;
    box-shadow: none;
    transition: box-shadow 0.3s ease-in-out;
}

header.scrolled {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: bold;
}

/* Hero Section */
#hero {
    text-align: center;
    color: var(--white);
    padding: 120px 20px;
    background: linear-gradient(270deg, #428BCC, var(--primary-dark));
    background-size: 400% 400%;
    animation: gradientBG 5s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sections */
.section {
    padding: 40px 20px;
    text-align: center;
}

/* Team Section */
.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/*.team-member {*/
/*    transition: var(--transition-default);*/
/*}*/

/*.team-member:hover {*/
/*    transform: scale(1.05);*/
/*    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);*/
/*}*/

.team-member img {
    border-radius: 5%;
    width: 300px;
    height: 400px;
}

/* Services Section */
#services {
    overflow: hidden;
}

#services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#services li {
    margin-bottom: 10px;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0px 4px 15px rgba(0, 120, 215, 0.3);
    transition: var(--transition-default);
    border: none;
    font-size: 14px;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-darker));
    transform: translateY(-2px);
    box-shadow: 0px 6px 20px rgba(0, 120, 215, 0.4);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0px 2px 10px rgba(0, 120, 215, 0.3);
}

.btn-primary a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    width: 100%;
    bottom: 0;
}