/*
Theme Name: ggdreamtours.co.il
Theme URI: https://ggdreamtours.co.il/
Description: ggdreamtours.co.il WP theme
Author: ggdreamtours.co.il
Version: 1.0
*/
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, Arial;
    background: #f5f7fa;
    color: #111;
}

a { color: inherit; text-decoration: none; }

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

/* Layout */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.site-header {
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 56px;
}

.mainmenu ul {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mainmenu a {
    color: #fff;
    font-weight: 600;
}

/* Main */

.site-main {
    padding: 40px 0;
}

/* Hero */

.hero {
    padding: 20px 20px;
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 42px;
    margin: 20px 0;
}

/* Posts grid */

.latest-posts h2 {
    font-size: 28px;
    margin: 20px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform .2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    padding: 16px;
    font-size: 18px;
}

/* Footer */

.site-footer {
    background: #020617;
    color: #fff;
    margin-top: 60px;
}

.footer-inner {
    padding: 40px 0;
    text-align: center;
}

.footermenu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.copyright {
    opacity: 0.7;
    font-size: 14px;
}

/* Mobile */

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
}
