:root {
    --primary-color: #4CAF50; /* A vibrant green for accents */
    --secondary-color: #66BB6A; /* Lighter green for hover states */
    --dark-bg: #121212; /* Very dark background */
    --dark-card-bg: #1E1E1E; /* Slightly lighter dark for cards/elements */
    --light-text: #E0E0E0; /* Light text on dark background */
    --medium-text: #B0B0B0; /* Medium grey for less important text */
    --border-color: #333333; /* Darker border for separation */
    --overlay-dark: rgba(0, 0, 0, 0.8); /* Dark overlay for images/hero */
    --transparent-dark: rgba(30, 30, 30, 0.7); /* Transparent dark for navbar */
    --sans-font: 'Arial', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans-font);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animation Overlay */
#animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg); /* Darker overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

#animation-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

#animation-overlay img {
    transform: scale(0.95);
    animation: zoom-in 0.5s ease-in-out forwards;
}

@keyframes zoom-in {
    to {
        transform: scale(1);
    }
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--transparent-dark); /* Transparent dark navbar */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    background: var(--dark-card-bg); /* Solid dark when scrolled */
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

#navbar .logo {
    height: 40px;
    transition: transform 0.3s ease;
}

#navbar .logo:hover {
    transform: scale(1.05);
}

#navbar ul {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

#navbar ul li a {
    color: var(--light-text);
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

#navbar ul li a:hover,
#navbar ul li a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    transition: transform 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

.hamburger-menu div {
    width: 100%;
    height: 3px;
    background-color: var(--light-text); /* Hamburger lines visible on dark */
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(var(--overlay-dark), var(--overlay-dark)), url('../assets/photos/assets.png') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
}

.hero-content .hero-logo { /* New style for the logo in hero section */
    max-width: 300px; /* Adjust as needed for desired size */
    height: auto;
    margin-bottom: 1rem;
    animation: slide-up 1s ease-out;
}

.hero-content h1 { /* Keep h1 styling for other potential h1 elements if they exist or to avoid breaking other parts */
    display: none; /* Hide the old h1 if it's still there */
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: slide-up 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slide-up 1s ease-out 0.5s;
}

.hero-content .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--dark-bg); /* Dark text on green button */
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    animation: slide-up 1s ease-out 1s;
    font-weight: bold;
}

.hero-content .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Section Styling */
section {
    padding: 80px 0;
    background-color: var(--dark-bg); /* Default section background */
    text-align: center;
    opacity: 0; /* Hidden by default for scroll animation */
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

section:nth-of-type(even) {
    background-color: var(--dark-card-bg); /* Alternate section background */
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    opacity: 0; /* Initial state for animation */
    transform: translateY(20px); /* Initial state for animation */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Add transition */
}

h2.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Section */
#gallery {
    padding-top: 100px; /* Adjust for fixed navbar */
}

#gallery .container {
    display: block; /* Revert to default block behavior */
}

.filter-buttons {
    margin-bottom: 2rem;
}

.filter-buttons button {
    background-color: var(--border-color); /* Darker buttons */
    color: var(--light-text);
    border: 1px solid var(--border-color);
    padding: 0.7rem 1.5rem;
    margin: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; /* Added box-shadow transition */
    font-size: 1rem;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background-color: var(--primary-color);
    color: var(--dark-bg); /* Dark text on active button */
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.05); /* Added scale */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Added shadow */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    background-color: var(--dark-card-bg); /* Dark background for gallery items */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease, scale 0.5s ease; /* Added opacity and scale transitions */
    opacity: 0; /* Start hidden for animation */
    transform: translateY(20px); /* Start slightly below for animation */
}

.gallery-item.show { /* Class to show the item with animation */
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02); /* More pronounced hover with scale */
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); /* More vibrant shadow */
}

.gallery-item h3 {
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--dark-bg); /* Dark text on green title */
    margin-top: 0;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
}

.gallery-images img {
    width: 100%; /* Default to full width for single images or stacking */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 1%; /* Spacing between stacked images */
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

/* For 'przed' and 'po' images, when there are only two, or when stacked */
.gallery-images.two-cols img {
    width: 49%; /* Slightly less than 50% for spacing */
    margin: 0.5%;
}

.gallery-images.three-cols img {
    width: 32%; /* Divide space for three images */
    margin: 0.5%;
}

/* Ensure 'wtrakcie' doesn't break layout unexpectedly */
.gallery-images .wtrakcie {
    width: 100%;
    margin-top: 0;
    margin-bottom: 1%;
}

.gallery-images img:hover {
    transform: scale(1.05); /* Slightly more zoom on hover */
    box-shadow: 0 0 15px var(--primary-color);
}

/* About Section */
#about .about-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

#about p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--medium-text); /* Slightly subdued text */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.service-item {
    background-color: var(--dark-card-bg); /* Dark card background */
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02); /* More pronounced hover with scale */
    box-shadow: 0 10px 25px rgba(0,0,0,0.4); /* More vibrant shadow */
}

