/* Reset stylów CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ogólne ustawienia */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #032E68;
    color: white;
}

/* Nagłówek */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-left: 60px;
}
header h1 {
    font-size: 3rem;
    padding-left: 60px;
}
header h1 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    font-size: inherit;
}
header h1 a:hover {
    color: inherit;
    text-decoration: none;
}

nav {
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

nav a:hover {
    color: #1ABAD5;
}

nav a.active {
    color: #000000;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
}

.nav-menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #032E68;
    text-align: center;
}

/* Sekcja główna */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80vh;
    padding: 0 50px;
}

.left-column {
    width: 50%;
    padding-left: 60px;
}

.right-column {
    width: 45%;
    text-align: center;
}

.right-column-kontakt { 
    width: 45%;
    text-align: left;
    margin-top: 10px;
}

/* Tytuły i nagłówki */
h1, h2 {
    color: white;
}

h1 {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

h3 {
    color: #1ABAD5;
}

/* Tekst */
p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.5;
}
.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: start; /* Ustawienie ikon na początku linii */
    gap: 15px; /* Odstępy między ikonami */
    align-items: center;
}

.social-icons a {
    display: inline-flex; /* Flexbox dla centrowania ikon wewnątrz okręgu */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 40px; /* Ustaw szerokość okręgu */
    height: 40px; /* Ustaw wysokość okręgu */
    border: 1px solid #1ABAD5; /* Obramowanie w kolorze #1ABAD5 */
    border-radius: 50%; /* Okrągły kształt */
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1); /* Powiększenie ikony po najechaniu */
}

.social-icon {
    width: 60%; /* Dopasowanie szerokości ikony wewnątrz okręgu */
    height: 60%; /* Dopasowanie wysokości ikony wewnątrz okręgu */
}


/* Obrazek */
img {
    max-width: 80%;
    height: auto;
    border-radius: 50%; /* Okrągły kształt */
    box-shadow: 0 0 15px 5px rgba(26, 186, 213, 0.5); /* Subtelny cień w kolorze akcentu */
    position: relative;
    animation: pulse 2s infinite; /* Pulsujące tło */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efekt po najechaniu */
img:hover {
    transform: scale(1.1) rotate(5deg); /* Powiększenie i lekkie obrócenie */
    box-shadow: 0 0 25px 10px rgba(26, 186, 213, 0.8); /* Wyraźniejszy cień */
}

/* Animacja pulsującego tła */
@keyframes pulse {
    0% {
        box-shadow: 0 0 15px 5px rgba(26, 186, 213, 0.5);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(26, 186, 213, 0.7);
    }
    100% {
        box-shadow: 0 0 15px 5px rgba(26, 186, 213, 0.5);
    }
}

/* Stylizacja galerii */
.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
}

.gallery .photo {
    margin-bottom: 10px;
}

.gallery .photo img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background-color: #032E68;
    object-fit: cover;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #032e68;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.lightbox-image {
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 0;
    margin: 0 auto;
    display: block;
}

.close-btn,
.prev-btn,
.next-btn {
    color: white;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    z-index: 1000;
    cursor: pointer;
}

.close-btn {
    right: 10px;
    top: 10px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}
.menu-text {
    color: white; /* Kolor napisu */
    font-size: 0.8rem; /* Rozmiar czcionki */
    font-weight: bold; /* Pogrubienie tekstu */
    text-transform: uppercase; /* Wielkie litery */
    text-align: center; /* Wyśrodkowanie tekstu */
    pointer-events: none; /* Wyłącz kliknięcia na napisie */
}

.floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.floating-menu:hover {
    transform: scale(1.1);
}

.floating-nav-menu {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: red;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.floating-nav-menu.active {
    display: flex;
}

.floating-nav-menu li {
    list-style: none;
}

.floating-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.floating-nav-menu a:hover {
    text-decoration: underline;
}


    @media (max-width: 768px) {
       
    .gallery .photo img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
    .floating-menu {
        display: flex; /* Widoczne tylko na urządzeniach mobilnych */
    }

    .floating-nav-menu {
        flex-direction: column; /* Dostosowanie układu */
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    }
@media (max-width: 480px) {
    .container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .left-column, .right-column {
        width: 100%;
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
@media (min-width: 769px) {
    .floating-menu {
        display: none; /* Ukryj na większych ekranach */
    }
}

