Theme Name: PawelMotyw
Theme URI: pawels.zsti.me
Author: Paweł Świerczyński
Author URI: pawels.zsti.me
Description: Motyw stworzony przez Pawła Świerczyńskiego
Version: 1.0
Text Domain: pawel-motyw

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}


header .logo h1 {
    margin: 0;
    font-size: 28px; 
    font-weight: 600; 
    color: #333; 
    letter-spacing: 1px; 
}

header .logo h1 a {
    text-decoration: none;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px 40px;
    border-bottom: 1px solid #ddd;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

nav ul li a:hover {
    color: #0073aa;
}




.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    margin-left: 20px;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .search-icon {
        display: none;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 18px;
    }
}

.hero {
    background-color: #f4f4f4;
    padding: 50px;
    text-align: center;
}

.hero img {
    max-width: 100%;
    height: auto;
}

.featured-destinations {
    padding: 20px;
    text-align: center; 
}

.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center; 
}

.destinations-grid img {
    width: calc(33.33% - 20px); 
    height: auto;
}


@media (max-width: 768px) {
    .destinations-grid img {
        width: calc(50% - 20px); 
    }
}

@media (max-width: 480px) {
    .destinations-grid img {
        width: 100%; 
    }
}

aside {
    background-color: #f4f4f4;
    padding: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}	