.service-item img { /* For icons, if used */
    height: 50px;
    margin-bottom: 1rem;
    filter: invert(1); /* Invert for dark theme if needed, or replace with dark theme icons */
}

.service-item i { /* Font Awesome icons */
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.1);
}

.service-item h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

/* Contact Section */
#contact .contact-info {
    text-align: left;
    max-width: 600px; /* Reduced max-width since it's now a single column */
    margin: 0 auto;
    padding: 0 20px;
}

#contact .contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

#contact .contact-info div {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

#contact .contact-info div i { /* Font Awesome icons */
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem; /* Slightly larger icons */
    transition: transform 0.3s ease;
}

#contact .contact-info div:hover i {
    transform: translateX(5px); /* Slide icon on hover */
}

#contact .contact-info div p,
#contact .contact-info div a {
    color: var(--medium-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

#contact .contact-info div a:hover {
    color: var(--secondary-color);
}

/* Footer */
#footer {
    background-color: var(--dark-card-bg);
    color: var(--medium-text);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

#footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#footer .logo {
    height: 50px;
    transition: transform 0.3s ease;
}

#footer .logo:hover {
    transform: scale(1.05);
}

#footer .footer-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-nav ul li a {
    color: var(--medium-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

#footer .footer-nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

#footer .contact-details p {
    margin: 0.5rem 0;
}

#footer .social-icons i {
    font-size: 2rem;
    margin: 0 10px;
    color: var(--medium-text);
    transition: color 0.3s ease, transform 0.3s ease;
}

#footer .social-icons i:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

#footer .copyright {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--medium-text);
}


/* Responsiveness */

/* Tablet (e.g., 768px - 1024px) */
@media (max-width: 1024px) {
    #navbar ul {
        padding-right: 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    #contact .contact-info {
        padding: 0 20px;
    }

    .gallery-images.two-cols img,
    .gallery-images.three-cols img {
        width: 100%; /* Stack images on tablet in gallery items */
        margin: 0.5% 0;
    }
}

/* Mobile (e.g., < 768px) */
@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        display: none; /* Hide in-item navigation arrows on mobile */
    }

    #navbar .container {
        padding: 1rem 20px;
    }

    #navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-card-bg); /* Dark background for mobile menu */
        box-shadow: 0 2px 10px rgba(0,0,0,0.4);
        padding: 1rem 0;
    }

    #navbar ul.show {
        display: flex;
    }

    #navbar ul li {
        text-align: center;
        margin: 0.5rem 0;
    }

    .hamburger-menu {
        display: flex;
    }

    #animation-overlay img {
        max-width: 80%; /* Limit logo size on mobile */
        max-height: 80vh; /* Limit logo height on mobile */
        width: auto; /* Maintain aspect ratio */
        height: auto; /* Maintain aspect ratio */
    }

    #hero {
        background-attachment: scroll; /* Change to scroll for mobile devices */
        background-image: linear-gradient(var(--overlay-dark), var(--overlay-dark)), url('../assets/photos/fotkadrzewa.png');
    }

    .hero-content .hero-logo {
        max-width: 200px; /* Smaller for mobile */
    }

    .hero-content h1 { /* Keep h1 styling for other potential h1 elements if they exist or to avoid breaking other parts */
        display: none; /* Hide the old h1 if it's still there */
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-buttons button {
        flex: 1 1 auto;
        margin: 0.3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr; /* Single column of gallery items on mobile */
    }

    .gallery-images {
        flex-direction: column; /* Stack images vertically on mobile */
        align-items: center;
    }

    .gallery-images img {
        width: 100%; /* All gallery images stack on mobile */
        margin: 0.5% 0;
    }

    .mobile-hidden-images {
        display: none; /* Hidden by default on mobile */
        width: 100%; /* Ensure it takes full width */
        flex-direction: column; /* Stack images inside */
        align-items: center;
    }

    .mobile-hidden-images.visible {
        display: flex; /* Show when visible class is added by JS */
    }

    .btn-show-more {
        display: block; /* Make button full width and block level */
        width: fit-content; /* Adjust width to content */
        margin: 1rem auto; /* Center the button */
        padding: 0.6rem 1.2rem;
        background: var(--primary-color);
        color: var(--dark-bg);
        text-decoration: none;
        border-radius: 5px;
        transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        font-weight: bold;
        border: none;
        cursor: pointer;
    }

    .btn-show-more:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    #contact .contact-info {
        padding: 0 20px;
    }
    
    #footer .footer-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.gallery-toggle-btn {
    display: none; /* Hidden by default, shown by JS on mobile */
    margin: 2rem auto; /* Center and provide spacing */
    padding: 0.8rem 1.8rem;
    background: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .gallery-toggle-btn {
        display: block; /* Show on mobile */
    }
}

