* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    animation: fadeIn 1s ease-in;
}

.car-logo {
    background-image: url('logo-strony-furgonetka-katowice.webp') ;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    width: 100%;
    height: 502px;
    border-radius: 8px;
    margin-bottom: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review * {
  display: flex;
  justify-content: center;
  align-content: center;
}

.review .stars {
  color: #ffd700;
  margin-bottom: 1rem;

  i {
    margin: 0 0.5rem;
  }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 0.5rem;
}

nav a {
    margin-left: 1rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: scale 0.3s ease;
}

/* Sections */
section {
    margin: 2rem 0;
}

h1 {
    font-size: 2rem;
}

h1, h2 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Map */
.map {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
}

/* Footer */
footer {
    color: #f4f4f4;
    background-color: #333;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    font-size: 0.9rem;

    p {
        margin: 0;
    }
}

/* Animacja */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsywność */
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}
