/* =========================================
   RESET & BASE
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   LAYOUT
========================================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 100;
    background: #fff;
    transition: 0.3s ease;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.site-logo img {
    height: 48px;
}

/* Navigation */
.site-nav {
    display: flex;
    gap: 24px;
}

.site-nav a {
    font-size: 16px;
    font-weight: 500;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #000;
    transition: 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 6px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: 0.3s ease;
    }

    .site-nav.nav-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* =========================================
   HERO SECTION
========================================= */

.hero {
    padding: 120px 0;
    background: #fafafa;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-highlight {
    color: #a05a2c;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.wp-block-button__link {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #111;
    color: #eee;
    padding: 60px 0;
    text-align: center;
}

.footer-menu {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-menu a {
    color: #eee;
    font-size: 14px;
}

.footer-copy {
    font-size: 14px;
    opacity: 0.7;
}

/* =========================================
   POST CARDS (BLOG)
========================================= */

.post-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.post-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
}

.post-card__thumb img {
    width: 100%;
}

.post-card__content {
    padding: 20px;
}

.post-card__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.post-card__excerpt {
    font-size: 15px;
    opacity: 0.8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }

    .section {
        padding: 40px 0;
    }
}