/* Small mobile devices (e.g., 320px - 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .filter-buttons button {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .gallery-images img {
        height: 150px;
    }
    
    #contact .contact-info div {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    #contact .contact-info div i {
        margin-bottom: 0.5rem;
    }
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initial state: hidden */
    visibility: hidden; /* Initial state: hidden */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; /* Smooth transition */
}

.lightbox.active {
    display: flex; /* Override display:none from visibility:hidden */
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 25px; /* Moved slightly further from top */
    right: 35px; /* Moved slightly further from right */
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 2005; /* Ensure close button is always on top of everything else */
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-content-wrapper {
    display: flex;
    max-width: 90%; /* Smaller */
    max-height: 90%; /* Smaller */
    width: 100%;
    height: 100%;
    background-color: var(--dark-card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transform: scale(0.9); /* Initial state: slightly smaller */
    transition: transform 0.3s ease-out; /* Smooth transition */
}

.lightbox.active .lightbox-content-wrapper {
    transform: scale(1); /* Active state: normal size */
}

/* Lightbox Sidebar Navigation (Desktop) */
.lightbox-sidebar-nav {
    width: 250px;
    flex-shrink: 0;
    background-color: var(--dark-bg);
    padding: 1rem 0;
    overflow-y: auto;
    border-right: 1px solid var(--border-color);
    display: block; /* Visible on desktop */
}

.lightbox-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lightbox-sidebar-nav ul li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--medium-text);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease; /* Added transform transition */
    font-weight: bold;
}

.lightbox-sidebar-nav ul li a:hover {
    background-color: var(--border-color);
    color: var(--light-text);
    transform: translateX(5px); /* Slide effect on hover */
}

.lightbox-sidebar-nav ul li a.active-arrangement {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

/* Lightbox Main Content (Image Display Area) */
.lightbox-main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space */
    align-items: center;
    position: relative;
    padding: 20px;
    box-sizing: border-box; /* Include padding in element's total width and height */
}

.lightbox-image-display {
    position: relative;
    display: flex; /* For centering the image vertically */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%; /* Take up available space for image */
    max-height: calc(100% - 40px); /* Adjust for description height (assuming ~40px) */
    overflow: hidden; /* Hide overflow if image is too large */
}

#lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure entire image is visible */
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out; /* Image fade transition */
}

#lightbox-image-description {
    position: absolute; /* Changed to absolute for overlay */
    top: 0; /* Position at the top of the image */
    left: 0; /* Span full width */
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: var(--light-text);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    text-transform: capitalize;
    box-sizing: border-box;
    z-index: 2003; /* Ensure it's above the image, below close button */
    /* Removed margin-top: 10px; */
}

/* Lightbox Image Navigation Arrows (within current arrangement) */
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; /* Fixed width for consistent arrow size */
    height: 40px; /* Fixed height */
    padding: 0; /* Remove padding */
    display: flex; /* Use flex to center icon */
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%; /* Make them circular */
    z-index: 2002; /* Above image, below close button */
}

.lightbox-prev {
    left: 10px; /* Offset from the edge */
}

.lightbox-next {
    right: 10px; /* Offset from the edge */
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1); /* Slightly larger hover effect */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); /* Added subtle shadow */
}

/* Lightbox Arrangement Navigation (Mobile) */
.lightbox-arrangement-nav-mobile {
    display: none; /* Hidden by default, shown on mobile */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.lightbox-arrangement-nav-mobile a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.lightbox-arrangement-nav-mobile a:hover {
    color: var(--secondary-color);
}

/* Mobile styles for Lightbox */
@media (max-width: 768px) {
    .lightbox-content-wrapper {
        flex-direction: column; /* Stack sidebar (if visible) and main content */
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .lightbox-sidebar-nav {
        display: none; /* Hide sidebar on mobile */
    }

    .lightbox-main-content {
        padding: 10px;
    }

    .lightbox-arrangement-nav-mobile {
        display: flex; /* Show mobile navigation */
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }

    #lightbox-image-description {
        /* position: static; now handled by global rule */
        /* margin-top: 10px; now handled by global rule */
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }

    .lightbox-image-display {
        max-height: calc(100% - 100px); /* Adjust for description and mobile nav */
    }

    .lightbox-prev, .lightbox-next {
        padding: 10px;
        font-size: 1.2rem;
        /* display: none; /* Explicitly hide on mobile - USUNIĘTO */
    }
}