/*
Theme Name: Hilltopper at Heart
Theme URI: https://hilltopperatheart.org
Author: Hilltopper at Heart Alumni Chapter
Author URI: https://hilltopperatheart.org
Description: A custom WordPress membership theme for the EC Glass High School Alumni Chapter - Hilltopper at Heart in Lynchburg, VA. Fully compatible with Elementor page builder, featuring membership areas, event management, alumni stories, and a classic navy & gold institutional design. "Once a Hilltopper, always a Hilltopper."
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hilltopper
Tags: membership, community, education, alumni, elementor, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, custom-background, custom-header
*/

:root {
    --hh-navy: #0b2a5b;
    --hh-navy-dark: #061a3a;
    --hh-navy-light: #1c4276;
    --hh-gold: #c8a24a;
    --hh-gold-light: #e0c473;
    --hh-gold-dark: #9e7d2f;
    --hh-cream: #faf7ef;
    --hh-gray: #4a4a4a;
    --hh-gray-light: #e8e8e8;
    --hh-white: #ffffff;
    --hh-red: #8b1a1a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--hh-gray);
    background-color: var(--hh-cream);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--hh-navy);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.6em;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

a {
    color: var(--hh-navy-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--hh-gold-dark);
}

p {
    margin-bottom: 1.2em;
}

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

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

.text-center { text-align: center; }
.text-gold { color: var(--hh-gold); }

/* ===== Top Bar ===== */
.hh-topbar {
    background: var(--hh-navy-dark);
    color: var(--hh-cream);
    font-size: 0.85rem;
    padding: 6px 0;
}

.hh-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hh-topbar a {
    color: var(--hh-gold-light);
}

.hh-topbar a:hover {
    color: var(--hh-white);
}

.hh-topbar-login a {
    margin-left: 15px;
}

/* ===== Header ===== */
.hh-header {
    background: var(--hh-white);
    border-bottom: 4px solid var(--hh-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.hh-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 20px;
}

.hh-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hh-logo-wrap img {
    height: 64px;
    width: auto;
}

.hh-logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--hh-navy);
    line-height: 1.1;
}

.hh-logo-text .tagline {
    font-size: 0.78rem;
    color: var(--hh-gold-dark);
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ===== Navigation ===== */
.hh-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    color: var(--hh-navy);
}

.hh-nav {
    flex: 1;
    text-align: right;
}

.hh-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

.hh-nav ul li {
    position: relative;
}

.hh-nav ul li a {
    display: block;
    padding: 10px 16px;
    color: var(--hh-navy);
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.hh-nav ul li a:hover,
.hh-nav ul li.current-menu-item > a {
    background: var(--hh-navy);
    color: var(--hh-white);
}

.hh-nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--hh-white);
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: left;
    flex-direction: column;
    gap: 0;
    border-radius: 0 0 6px 6px;
}

.hh-nav ul li:hover > ul {
    display: flex;
}

.hh-nav ul ul a {
    padding: 10px 16px;
    border-bottom: 1px solid var(--hh-gray-light);
    border-radius: 0;
}

/* ===== Buttons ===== */
.btn,
.hh-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--hh-gold);
    color: var(--hh-navy-dark);
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: 2px solid var(--hh-gold);
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.btn:hover,
.hh-btn:hover {
    background: var(--hh-gold-light);
    border-color: var(--hh-gold-light);
    color: var(--hh-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200,162,74,0.4);
}

.btn-navy {
    background: var(--hh-navy);
    color: var(--hh-white);
    border-color: var(--hh-navy);
}

.btn-navy:hover {
    background: var(--hh-navy-light);
    color: var(--hh-white);
    border-color: var(--hh-navy-light);
}

.btn-outline {
    background: transparent;
    color: var(--hh-gold-dark);
}

.btn-outline:hover {
    background: var(--hh-gold);
    color: var(--hh-navy-dark);
}

