/* Christmas Main Page Styles */
.page-subtitle {
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
    font-style: italic;
}

/* Submission Form Styles */
.submit-form {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4edda 100%);
    border: 3px solid #ff6b6b;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0 40px 0;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-form:before {
    content: "✨";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 40px;
    opacity: 0.7;
}

.submit-form h2 {
    color: #d63031;
    margin-top: 30px;
    text-align: center;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.form-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: bold;
    color: #2d3436;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    flex-wrap: wrap;
}

.form-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 15px;
    margin: 8px;
    background: white;
    border-radius: 10px;
    border-left: 5px solid #ff6b6b;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step-number {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 3px 6px rgba(255, 107, 107, 0.3);
}

.step-title {
    color: #ff6b6b !important;
    font-size: 16px;
}

.submit-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ff6b6b 100%);
    color: white !important;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 25px auto 0;
    transition: all 0.4s ease;
    text-decoration: none !important;
    text-align: center;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    border: 3px solid white;
}

.submit-button:before {
    content: "🎄";
    margin-right: 10px;
}

.submit-button:after {
    content: "🎅";
    margin-left: 10px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7b7b 50%, #ff5252 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.6);
    text-decoration: none !important;
    color: white !important;
}

.important-note {
    background: linear-gradient(135deg, #fff9c4 0%, #ffecb3 100%);
    border: 2px solid #ffd54f;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #e65100;
    box-shadow: 0 3px 8px rgba(255, 213, 79, 0.3);
}

.urgent-badge {
    background: #ff4757;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(255, 71, 87, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Sections */
.christmas-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #74b9ff;
}

.christmas-intro h2 {
    color: #2d3436;
    text-align: center;
    margin-bottom: 20px;
}

.concert-highlights {
    margin: 40px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.highlight-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #74b9ff;
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.highlight-item h4 {
    color: #2d3436;
    margin-bottom: 10px;
}

.content-sections {
    margin: 40px 0;
}

.content-section {
    background: white;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #e17055;
}

.content-section h3 {
    color: #2d3436;
    margin-bottom: 15px;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Yearly Concerts */
.yearly-concerts {
    margin: 40px 0;
}

.concert-years {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.year-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #00b894;
    transition: transform 0.3s ease;
}

.year-card:hover {
    transform: translateY(-5px);
}

.year-card h4 {
    color: #2d3436;
    margin-bottom: 10px;
}

.year-link {
    display: inline-block;
    background: #00b894;
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none !important;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.year-link:hover {
    background: #00a085;
    text-decoration: none !important;
    color: white !important;
}

/* Community Call */
.community-call {
    margin: 50px 0 30px 0;
}

.community-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #e17055;
}

.community-box h3 {
    color: #2d3436;
    margin-bottom: 20px;
    font-size: 28px;
}

.community-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.community-button {
    background: #2d3436;
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.3s ease;
}

.community-button.highlight {
    background: #e17055;
    color: white !important;
}

.community-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none !important;
    color: white !important;
}

.closing-message {
    font-style: italic;
    font-size: 18px;
    color: #2d3436;
    margin-top: 20px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-steps {
        flex-direction: column;
    }
    
    .highlight-grid,
    .concert-years {
        grid-template-columns: 1fr;
    }
    
    .community-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .community-button {
        width: 200px;
    }
    
    .submit-button {
        padding: 15px 30px;
        font-size: 18px;
    }
}

.xmashiliteBigRed {
	font-size: 1.5em;
	font-weight: bold;
	color: white;
	background: #ce3c39;
	padding: 0.1em 0.3em;
	line-height: 1.2;	
}