/*
Theme Name: mateideroski_theme
Author: Mateusz Wojciuk
Description: Motyw Polonus.be & wiktoriawojciuk.pl
Version: 1.6
*/

/* Ciało strony i globalne style */
html {
    height: 100%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body { 
    background: rgb(245, 245, 250); 
    background: radial-gradient(circle, rgba(245, 245, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
    font-family: 'Archivo Narrow', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Zapewnia, że strona zawsze wypełnia całą wysokość ekranu */
    color: #333333; /* Ciemny szary dla tekstu */
}

.content {
    margin-bottom: 2.2em;
    flex-grow: 1; /* Zapewnia, że sekcja treści wypełnia pozostałą przestrzeń */
}

/* HEADER NAVBAR ==========================================>*/
#navbar-top {
    background: rgb(93, 63, 107); /* Ciemny fiolet */
    background: linear-gradient(to right, rgba(93, 63, 107, 1) 0%, rgba(253, 187, 45, 1) 100%);
    border-bottom: 2px solid #1f1f1f;
}

#navbar-top a {
    color: #FFF;
}

#navbar-top a:hover {
    color: #FFEB3B; /* Żółty kolor na hover - jeśli żółty jest problematyczny, można zmienić na ciemniejszy złoty */
    transition: 1s linear;
}

.navbar-brand img {
    width: 200px; 
}

#mainmenu a {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 18px;
}

.navbar-collapse {
    flex-grow: 0;
}

.dropdown-menu a {
    color: #000 !important; /* Czarne linki w rozwijanym menu */
}

.dropdown-menu a:hover {
    background-color: #81c784 !important; /* Zielony hover */
    transition: 1s linear;
    color: #FFF !important;
}

.dropdown-menu {
    background: #FFF;
}

/* STOPKA ==========================================>*/
footer {
    text-align: center;
    background: rgb(93, 63, 107); /* Ciemny fiolet */
    background: linear-gradient(to right, rgba(93, 63, 107, 1) 0%, rgba(253, 187, 45, 1) 100%);
    color: #fff;
    font-size: 1.1rem;
    padding: 1.5em 0;
    width: 100%;
    border-top: 2px solid #1f1f1f;
    position: relative;
    bottom: 0;
    margin-top: auto;
}

footer p {
    margin: 0;
}

footer a {
    color: #FFEB3B; /* Złoty kolor linków w stopce */
}

footer a:hover {
    text-decoration: underline;
    color: #FBC02D; /* Zmiana na ciemniejszy złoty */
}

footer .footer-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-col {
    flex-basis: 30%;
    margin: 1em 0;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}

footer .footer-col h4 {
    font-size: 1.3rem;
    color: #FFEB3B; /* Złoty kolor nagłówków w stopce */
    margin-bottom: 1rem;
}

footer .footer-col ul {
    list-style-type: none;
    padding: 0;
}

footer .footer-col ul li {
    margin-bottom: 0.8rem;
}

footer .footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

footer .footer-col ul li a:hover {
    color: #FFEB3B; /* Złoty kolor linków na hover */
}

/* Cennik - Zmiana koloru tekstów */
.pricing-price {
    font-size: 28px;
    font-weight: 700;
    color: #FBC02D; /* Złoty kolor z bardziej stonowanym odcieniem */
    margin-bottom: 15px;
}

/* Styl dla sekcji kontaktowej */
.contact-section {
    background-color: #f4f4f9; /* Jasnoszare tło */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

/* Nagłówek sekcji */
.contact-section h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Stylowanie adresu e-mail */
.contact-section p {
    font-size: 18px;
    color: #555;
}

/* Styl linku mailto */
.contact-section a {
    font-weight: bold;
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #0056b3; /* Zmiana koloru po najechaniu */
}

.contact-section a:active {
    color: #003f7f; /* Kolor aktywnego linku */
}

/* Sekcja cennika */
.pricing-section {
    background-color: #f4f4f9; /* Jasne tło */
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 1200px;
}

/* Nagłówek sekcji cennika */
.pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Kontener na karty cennika */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centrowanie elementów */
    gap: 30px;
}

/* Karta cennika */
.pricing-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 280px; /* Elastyczna szerokość min. 280px */
    max-width: 320px;
    border-left: 4px solid #5D3F6B; /* Lewa krawędź w ciemnym fiolecie */
}

.pricing-card:hover {
    transform: translateY(-10px); /* Wznosi kartę po najechaniu */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Nagłówek w każdej karcie */
.pricing-service {
    font-size: 24px;
    font-weight: 600;
    color: #5D3F6B; /* Ciemny fiolet */
    margin-bottom: 15px;
}

/* Cena w karcie */
.pricing-price {
    font-size: 28px;
    font-weight: 700;
    color: #FBC02D; /* Złoty kolor ceny */
    margin-bottom: 15px;
}

/* Opis usługi */
.pricing-description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Mobilność */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 28px;
    }
    .pricing-service {
        font-size: 20px;
    }
    .pricing-price {
        font-size: 24px;
    }
    .pricing-description {
        font-size: 14px;
    }
}

/* Przycisk rezerwacji */
.custom-booking-btn {
    display: inline-block;
    background-color: #5D3F6B; /* Cięższy fiolet */
    color: #fff !important;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(93, 63, 107, 0.3);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-booking-btn:hover {
    background-color: #4A2F56; /* Ciemniejszy fiolet */
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 47, 86, 0.4);
}
