/* === Reset & Podstawy === */
body {
    margin: 0;
    font-family: 'Figtree', sans-serif;
    background: radial-gradient(circle at center, #ffe6b0 0%, #ffc457 40%, #ffce7f 70%, #ffb443 100%);
    color: #2e2e2e;
    min-height: 100vh;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
}

/* Logo po lewej */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.logo img {
    height: 40px;
}

.logo p {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

/* Wycentrowanie nav względem całego headera */
nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

nav a:hover {
    color: #ff9900;   
}

nav svg {
    width: 24px;
    height: 24px;
    fill: #333;
    transition: transform 0.2s;
}

nav a:hover svg {
    transform: scale(1.1);
}

/* Menu w środku */
.center-menu {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center; /* wycentrowanie */
    align-items: center;
}

/* Prawa część */
.right-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

header a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

header a:hover {
    color: #ff9900;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.left {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e1e1e;
    margin-top: 0;
}

p {
    line-height: 1.6;
    font-size: 16px;
}

/* Trzy obrazki w rzędzie */

.images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.images img {
    flex: 1;
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.right {
    flex: 1;
    display: flex;
}

.right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* === Stopka === */
footer {
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 14px;
}

/* === Responsywność === */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
  }

  .right {
    order: -1;
    height: 400px;
  }

  .images {
    flex-direction: column;
  }
}

