/* RESET I PODSTAWOWE STYLE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Jasne tło */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO */
.logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
    border: 3px solid #008000; /* Zielona ramka z logo */
    border-radius: 10px;
    padding: 5px;
    background-color: white;
}

/* NAGŁÓWEK */
.header {
    text-align: center;
    padding: 40px 20px 20px;
    background-color: #333333; /* Zmienione na CIEMNY SZARY */
    color: white;
    margin-bottom: 20px;
    border-bottom: 5px solid #008000; /* Zielona linia pod nagłówkiem */
}

.header h1 {
    font-size: 3.2em;
    margin-bottom: 0.1em;
    color: white;
}

.header h2 {
    font-size: 1.6em;
    color: #FFFF00; /* Żółty z logo */
    font-weight: normal;
}

/* SEKCJA KONTAKT I MAPA - GRID */
.contact-map-grid {
    display: grid;
    gap: 30px;
    padding: 20px 0 40px;
    grid-template-columns: 1fr;
}

.contact-info, .map-container {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #008000; /* Dodatkowy akcent zielony z boku */
}

/* TYPOGRAFIA W SEKCJI KONTAKT */
h3 {
    font-size: 2em;
    color: #008000; /* Zmienione na ZIELONY (zamiast niebieskiego) */
    margin-bottom: 20px;
    border-bottom: 3px solid #333333; /* Ciemny szary akcent pod linią */
    padding-bottom: 10px;
}

address {
    font-style: normal;
    margin: 25px 0;
    font-size: 1.1em;
}

.detail {
    margin-bottom: 12px;
}

.detail strong {
    color: #333333; /* Zmienione na ciemny szary */
}

a {
    color: #008000; /* Zmienione na ZIELONY */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

a:hover {
    color: #FF0000; /* Zmiana na CZERWONY przy najechaniu (mocny akcent) */
    text-decoration: underline;
}

/* PRZYCISK ZADZWOŃ */
.btn {
    display: inline-block;
    background-color: #FF0000; /* Czerwony z logo */
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.btn:hover {
    background-color: #cc0000; /* Ciemniejszy czerwony */
    text-decoration: none;
    transform: translateY(-2px);
}

/* MAPA */
.map-container iframe {
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* STOPKA (FOOTER) */
footer {
    background-color: #333333; /* Zmienione na CIEMNY SZARY */
    color: #ccc;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9em;
    margin-top: 30px;
    border-top: 3px solid #008000; /* Zielona linia nad stopką */
}

/* ===================================== */
/* MEDIA QUERIES - UKŁAD DWUKOLUMNOWY */
/* ===================================== */

/* Dla tabletów i większych (min-width: 768px) */
@media (min-width: 768px) {
    .contact-map-grid {
        grid-template-columns: 1fr 1fr;
    }
    .header h1 {
        font-size: 3.8em;
    }
    .header h2 {
        font-size: 1.8em;
    }
}

/* Dla dużych desktopów (min-width: 1024px) */
@media (min-width: 1024px) {
    .header h1 {
        font-size: 4.5em;
    }
    .header h2 {
        font-size: 2.2em;
    }
}
