/*
Theme Name: CalTex Capital
Author: Your Name
Description: Custom theme for CalTex Capital, LLC - Houston, Texas
Version: 1.0
*/

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    padding-top: 96px;
}

.bg-navy { background-color: #001f3f; }
.text-navy { color: #001f3f; }
.text-gold { color: #d4af37; }
.bg-gold { background-color: #d4af37; }

.hero-section {
    background-image: linear-gradient(rgba(0, 31, 63, 0.6), rgba(0, 31, 63, 0.6)), url('<?php echo esc_url(get_template_directory_uri() . '/images/hero.jpg'); ?>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Better formatting for policy pages */
.prose {
    color: #374151;
    line-height: 1.8;
}

.prose h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 1.5rem;
}

.prose h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #001f3f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #001f3f;
    margin-top: 2rem;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.75rem;
}

.prose strong {
    font-weight: 600;
    color: #111827;
}

/* Fix hero image gap */
.hero-section, section:first-of-type {
    margin-top: -1px !important;
}

body {
    padding-top: 0 !important;
}

/* Force override hero image */
.relative.w-full.h-\\[65vh\\],
.relative.h-\\[520px\\] {
    height: 520px !important;
    max-height: 520px !important;
}

.relative img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* Contact Form 7 Styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    border-color: #001f3f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
}

.wpcf7-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #374151;
}

.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-submit {
    width: 100%;
    background: #001f3f;
    color: white;
    font-weight: 600;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7-submit:hover {
    background: #002b55;
}


/* Add any other styles from your MBA theme as needed */