@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(66deg,rgba(1, 35, 59, 1) 2%, rgba(4, 9, 15, 1) 21%, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 1) 94%);
    height: 100%;
    width: 100%;
    padding-top: 70px; /* miejsce na header */
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(185deg, #e9e9e9, #ffffff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 70px;
    width: auto;
}

/* Menu główne - ul.links */
/* Nowa sekcja: logo + linki */
.left-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Poprawka listy linków */
.links {
    list-style: none;
    display: flex;
    gap: 25px;
    font-weight: 500;
    font-size: 1rem;
}

/* Linki w <li> */
.links li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 12px;
}

.links li a:hover {
    color: #5e5e5e;
    border-bottom: 2px solid #181818;
}

.link-active {
    border-bottom: 2px solid #181818;
}


.loginwithdc {
    width: 25px;
    margin-right: 20px;
    cursor: pointer;
}
/* Main container na całą szerokość */
main {
    width: 100%;
    min-height: calc(100vh - 100px); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content {
    display: flex;
    justify-content: center;  
    align-items: center;    
    width: 70%;
    gap: 100px;
}


/* Lewa kolumna */
.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.status-dot {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #009cff;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.status-box h2 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #009cff;
}

.status-box p {
    font-size: 1.1rem;
}

/* Opis serwera */
.description h1 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.description p {
    font-size: 1.2rem;
    color: #dddddd;
}

/* Przyciski */
.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    max-height: 50px;
    width: auto;
    background-color: #009cff;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #38b3ff;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid #009cff;
    color: #009cff;
}

.btn.secondary:hover {
    background-color: #0064a2b6;
    color: #fff;
}

/* Prawa kolumna - obrazek */
.right-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 800px;
}

.right-column img {
    width: 95%;
    max-height: 800px;
    object-fit: cover;
    border-radius: 10px;
}


a.btn {
    display: inline-block;
    margin: 0 10px;
    padding: 14px 30px;
    background-color: #009cff;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.text-input-small {
    resize: none;
    outline: none;
    color: #2e2e2e;
    border-radius: 5px;
    margin-top: 10px;
    width: 300px;
    height: 50px;
    padding: 10px;
    font-size: 1.1rem;
}

.text-input-large {
    resize: vertical;
    outline: none;
    color: #2e2e2e;
    border-radius: 5px;
    display: flex;
    margin-top: 10px;
    width: 400px;
    padding: 10px;
    font-size: 1.1rem;
}

.text-input-small {
    resize: none;
    outline: none;
    color: #2e2e2e;
    border-radius: 5px;
    margin-top: 10px;
    line-height: 25px;
    font-size: 1.1rem;
}

.form {
   font-size: 1.2rem;
}

.form label {
    color: #fff;
}

.from p {
    color: #fff;
}

a.btn:hover {
    background-color: #0064a2b6;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

/* Stylizuj własny checkbox */
.custom-checkbox .checkmark {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #555;
  border-radius: 4px;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
  background-color: white;
  cursor: pointer;
}

/* Po zaznaczeniu: zmień kolor wypełnienia */
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: #34538d; /* Twój kolor */
  border-color: #34538d;
}

/* Dodaj znacznik "check" */
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  display: block;
}

.submit-btn {
     font-family: "Montserrat", sans-serif;
    width: 200px;
    height: 50px;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    background-color: #464646c9;
    border: 2px solid grey;
    cursor: pointer;
    transition: ease-in 0.2s;
}

.submit-btn:hover {
    border-color: #fff;
}

.info-content {
    color: #fff;
}

.bottom-bar {
    width: 100%;
    text-align: left;
    color: #000;
    padding-top: 20px;
    padding-left: 20px;
    background: linear-gradient(185deg, #e9e9e9, #ffffff);
    height: 60px;
    position: fixed;
    bottom: 0;
}

/* Responsywność */
@media (max-width: 768px) {
    header {
       display: none;
    }

    .links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.9rem;
    }

    nav a {
        margin-left: 10px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    main {
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .links {
        flex-direction: column;
        gap: 10px;
    }
}
