/* GLOBAL GRADIENT - Updated for Campaign Consistency */
:root {
    --navy: #0A2342;
    --gold: #D4AF37;
    --red: #C41E3A;
    /* Campaign Red Accent */
    --white: #FFFFFF;
}

body {
    /* Updated Gradient: Gold top, fading to White, grounding in Navy */
    background: linear-gradient(to bottom,
            var(--gold) 0%,
            var(--white) 15%,
            var(--white) 55%,
            var(--navy) 100%);
    background-attachment: scroll;
    min-height: 100vh;
}

/* LIQUID GLASS EFFECT */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    /* border-bottom removed to allow gradient strip to shine */
}

/* Glass Form for Contact Page */
.glass-form {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.05);
    border-radius: 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

.input-glass {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #0A2342;
}

.input-glass:focus {
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

/* IMAGE PLACEHOLDER STYLE */
.img-placeholder {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Adjusted for general use, specific pages might override */
    object-position: center;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B59020 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Form Elements Reset/Enhance */
input,
textarea {
    transition: all 0.2s;
}

input:focus,
textarea:focus {
    border-color: #0A2342;
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}