@import url('https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&family=Lato:wght@300;400;700&display=swap');

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

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    background: #f9f7f5;
}

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

a { color: #b8304f; text-decoration: none; }
a:hover { color: #8c1d3b; text-decoration: underline; }

/* ===== HEADER ===== */
.header {
    background: #fff;
    border-bottom: 3px solid #b8304f;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 70px;
    width: auto;
}

.logo .site-title {
    font-family: 'Oleo Script', cursive;
    font-size: 1.4rem;
    color: #b8304f;
    margin-top: 4px;
}

.sitenav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.sitenav ul li a {
    display: block;
    padding: 10px 20px;
    color: #444;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.sitenav ul li a:hover,
.sitenav ul li a[aria-current] {
    background: #b8304f;
    color: #fff;
    text-decoration: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PAGE CONTENT ===== */
.page_content {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

.site-main {
    flex: 1;
    min-width: 0;
}

.blog-post {
    background: #fff;
    padding: 35px 40px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.entry-header h1,
h1.entry-title {
    font-family: 'Oleo Script', cursive;
    font-size: 2rem;
    color: #b8304f;
    margin-bottom: 25px;
    line-height: 1.3;
}

.entry-content h3 {
    font-family: 'Oleo Script', cursive;
    font-size: 1.6rem;
    color: #b8304f;
    margin: 30px 0 15px;
}

.entry-content h4 {
    font-size: 1.15rem;
    color: #333;
    margin: 20px 0 10px;
}

.entry-content p {
    margin-bottom: 15px;
}

.entry-content ul {
    margin: 10px 0 15px 25px;
}

.entry-content ul li {
    margin-bottom: 5px;
}

.entry-content hr,
.wp-block-separator {
    border: none;
    border-top: 2px solid #b8304f;
    margin: 30px 0;
    opacity: 0.3;
}

.entry-content figure,
.wp-block-image {
    margin: 20px 0;
    border-radius: 6px;
    overflow: hidden;
}

.entry-content figure img {
    border-radius: 6px;
}

/* ===== SIDEBAR ===== */
#sidebar {
    width: 300px;
    flex-shrink: 0;
}

#sidebar .widget-title,
#sidebar h3.widget-title {
    font-family: 'Oleo Script', cursive;
    font-size: 1.3rem;
    color: #fff;
    background: #b8304f;
    padding: 12px 18px;
    border-radius: 6px 6px 0 0;
    margin: 0;
}

#sidebar .textwidget,
#sidebar aside {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid figure {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.gallery-grid figure:hover {
    transform: scale(1.02);
}

.gallery-grid figure img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ===== FOOTER ===== */
#footer-wrapper {
    background: #333;
    color: #ccc;
    margin-top: 40px;
}

.copyright-wrapper {
    background: #222;
    padding: 18px 0;
    text-align: center;
    font-size: 0.9rem;
}

.copyright-txt {
    color: #aaa;
}

.copyright-txt a {
    color: #e0a0b0;
}

.footer {
    padding: 30px 0;
}

.footer .cols-3 {
    display: inline-block;
    vertical-align: top;
    width: 32%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .page_content {
        flex-direction: column;
    }
    #sidebar {
        width: 100%;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    .sitenav ul {
        gap: 4px;
    }
    .sitenav ul li a {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    .blog-post {
        padding: 20px;
    }
    .entry-header h1,
    h1.entry-title {
        font-size: 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MISC ===== */
.clear { clear: both; }
.toggle { display: none; }
.header_wrap { display: none; }
