/* Santa Suite Sub-Theme Consolidated */
@import url('../style.css');

:root {
    --primary: #c0392b;    /* Santa Red */
    --secondary: #1b5e20;  /* Evergreen */
    --accent: #d4af37;     /* Gold */
    --bg: #fdfdfd;
    --holiday-border: 4px dashed #c0392b;
}

body { background-color: var(--bg); }

header { 
    background: var(--secondary) !important; 
    border-bottom: 3px solid var(--accent);
}

.hero {
    background: linear-gradient(rgba(27, 94, 32, 0.85), rgba(192, 57, 43, 0.85)), 
                url('../images/santa-hero-bg.jpg') no-repeat center center/cover !important;
}

.featured-cta {
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-cta h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }

.section-header { text-align: center; margin: 5rem 0 3rem; }
.section-header h2 { font-size: 3rem; color: var(--secondary); }

.santa-border {
    border: var(--holiday-border);
    padding: 2.5rem;
    border-radius: 15px;
    background: #fff;
}

.santa-faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-q {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.line-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    padding: 1.2rem;
    border-bottom: 1px dashed #ddd;
    text-align: center;
    color: var(--text);
}

.line-item:last-child { border-bottom: none; }

.holiday-divider {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 5rem 0;
}

.btn {
    background: var(--primary) !important;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.btn:hover { background: var(--secondary) !important; transform: translateY(-3px); }

@media (max-width: 768px) {
    .section-header h2 { font-size: 2.2rem; }
    .line-item { font-size: 1.1rem; }
}