/* ===== OceanWP Minimal Core CSS ===== */

/* Layout */
.container, .wrap, .site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Header */
.site-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: #fff;
    transition: box-shadow .2s ease, background-color .2s ease;
}

.site-header.is-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Branding */
.site-branding img {
    max-height: 60px;
    height: auto;
    width: auto;
    display: block;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
    color: #0073aa;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle span,
.mobile-menu-toggle:before,
.mobile-menu-toggle:after {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    margin: 4px 0;
    transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-toggle.toggled:before {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.toggled:after {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-toggle.toggled span {
    opacity: 0;
}

.mobile-menu {
    display: none;
    background: #fff;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px 20px;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #222;
}

/* Typography */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.5;
    color: #222;
    background: #fff;
}

h1, .entry-title {
    font-size: 32px;
    font-weight: 700;
    margin: 24px 0 16px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 24px 0 12px;
}

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

/* Footer */
.site-footer {
    padding: 20px 0;
    text-align: center;
    background: #f7f7f7;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    h1, .entry-title {
        font-size: 26px;
    }
}