/* ===== Hero ===== */
.hh-hero {
    background: linear-gradient(135deg, var(--hh-navy) 0%, var(--hh-navy-dark) 100%);
    color: var(--hh-white);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hh-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(200,162,74,0.15);
    border-radius: 50%;
}

.hh-hero::after {
    content: '';
    position: ascending;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border: 2px solid rgba(200,162,74,0.1);
    border-radius: 50%;
}

.hh-hero .container {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hh-hero-logo {
    height: 110px;
    margin: 0 auto 24px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.hh-hero h2 {
    color: var(--hh-white);
    font-size: 2.6rem;
    margin-bottom: 0.4em;
}

.hh-hero .hh-hero-motto {
    font-size: 1.15rem;
    color: var(--hh-gold-light);
    font-style: italic;
    margin-bottom: 1.5em;
}

.hh-hero p.lead {
    font-size: 1.15rem;
    margin-bottom: 2em;
    color: rgba(255,255,255,0.9);
}

.hh-hero .btn-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Section Base ===== */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--hh-gold);
}

.section-title p {
    color: var(--hh-gray);
    max-width: 640px;
    margin: 16px auto 0;
}

/* ===== About ===== */
.hh-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hh-about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 6px solid var(--hh-white);
}

.hh-about-content h2 {
    margin-bottom: 0.5em;
}

.hh-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.hh-stat {
    text-align: center;
    padding: 20px 10px;
    background: var(--hh-navy);
    color: var(--hh-white);
    border-radius: 8px;
}

.hh-stat .num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hh-gold);
    display: block;
}

.hh-stat .label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ===== Membership Tiers ===== */
.hh-membership {
    background: var(--hh-gray-light);
}

.hh-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.hh-plan {
    background: var(--hh-white);
    border-radius: 10px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: transform 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.hh-plan:hover {
    transform: translateY(-6px);
}

.hh-plan.featured {
    border-color: var(--hh-gold);
}

.hh-plan .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hh-gold);
    color: var(--hh-navy-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hh-plan h3 {
    color: var(--hh-navy);
    margin-bottom: 8px;
}

.hh-plan .price {
    font-size: 2.6rem;
    color: var(--hh-navy);
    font-weight: 700;
    margin: 10px 0;
}

.hh-plan .price span {
    font-size: 0.9rem;
    color: var(--hh-gray);
    font-weight: 400;
}

.hh-plan ul {
    list-style: none;
    text-align: left;
    margin: 22px 0;
}

.hh-plan ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid var(--hh-gray-light);
    font-size: 0.95rem;
}

.hh-plan ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hh-gold-dark);
    font-weight: 700;
}

/* ===== Events ===== */
.hh-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.hh-event-card {
    background: var(--hh-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.hh-event-card:hover {
    transform: translateY(-5px);
}

.hh-event-date {
    background: var(--hh-navy);
    color: var(--hh-white);
    padding: 14px;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hh-event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--hh-gold);
}

.hh-event-date .month {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.hh-event-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hh-event-body h4 {
    margin-bottom: 8px;
}

.hh-event-meta {
    font-size: 0.85rem;
    color: var(--hh-gray);
    margin-bottom: 12px;
}

.hh-event-meta span {
    display: block;
    margin-bottom: 3px;
}

.hh-event-body .btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 8px 20px;
    font-size: 0.82rem;
}

/* ===== Alumni Stories ===== */
.hh-stories {
    background: var(--hh-navy);
    color: var(--hh-white);
}

.hh-stories .section-title h2 {
    color: var(--hh-white);
}

.hh-stories .section-title p {
    color: rgba(255,255,255,0.8);
}

.hh-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.hh-story-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,162,74,0.25);
    border-radius: 10px;
    padding: 28px;
}

.hh-story-card .quote {
    font-size: 3rem;
    color: var(--hh-gold);
    line-height: 0.6;
    margin-bottom: 10px;
}

