/*
Theme Name: Health Tax Alliance
Description: Custom classic WordPress theme
Version: 1.0
*/

/*
Theme Name: Health Tax Alliance
Description: Custom WordPress theme for Health Tax Alliance website
Version: 1.0
Author: Your Name
*/

/* Recoleta Font Family */
@font-face {
    font-family: 'Recoleta';
    src: url('./fonts/Recoleta Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Recoleta';
    src: url('./fonts/Recoleta Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Recoleta';
    src: url('./fonts/Recoleta SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Recoleta';
    src: url('./fonts/Recoleta Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Apply Recoleta font to the entire site */
body {
    font-family: 'Recoleta', Arial, sans-serif !important;
}

/* Headings use Recoleta Bold */
h1, h2 {
    font-family: 'Recoleta', Arial, sans-serif !important;
    font-weight: 700 !important;
}

/* Sub-headings use Recoleta Regular */
h3, h4, h5, h6 {
    font-family: 'Recoleta', Arial, sans-serif !important;
    font-weight: 400 !important;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #016678;
    text-decoration: none;
    font-weight: 500;
}

.main-nav a:hover {
    color: #eab520;
}

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

.hero-section {
    padding: 4rem 0;
    text-align: center;
}

.hero-subtitle {
    color: #016678;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 2.5rem;
    color: #016678;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.read-more-btn {
    background: #016678;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.cards-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.card h3 {
    color: #016678;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.card-link {
    color: #016678;
    text-decoration: underline;
    font-weight: 500;
}

.partners-section {
    padding: 3rem 0;
    background: white;
    border-top: 2px solid #016678;
    border-bottom: 2px solid #016678;
}

.partners-section h2 {
    text-align: center;
    color: #016678;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.partners-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.carousel-container {
    overflow: hidden;
    width: 600px;
}

.partners-logos {
    display: flex;
    transition: transform 0.3s ease;
}

.logo-slide {
    display: flex;
    gap: 4rem;
    align-items: center;
    min-width: 600px;
    justify-content: center;
}

.partners-logos img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.carousel-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #016678;
    cursor: pointer;
    padding: 0.5rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: #016678;
}

.contact-section {
    padding: 3rem 0;
    text-align: center;
    background: white;
}

.contact-section h2 {
    color: #016678;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-section p {
    color: #016678;
    margin-bottom: 2rem;
}

.contact-btn {
    background: #016678;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.site-footer {
    background: #eab520;
    padding: 2rem 0;
    color: #016678;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    color: #016678;
    text-decoration: none;
    font-size: 1.2rem;
}

.footer-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-link {
    color: #016678;
    text-decoration: underline;
}

.footer-link:hover {
    color: #eab520;
}
    margin-bottom: 1rem;
}

.social-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-link:hover {
    color: #016678;
}

.copyright {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.footer-info {
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-info a {
    color: #016678;
    text-decoration: none;
}

.page-content {
    padding: 3rem 0;
    flex: 1;
}

.page-content h1 {
    color: #016678;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.media-tabs {
    border-bottom: 2px solid #016678;
    margin-bottom: 3rem;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    color: #666;
    font-size: 1rem;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: #eab520;
    border-bottom-color: #eab520;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: #016678;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.interview-item h3 {
    color: #016678;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.interview-item h3 a {
    color: #016678;
    text-decoration: none;
}

.interview-item h3 a:hover {
    text-decoration: underline;
}

.interview-item p {
    color: #666;
    line-height: 1.6;
}

.press-statement-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.press-statement-item h3 {
    color: #016678;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.press-content {
    max-height: 400px;
    overflow-y: auto;
}

.press-content a[href*="download"],
.press-content a[href*=".pdf"] {
    background: #eab520;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

.press-content a[href*="download"]:first-of-type,
.press-content a[href*=".pdf"]:first-of-type {
    display: none;
}

.about-hero {
    text-align: center;
    padding: 2rem 0 4rem 0;
}

.about-hero h1 {
    color: #016678;
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
}

.about-sections {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.about-section h2 {
    color: #016678;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-section p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section li {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-section li:before {
    content: "•";
    color: #016678;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.resources-tabs {
    border-bottom: 2px solid #016678;
    margin-bottom: 3rem;
}

.resources-tabs .tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
}

.resources-tabs .tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    color: #666;
    font-size: 1rem;
    border-bottom: 3px solid transparent;
}

.resources-tabs .tab-btn.active {
    color: #eab520;
    border-bottom-color: #eab520;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.resource-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-content {
    padding: 1.5rem;
}

.resource-content h3 {
    color: #016678;
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
}

.resource-content h3 a {
    color: #016678;
    text-decoration: none;
}

.resource-content h3 a:hover {
    text-decoration: underline;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .info-section {
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: #016678;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #016678;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.social-icon.linkedin { background: #0077b5; }
.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #000; }

.contact-form {
    border: 2px solid #016678;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #016678;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn {
    background: #eab520;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}
/* Download button styling to match site buttons */
.download-buttons .wp-block-file__button {
    background: #016678 !important;
    color: white !important;
    padding: 0.8rem 2rem !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    border: none !important;
    display: inline-block !important;
}

.download-buttons {
    margin-top: 20px;
}

.hero-subtitle {
    color: #eab520;
}

.card-link:hover {
    color: #eab520;
}

.contact-page h1 {
    color: #016678;
}

.contact-page {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.contact-section p {
    color: #eab520;
}
