/* OGÓLNE USTAWIENIA */
body {
    background-color: #d8d8d8;
    color: dark;
}

.logo {
    height: 70px;
    width: auto;
    transform: translate(10px, -2px);
}


/* NAVBAR */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
    font-family: 'Poppins', sans-serif;
    color: white !important;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.custom-navbar {
    background-color: #061520 !important;
}

.navbar-nav .nav-link {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}

.navbar-nav .nav-link:hover {
    transform: translateY(1px);
    color: #0F7173 !important;
}

.nav-link-kontakt {
    font-family: 'Poppins', sans-serif;
    background-color: #0F7173;
    color: white !important;
    border-radius: 50px;
    padding: 8px 16px;
    border: 5px solid transparent;
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none !important;
}

.nav-link-kontakt:hover {
    background-color: white;
    color: #0F7173 !important;
}


/* DEKORACJE, PRZYCISKI */
.text-orange {
    color: #0F7173;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #061520;
    border: none;
}

.btn-orange {
    background: linear-gradient(45deg, #074430, #0F7173);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: white;
    color: black;
    text-decoration: none;
}


/* HERO - O MNIE */
.picture-wrapper img {
    border-radius: 20px;
}

.o-mnie h1 {
    font-size: 40px;
}

.o-mnie h5 {
    font-size: 20px;
}


/* SEKCJA JAK TO DZIAŁA */
.proces-nauki {
    background: #f9f9f9;
    border-radius: 20px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.krok {
    text-align: center;
    padding: 15px;
}

.krok-ikona {
    width: 60px;
    margin-bottom: 15px;
}

.krok-ikona:hover {
    width: 60px;
    margin-bottom: 15px;
    transform: translateY(-5px);
}

.krok h5 {
    color: #0F7173;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1rem;
}

.krok p {
    font-size: 0.9rem;
    color: #333;
}

.strzalka {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0F7173;
}


/* OFERTA - CENNIK */
.oferta-cennik {
    background: #d8d8d8;
    text-align: center;
}

.cennik-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cennik-box:hover {
    transform: translateY(-5px);
}

.cennik-header {
    background: #0F7173;
    color: #fff;
    padding: 20px 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.cennik-header small {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
}

.cennik-body {
    padding: 20px;
}

.cena {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cena span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007b8c;
}

/* Ptaszki tylko w liście ofertowej */
.oferta-cennik ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.oferta-cennik ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.oferta-cennik ul li::before {
    content: "✔";
    color: #007b8c;
    position: absolute;
    left: 0;
}

.btn-yellow {
    background: #f8c100;
    color: #333;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
}

.btn-yellow:hover {
    background: #ffd700;
    text-decoration: none;
    color: #000;
}


/* FAQ - ROZWIJANE PYTANIA */
.faq-elegancki {
    max-width: 800px;
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question.active {
    color: #f8a100;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    font-size: 17px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 10px;
    color: #555;
}



.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.modal-content h2 {
    margin-bottom: 20px;
}
