/* styles.css */
:root {
    --green: #38ccae;
    --dark: #1b1b1b;
}
/* Ustawienia ogólne */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a2e;
    color: #ffffff;
}

header {
    background: url('img/04.jpg') no-repeat center center;
    background-size: cover;
    padding: 40px 0; /* Dodanie paddingu, aby logo i menu były lepiej widoczne */
    text-align: center;
    color: #ffffff;
}

.logo {
    height: 400px; /* Możesz dostosować wysokość logotypu do swoich potrzeb */
}

nav {
    margin-top: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #040404;
    font-size: 2em;
    padding: 10px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    border-color: #ede601;
    background-color: #0f3460;
    border-radius: 5px;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 2em;
    color: #ede601;
    border-bottom: 2px solid#ede601;
    padding-bottom: 10px;
}


p {
    font-size: 1.1em;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 20px;
    margin-left: 350px;
}

.map-container {
    margin-top: 80px;
    margin-left: 350px;
}

.social-media-links {
    margin-top: 20px;
}

.social-media-links a {
    margin: 0 10px;
    display: inline-block;
}

.social-media-links img {
    width: 40px;
    height: 40px;
}

footer {
    background-color: #16213e;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}
.container {
    width: 80%;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2em;
    padding-bottom: 10px;
    text-align: center;
    color: rgb(12, 161, 131);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #4CAF50;
    color: white;
}

tr:hover {
    background-color: rgb(36, 101, 99);
}

.price {
    text-align: right;
}

@media (max-width: 768px) {
    .logo {
        height: 60px; /* Możesz dostosować wysokość logotypu do swoich potrzeb */
    }
    h2 {
        font-size: 1.5em;
    }
    .section-image {
        max-width: 50%;
    }
}