/**
 * Orange Theme for BirthdayCard.online
 */

.theme-orange {
    --primary-color: #ff9800;
    --secondary-color: #f57c00;
    --accent-color: #ffb74d;
    --text-color: #e65100;
    --light-color: #fff3e0;
    --border-color: #ffe0b2;
}

.theme-orange .card-header,
.theme-orange .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
}

.theme-orange .btn-primary:hover,
.theme-orange .btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.theme-orange .card-title,
.theme-orange h1,
.theme-orange h2,
.theme-orange a {
    color: var(--primary-color);
}

.theme-orange a:hover {
    color: var(--secondary-color);
}

.theme-orange .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 152, 0, 0.25);
}

/* Card preview overlay styles */
.preview-overlay.theme-orange {
    background-color: rgba(255, 152, 0, 0.7);
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Card view styles */
.card-view.theme-orange {
    background-color: rgba(255, 152, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.card-view.theme-orange .card-header {
    background-color: var(--primary-color);
    color: white;
}

.card-view.theme-orange .card-footer {
    background-color: rgba(255, 152, 0, 0.1);
    border-top: 1px solid var(--primary-color);
} 