/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%; /* Reduced padding to make the navbar 10px shorter */
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    height: 35px; /* Reduced image height to maintain proportions */
    cursor: pointer;
}

.nav__links {
    list-style: none;
    display: flex;
}

.nav__links li {
    padding: 0 20px;
}

.nav__links a {
    font-weight: 500;
    color: #686868; /* Unified color */
    text-decoration: none;
    transition: color 0.3s;
}

.cta {
    padding: 7px 25px; /* Reduced padding to maintain proportions */
    background-color: #00bcd4; /* Unified background color */
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.menu {
    display: none;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 0;
    overflow: hidden;
    z-index: 1005;
    background-color: rgba(255, 255, 255, 0.205);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    transition: width 0.5s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 40px;
}

.sidebar.active {
    width: 250px;
}

.sidebar__content {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sidebar a {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar .close {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s;
}

.sidebar a:hover {
    color:black;
}
.sidebar .close.visible {
    opacity: 1;
    transform: scale(1);
}

#new-cart {
    padding-left: 3px;
}
.activenow-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95); /* Zwiększenie przezroczystości */
    padding: 50px; /* Większa przestrzeń wokół formularza */
    border-radius: 15px; /* Większe zaokrąglenie rogów */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Delikatniejsze i większe cienie */
    margin: 60px auto; /* Większe odstępy od góry i dołu oraz wyśrodkowanie */
    max-width: 800px; /* Ograniczenie szerokości formularza */
}

        .activenow-form-container form {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 600px;
        }

        .activenow-form-container input[type="text"],
        .activenow-form-container input[type="email"],
        .activenow-form-container input[type="tel"],
        .activenow-form-container input[type="date"],
        .activenow-form-container select {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        .activenow-form-container input[type="checkbox"] {
            margin-right: 10px;
        }

        .activenow-form-container label {
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
        }

        .activenow-form-container button {
            padding: 15px;
            background-color: #00bcd4;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            margin-top: 20px;
        }

        .activenow-form-container button:hover {
            background-color: #007e8f;
        }
.footer {
    background-color: #222;
    color: white;
    padding: 40px 10%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Zmienione na center */
    gap: 20px;
    align-items: flex-start; /* Zmienione na flex-start */
}

.footer h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.footer p {
    font-size: 1em;
    line-height: 1.5;
}

.footer-left, .footer-center, .footer-right {
    flex: 1 1 300px; /* Ustawienie szerokości elastycznej z minimalną szerokością 300px */
    max-width: 300px; /* Maksymalna szerokość dla elastyczności */
}

.footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer .social-icons a img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    border-top: 1px solid #444;
    padding-top: 10px;
}
.footer-center p a{
    color: #fff;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.sidebar .close.rotating {
    animation: rotate 0.5s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 850px) {
    .nav__links, .cta {
        display: none;
    }
    .menu {
        display: inline-block;
    }
    header {
        padding: 20px 10%; /* Reduced padding to make the navbar 10px shorter */
    }
}

@media (max-width: 400px) {
    .sidebar.active {
        width: 100%;
    }
}
/* Styling for the Plan section */
.plan {
    padding: 50px 10%;
    background:url(../images/plan\ bg.png);
    text-align: center;
    margin-top: 85px;
}

.plan h2 {
    font-size: 2.5em;
    color: #00bcd4;
    margin-bottom: 40px;
}

.plan .week {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.plan .day {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    width: calc(33.333% - 40px);
    min-width: 250px;
}

.plan .day h3 {
    font-size: 1.5em;
    color: #00bcd4;
    margin-bottom: 20px;
}

.plan .day ul {
    list-style: none;
    padding: 0;
}

.plan .day ul li {
    font-size: 1.1em;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.plan .day ul li:last-child {
    border-bottom: none;
}

@media (max-width: 800px) {
    .plan .day {
        width: calc(50% - 40px);
    }
}

@media (max-width: 500px) {
    .plan .day {
        width: 100%;
        margin: 10px 0;
    }
}
.phone-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #00bcd4;
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 150px;
}

.phone-button p {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
}

.phone-button a {
    margin-top: 10px;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background-color: #008697;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.phone-button a:hover {
    background-color: #005d69;
}
/*...............................................*/
/* Formularz ActiveNow */


/* Kontener formularza */
.activenow-table-container {
    width: 100%;
    max-width: 800px; /* Maksymalna szerokość formularza */
    margin: 50px auto; /* Wyśrodkowanie formularza */
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #222;
}

/* Stylizacja ładowanego obrazka */
.activenow-table-container center img {
    margin-bottom: 20px; /* Odstęp między obrazkiem a formularzem */
}

/* Stylizacja dynamicznie ładowanej tabeli */
.activenow-table-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.activenow-table-container table th,
.activenow-table-container table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 1em;
    color: #222;
    font-family: 'Poppins', sans-serif;
}

/* Responsywność */
@media (max-width: 850px) {
    .activenow-table-container {
        padding: 20px;
        margin: 30px auto;
    }

    .activenow-table-container table th,
    .activenow-table-container table td {
        font-size: 0.9em;
        padding: 12px;
    }
}

@media (max-width: 400px) {
    .activenow-table-container {
        padding: 15px;
        margin: 20px auto;
    }

    .activenow-table-container table th,
    .activenow-table-container table td {
        font-size: 0.8em;
        padding: 10px;
    }
}




.plan .day {

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan .day:hover {
    transform: translateY(-5px); /* Unoszenie karty przy najechaniu */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Intensywniejsze cienie przy najechaniu */
}

