/*
Theme Name: Childit Child
Template: childit
Author: Arkadiusz Sobacki
Description: Motyw potomny dla Childit
Version: 1.0
*/
/* Stylizacja sekcji hero */
.hero-slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.hero-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Stylizacja sekcji "O nas" */
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.about-section h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
}
.about-section p {
    font-size: 1.2em;
    line-height: 1.6;
}
.about-section .btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Stylizacja sekcji misji i wizji */
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
}
.mission-vision .item {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.mission-vision .item img {
    width: 80px;
    margin-bottom: 20px;
}
.mission-vision .item h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}
.mission-vision .item p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Stylizacja kart ofert */
.offer-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 20px;
}
.offer-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}
.offer-card img {
    width: 60px;
    margin-bottom: 15px;
}
.offer-card h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}
.offer-card p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
}
.offer-card .btn {
    padding: 10px 15px;
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Stylizacja siatki galerii */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 60px 20px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Stylizacja formularza kontaktowego */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}
.contact-form button {
    width: 100%;
    padding: 15px;
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}

/* Ogólne ulepszenia typografii i kolorystyki */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 2.6;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
  }


  