/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header Styles */
header {
    background-color: #fff; /* Zmiana tła nagłówka na biały */
    color: #4CAF50; /* Zmiana koloru tekstu na zielony */
    padding: 10px 0;
}

header .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header .logo img {
    max-height: 140px;
    width: auto;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #4CAF50; /* Zielony kolor tekstu */
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ffeb3b; /* Kolor po najechaniu */
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.png') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content .btn {
    padding: 15px 30px;
    font-size: 1rem;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #45a049;
    transform: scale(1.1);
}

/* Offers Section */
.offers {
    padding: 40px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.offer-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.offer-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #4CAF50;
}

.offer-content {
    padding: 20px;
    text-align: center;
    border-top: 2px solid #4CAF50;
}

.offer-content h3 {
    font-size: 1.4rem;
    margin: 10px 0;
    color: #4CAF50;
}

.offer-content p {
    margin: 10px 0;
    font-size: 1rem;
    color: #666;
}

.offer-content .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.offer-content .btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .social-icons a img {
    height: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

footer .social-icons a img:hover {
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    max-width: 600px;
    margin: 40px auto;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.contact form input, 
.contact form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.contact form input:focus, 
.contact form textarea:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.contact form button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #45a049;
}

.contact .icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact .icons img {
    height: 40px;
    transition: transform 0.3s ease;
}

.contact .icons img:hover {
    transform: scale(1.2);
}
