/* Reset */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #1b1b1b;
    overflow-x: hidden;
}

/* Header */
header {
    background: linear-gradient(to bottom, #1b1b1b, #2d2d2d);
    padding: 1.5rem 2rem;
    color: #fff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header .logo {
    height: 3rem;
}

header nav {
    display: flex;
    gap: 2rem;
}

header nav a {
    color: #c6c6c6;
    text-decoration: none;
    transition: color 0.3s;
}

header nav a:hover {
    color: #fff;
}

header nav a.active {
    color: #00FF80;
}

.srp {
    font-weight: bold;
    font-size: 23px;
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e68a00;
}

/* Features */
#features {
    padding: 50px 20px;
    text-align: center;
}

#features .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.feature-item {
    flex: 1 1 calc(30% - 40px); 
    min-width: 280px;
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    transform: scale(1.05);
}

/* Join Section */
#join {
    padding: 50px;
    text-align: center;
}

.white-text {
    color: #ffffff; /* Biały kolor */
}

.blue-text {
    color: #1405ec; /* Niebieski kolor */
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}
