/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

.hidden {
    display: none;
}

.highlight {
    color: #FFA700;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Header Section */
header {
    height: 33vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 100%; /* Dodane - wykorzystanie pełnej wysokości headera */
}

.logo-container {
    position: absolute;
    left: 50%;
    top: 50%; /* Dodane - wyśrodkowanie w pionie */
    transform: translate(-50%, -50%); /* Wyśrodkowanie w poziomie i pionie */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-height: 20vh;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px; /* Dodane - odsunięcie logo od dolnej krawędzi headera */
}

.language-switcher {
    position: absolute;
    right: 0;
    top: 50%; /* Dodane - wyśrodkowanie w pionie */
    transform: translateY(-50%); /* Wyśrodkowanie w pionie */
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: 2px solid #FFA700;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #FFA700;
}

/* Header Section
header {
    height: 33vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    max-height: 20vh;
    max-width: 100%;
    object-fit: contain;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: 2px solid #FFA700;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #FFA700;
} */

/* Navigation Section */
nav {
    background-color: #000000;
    padding: 15px 0;
    border-top: 1px solid #FFA700;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-link {
    color: #FFA700;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    border-bottom: 2px solid #FFA700;
}

/* Main Content Sections */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-section {
    display: none;
}

.content-section.active-section {
    display: block;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFA700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
    list-style-type: none;
}

.benefits li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.benefits li:before {
    content: "✔";
    color: #FFA700;
    position: absolute;
    left: 0;
}

/* Services Section */
.section-container {
    padding: 20px;
}

.service-item {
    margin-bottom: 40px;
}

.service-item h3 {
    color: #FFA700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-item p {
    margin-bottom: 15px;
}

/* Pricing Section */
.price-list {
    list-style-type: none;
    margin-top: 30px;
}

.price-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
}

.price-list li span {
    color: #FFA700;
    font-weight: bold;
}

/* Contact Section */
.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form {
    margin-bottom: 40px;
}

.contact-form h3 {
    color: #FFA700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

button[type="submit"] {
    background-color: #ffa700;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #e05d00;
}

.map-container {
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 4px;
}

/* Footer Section */
footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .logo {
        max-height: 15vh;
    }
    
    .language-switcher {
        margin-top: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    } 
}*/

/* Responsive Design */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        height: auto;
        min-height: 150px;
        padding: 15px;
    }
    
    .logo-container {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
        padding-top: 20px;
    }
    
    .logo {
        max-height: 80px;
        width: auto;
    }
    
    .language-switcher {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 15px;
        padding-bottom: 15px;
    }
    
    /* Navigation adjustments */
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .nav-link {
        padding: 8px 12px;
        margin: 0 5px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    /* Content adjustments */
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .benefits {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Contact form adjustments */
    .contact-form {
        padding: 0 10px;
    }
    
    /* Map adjustments */
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens */
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
    }
    
    .price-list li {
        flex-direction: column;
    }
    
    .price-list li span {
        margin-top: 5px;
    }
}