/* ==========================================================================
   CACI UNIFIED LAYOUT STYLESHEET (Base Resets & Custom Components)
   ========================================================================== */

/* --- TYPOGRAPHY AND BASE RESET --- */
html {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    color: #5A5A5A; /* Standard Gray default */
    background-color: #F8F9FA; /* Light BG */
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Global Heading Pairings (Gold Standard: Playfair Display) */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Playfair Display', Georgia, serif !important;
    color: #174477 !important; /* CACI Primary Blue */
    font-weight: 700 !important;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

/* --- FORM ELEMENTS & INPUTS --- */
.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #A4BDDD; /* Tone 3 Highlight Border */
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background-color: #FFFFFF;
    color: #333333;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #6696C5; /* Tone 2 Mid-Tone focus */
    box-shadow: 0 0 0 3px rgba(102, 150, 197, 0.3);
    outline: none;
}

/* --- SHADOWS & STRUCTURE --- */
.attendee-card {
    border-left: 5px solid #174477; /* CACI Primary Blue stripe */
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.attendee-card:hover {
    box-shadow: 0 8px 24px rgba(23, 68, 119, 0.08);
}

/* --- BLOCKQUOTES (Sacred & Elevated Scripture quotes) --- */
blockquote, .blockquote {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    padding-left: 24px;
    border-left: 5px solid #001F5C; /* Minister Blue stripe */
    color: #5A5A5A;
    margin: 1.5rem 0;
}

/* --- BUTTONS & HOVER ENHANCEMENTS (Montserrat SemiBold) --- */
.btn-primary, .cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 9999px;
    cursor: pointer;
    background-color: #174477; /* CACI Primary Blue */
    color: #FFFFFF;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 6px rgba(23, 68, 119, 0.15);
    text-decoration: none;
}

.btn-primary:hover, .cta-button:hover {
    background-color: #6696C5; /* Tone 2 Mid-Tone hover */
    box-shadow: 0 8px 20px rgba(23, 68, 119, 0.35);
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

/* Give / Highlights Button: Elder Red (#C8102E) */
.btn-elder-red {
    background-color: #C8102E;
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(200, 16, 46, 0.15);
}

.btn-elder-red:hover {
    background-color: #6696C5;
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.35);
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: #FFFFFF;
    color: #174477 !important;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* --- TRANSITIONS & UTILITIES --- */
.transition-all-300 {
    transition: all 0.3s ease;
}

.royal-gradient-text {
    background: #0c2ef5;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem !important;
    }
    h2 {
        font-size: 1.8rem !important;
    }
}
