body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
}

h3 {
    font-size: 16px;
}

/* HEADER */
.header {
    background-color: #B9E0E0;
    padding: 25px 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.brand {
    color: #1e1e20 !important;
    text-decoration: none; 
}

.brand a {
    font-size: 24px;
    color: #1e1e20 !important; 
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    text-decoration: none; 
}

/* MENU */
.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #575759;
    font-size: 16px;
    transition: color 0.3s;
}

.menu a:hover {
    color: whitesmoke;
    text-decoration: none;
}

/* MENU TOGGLE (dla mobile) */
.menu_toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #575759;
}

/* SOCIAL */
.social img {
    width: 60px;
    height: 60px;
}

/* CONTENT */
.content {
    display: flex;
    padding: 20px;
    gap: 10px;
}

.content .left {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.content .left img {
    width: 25px;
    height: 25px;
}

.content .left #phone, a {
    color: #00A9A5;
    text-decoration: none;
}

.content .left #phone:hover, a:hover {
    color: #575759;
    cursor: pointer;
}

.content .right {
    flex: 1;
    padding: 20px;
}

.right img {
    width: 700px;
    height: auto;
    border: none;
}

p {
    color: #575759;
}

/* STOPKA I LINKI */

.developer { 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    color: #575759; 
    font-size: 11px; 
    text-decoration: none; }


.links { 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 5px; 
    background-color: #B9E0E0; 
}

.links a,
.developer a {
    text-decoration: none;
    color: #575759;
    font-size: 14px;
    transition: color 0.3s;
}

.links a:hover,
.developer a:hover {
    color: #00A9A5;
    text-decoration: none;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    background-color: #B9E0E0;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.cta-button:hover {
    background-color: #00A9A5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* MEDIA QUERIES */
@media (max-width: 1100px) {
    .header {
        justify-content: space-evenly;
    }

    .content {
        flex-direction: column;
        padding: 10px;
        justify-content: center;
        align-items: center;
    }

    .menu_toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        right: 60px;
        width: 200px;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 100;
        background-color: #B9E0E0;
    }

    .menu.show {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
    }

    .right img {
        width: 500px;
        height: auto;
    }
}

@media (min-width: 400px) and (max-width: 700px) {
    .right img {
        width: 350px;
        height: auto;
        object-fit: cover;
    }
  
}

@media (max-width: 400px) {
    .right img {
        width: 320px;
        height: auto;
        object-fit: cover;
    }
  
}

/* Logo w headerze */
.header .brand a:link,
.header .brand a:visited {
    color: #1e1e20 !important;  /* ciemny kolor */
    text-decoration: none !important; 
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

.header .brand a:hover,
.header .brand a:active {
    color: white !important;   /* zmiana koloru po hover */
}