/* --- Podstawowe style i import czcionek --- */
body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #F5F5DC; /* Bardziej kremowy kolor tła */
}

main {
    flex-grow: 1;
}

/* Nowa, czytelna czcionka dla sekcji powitalnej */
.intro-text {
    font-family: 'Poppins', sans-serif;
}

/* Płynne rozwijanie podmenu na desktopie */
.group:hover .group-hover\:block {
    display: block;
}

.group .group-hover\:block {
    display: none;
}

/* Styl dla strzałki w menu mobilnym */
.submenu-arrow {
    transition: transform 0.3s ease;
}

.submenu-open .submenu-arrow {
    transform: rotate(90deg);
}

/* Zmiana koloru nazwy strony na czysty niebieski */
/* This targets the h1 text color that was originally teal-600 */
.text-teal-600 {
    color: #0000FF; /* Czysty niebieski */
}

/* This targets the SVG icon color that was originally teal-500 */
.text-teal-500 {
    color: #0000FF; /* Czysty niebieski dla ikony */