.hh-story-card p.story-text {
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-bottom: 18px;
}

.hh-story-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hh-story-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--hh-gold);
    object-fit: cover;
}

.hh-story-author .name {
    color: var(--hh-white);
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hh-story-author .year {
    color: var(--hh-gold-light);
    font-size: 0.85rem;
}

/* ===== News / Blog ===== */
.hh-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 28px;
}

.hh-news-card {
    background: var(--hh-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.hh-news-card .thumb {
    height: 200px;
    background: var(--hh-navy);
    overflow: hidden;
}

.hh-news-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hh-news-card:hover .thumb img {
    transform: scale(1.05);
}

.hh-news-card .body {
    padding: 22px;
}

.hh-news-card .date {
    font-size: 0.8rem;
    color: var(--hh-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.hh-news-card h4 {
    margin-bottom: 10px;
}

.hh-news-card .excerpt {
    font-size: 0.92rem;
    color: var(--hh-gray);
    margin-bottom: 14px;
}

.hh-news-card .read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hh-navy);
    text-transform: uppercase;
}

/* ===== CTA Banner ===== */
.hh-cta {
    background: linear-gradient(135deg, var(--hh-gold-dark) 0%, var(--hh-gold) 100%);
    text-align: center;
    padding: 60px 0;
}

.hh-cta h2 {
    color: var(--hh-navy-dark);
    margin-bottom: 0.4em;
}

.hh-cta p {
    color: var(--hh-navy-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5em;
}

/* ===== Footer ===== */
.hh-footer {
    background: var(--hh-navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.hh-footer .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.hh-footer h4 {
    color: var(--hh-gold);
    margin-bottom: 18px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hh-footer ul {
    list-style: none;
}

.hh-footer ul li {
    margin-bottom: 10px;
}

.hh-footer a {
    color: rgba(255,255,255,0.7);
}

.hh-footer a:hover {
    color: var(--hh-gold);
}

.hh-footer-logo {
    height: 70px;
    margin-bottom: 16px;
}

.hh-footer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.hh-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.hh-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(200,162,74,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.hh-social a:hover {
    background: var(--hh-gold);
    color: var(--hh-navy-dark);
}

.hh-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
}

.hh-footer-bottom a {
    color: var(--hh-gold-light);
}

/* ===== Page / Content ===== */
.page-wrap {
    padding: 50px 0;
}

.page-header-banner {
    background: linear-gradient(135deg, var(--hh-navy) 0%, var(--hh-navy-dark) 100%);
    color: var(--hh-white);
    padding: 50px 0;
    text-align: center;
}

.page-header-banner h1 {
    color: var(--hh-white);
    margin-bottom: 0.3em;
}

.page-header-banner p {
    color: var(--hh-gold-light);
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--hh-gray);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--hh-navy);
}

.content-area {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 50px 0;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 1.5em;
}

.entry-content img {
    border-radius: 8px;
    margin: 20px 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--hh-gold);
    padding: 12px 24px;
    margin: 20px 0;
    background: var(--hh-white);
    font-style: italic;
    color: var(--hh-navy);
}

/* ===== Sidebar ===== */
.sidebar-widget {
    background: var(--hh-white);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--hh-gold);
    margin-bottom: 16px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--hh-gray-light);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

/* ===== Login / Register Forms ===== */
.hh-auth-form {
    max-width: 460px;
    margin: 40px auto;
    background: var(--hh-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.hh-auth-form h2 {
    text-align: center;
    margin-bottom: 6px;
}

.hh-auth-form .form-sub {
    text-align: center;
    color: var(--hh-gray);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.hh-form-group {
    margin-bottom: 18px;
}

.hh-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--hh-navy);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
}

.hh-form-group input,
.hh-form-group select,
.hh-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--hh-gray-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.hh-form-group input:focus,
.hh-form-group select:focus,
.hh-form-group textarea:focus {
    outline: none;
    border-color: var(--hh-gold);
}

.hh-auth-form .btn {
    width: 100%;
    margin-top: 8px;
}

.hh-auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
}

/* ===== Membership Dashboard ===== */
.hh-dashboard {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 600px;
    gap: 0;
    margin: 40px auto;
    background: var(--hh-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hh-dash-nav {
    background: var(--hh-navy);
    padding: 24px 0;
}

.hh-dash-nav .user-info {
    text-align: center;
    padding: 0 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
}

.hh-dash-nav .user-info .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--hh-gold);
    margin: 0 auto 10px;
    background: var(--hh-navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--hh-gold);
}

.hh-dash-nav .user-info .uname {
    color: var(--hh-white);
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hh-dash-nav .user-info .urole {
    color: var(--hh-gold-light);
    font-size: 0.8rem;
}

.hh-dash-nav ul {
    list-style: none;
}

.hh-dash-nav ul li a {
    display: block;
    padding: 12px 24px;
    color: rgba(255,255,255,0.8);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.92rem;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.hh-dash-nav ul li a:hover,
.hh-dash-nav ul li a.active {
    background: rgba(200,162,74,0.15);
    border-left-color: var(--hh-gold);
    color: var(--hh-white);
}

.hh-dash-content {
    padding: 30px;
}

.hh-dash-content h2 {
    margin-bottom: 6px;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.dash-card {
    background: var(--hh-cream);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--hh-gold);
}

.dash-card .num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hh-navy);
}

.dash-card .label {
    font-size: 0.82rem;
    color: var(--hh-gray);
    text-transform: uppercase;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hh-about-grid,
    .content-area {
        grid-template-columns: 1fr;
    }
    .hh-footer .container {
        grid-template-columns: 1fr 1fr;
    }
    .hh-stats {
        grid-template-columns: 1fr 1fr;
    }
    .hh-dashboard {
        grid-template-columns: 1fr;
    }
    .hh-dash-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 0 12px;
    }
    .hh-dash-nav ul li a {
        padding: 10px 14px;
        border-left: none;
        border-radius: 6px;
    }
}

@media (max-width: 768px) {
    .hh-nav-toggle {
        display: block;
    }
    .hh-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--hh-white);
        padding: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 99;
    }
    .hh-nav.active {
        display: block;
    }
    .hh-nav ul {
        flex-direction: column;
        text-align: left;
    }
    .hh-nav ul li a {
        border-radius: 4px;
    }
    .hh-nav ul ul {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }
    .hh-plans {
        grid-template-columns: 1fr;
    }
    .hh-hero h2 {
        font-size: 1.8rem;
    }
    .hh-footer .container {
        grid-template-columns: 1fr;
    }
    .hh-topbar .container {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    section { padding: 40px 0; }
    .hh-hero { padding: 50px 0; }
    .hh-hero-logo { height: 80px; }
    .hh-stats { grid-template-columns: 1fr; }
}

/* ===== Elementor Compatibility ===== */
body.elementor-page .hh-header,
body.elementor-page .hh-footer {
    display: block;
}

.elementor-section .elementor-button {
    background-color: var(--hh-gold);
}

/* WordPress Core */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
.alignnone { margin: 1em 0; }

.wp-caption {
    max-width: 100%;
    padding: 8px;
    background: var(--hh-white);
    border-radius: 8px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.sticky { display: block; }
.bypostauthor { display: block; }

/* Comments */
.hh-comments {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--hh-gray-light);
}

.comment-list {
    list-style: none;
}

.comment-body {
    padding: 18px;
    background: var(--hh-white);
    border-radius: 8px;
    margin-bottom: 16px;
}

/* WooCommerce basic support */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--hh-gold);
    color: var(--hh-navy-dark);
}

/* Print */
@media print {
    .hh-header,
    .hh-footer,
    .hh-topbar,
    .hh-nav {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
