/* ===== HARRISON & ASSOCIATES - SHARED STYLES ===== */
:root {
    --primary-blue: #1a365d;
    --secondary-blue: #2c5282;
    --accent-blue: #4299e1;
    --light-blue: #ebf8ff;
    --primary-brown: #5d4037;
    --secondary-brown: #795548;
    --accent-brown: #a1887f;
    --light-brown: #efebe9;
    --cream: #faf9f6;
    --white: #ffffff;
    --text-dark: #1a202c;
    --text-light: #718096;
    --gold: #c9a96e;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--cream);
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 600; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed; top: 0; width: 100%; background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08); z-index: 1000;
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center; height: 80px;
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon {
    width: 45px; height: 45px; background: var(--primary-blue); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--gold);
    font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
    border: 3px solid var(--accent-brown);
}
.logo-text {
    font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--primary-blue); font-weight: 700;
}
.logo-text span { color: var(--primary-brown); font-weight: 400; font-size: 0.9rem; display: block; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem;
    position: relative; transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--accent-brown); transition: width 0.3s;
}
.nav-links a:hover { color: var(--secondary-blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary-blue); font-weight: 600; }
.nav-links a.active::after { width: 100%; background: var(--gold); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-blue); cursor: pointer; }

/* ===== PAGE HEADER (for sub-pages) ===== */
.page-header {
    margin-top: 80px; background: var(--primary-blue); padding: 5rem 2rem;
    text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
    background: var(--secondary-blue); clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-header h1 {
    font-size: 3rem; color: var(--white); position: relative; z-index: 1;
}
.page-header h1 span { color: var(--gold); }
.page-header p {
    color: rgba(255,255,255,0.8); max-width: 600px; margin: 1rem auto 0;
    position: relative; z-index: 1; font-size: 1.1rem;
}
.breadcrumb {
    position: relative; z-index: 1; margin-top: 1.5rem;
    color: rgba(255,255,255,0.6); font-size: 0.9rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 1rem 2.5rem; text-decoration: none;
    font-weight: 600; border-radius: 4px; transition: all 0.3s ease;
    cursor: pointer; border: none; font-size: 1rem;
}
.btn-primary { background: var(--accent-brown); color: var(--white); }
.btn-primary:hover { background: var(--secondary-brown); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(93, 64, 55, 0.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary-blue); }
.btn-blue { background: var(--primary-blue); color: var(--white); }
.btn-blue:hover { background: var(--secondary-blue); transform: translateY(-2px); }

/* ===== SECTION UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 5rem 2rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 1rem; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; }
.divider { width: 60px; height: 3px; background: var(--accent-brown); margin: 1rem auto; }

/* ===== CARDS ===== */
.card {
    background: var(--white); border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s ease;
    border-top: 4px solid transparent;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-top-color: var(--accent-brown); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--primary-blue); font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: 4px;
    font-family: 'Open Sans', sans-serif; font-size: 1rem; transition: all 0.3s; background: var(--cream);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent-brown); box-shadow: 0 0 0 3px rgba(161, 136, 127, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-blue); color: var(--white); padding: 4rem 2rem 1rem;
}
.footer-container {
    max-width: 1200px; margin: 0 auto; display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; }
.footer-links h4 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
    text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
html { scroll-behavior: smooth; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 80px; left: 0; width: 100%;
        background: var(--white); flex-direction: column; padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); gap: 1.5rem;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .page-header h1 { font-size: 2rem; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
