/* Reset domyślnych stylów przeglądarki */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Globalne ustawienia przewijania strony */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 35px;
}

/* Podstawowe style strony oraz tło */
body {
    background: url("images/hero.png") center top / cover no-repeat fixed;
    color: white;
    margin-top: 70px;
    font-family: Arial, sans-serif;
    cursor: url("images/cursor.png") 16 16, auto;
    
}

/* Górna nawigacja */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(12, 18, 48, 0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 9999;
}

/* Logo w nawigacji */
.logo img {
    height: 60px;
}

/* Linki w nawigacji */
.top-nav nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    
}

/* Sekcja hero – pierwsze wrażenie strony */
.hero {
    height: calc(100vh - 70px);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Zawartość sekcji hero */
.hero-content {
    background-color: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 10px;
}

/* Nagłówek w sekcji hero */
.hero h1 {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 48px;
    margin-bottom: 15px;
}

/* Tekst w sekcji hero */
.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Przycisk górny */
.btn {
    background-color: #4b6cff;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
}

/* Wspólne style dla sekcji treści */
.section {
    background-color: rgba(7,12,34,0.85);
    width: 100%;
    padding: 60px 0;
}

/* Kontener ograniczający szerokość treści */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nagłówki sekcji */
.section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Orbitron', Arial, sans-serif;
}

/* Podnagłówek w sekcji oferty */
.subheading {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 24px;
    font-family: 'Orbitron', Arial, sans-serif;
}

/* Tabela z ofertą */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

/* Komórki tabeli */
.pricing-table th,
.pricing-table td {
    padding: 12px;
    text-align: center;
}

/* Nagłówki tabeli */
.pricing-table th {
    background-color: #1a245a;
}

/* Naprzemienne kolory wierszy tabeli */
.pricing-table tr:nth-child(even) {
    background-color: #0f1830;
}

.pricing-table tr:nth-child(odd) {
    background-color: #070c22;
}

/* Tekst w sekcjach */
.section p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Sekcja kontaktowa */
#kontakt {
    background-color: rgba(15, 24, 48, 0.95);
}

/* Formularz kontaktowy */
form {
    max-width: 700px;
    margin: auto;
}

/* Wiersze formularza */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* Pola formularza */
input, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

/* Pole tekstowe wiadomości */
textarea {
    height: 120px;
    resize: none;
    margin-bottom: 20px;
}

/* Przycisk formularza */
button {
    background-color: #4b6cff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
}

/* Efekt hover na przycisku */
button:hover{
     background-color: #4158c2;

}

/* Efekt hover na linkach w nawigacji */
.top-nav nav a:hover {
    color: #4b6cff;
}

/* Własny kursor */
a,
button,
input,
textarea {
    cursor: url("images/cursor.png") 16 16, auto;
}