/* Courts of Heaven Prayer App Styles */

:root {
    --primary-color: #3a5a7d;
    --secondary-color: #c9b37e;
    --accent-color: #d4af37;
    --light-color: #f5f5f5;
    --dark-color: #333;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: linear-gradient(to bottom, #e6eef8, #f5f5f5);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), #1e3c5a);
    color: white;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1478760329108-5c128db06a17?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Main Content */
main {
    padding: 3rem 0;
}

.app-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.app-description h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.app-description p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Prayer Form */
.prayer-generator {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

input[type="text"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(58, 90, 125, 0.2);
}

.btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background-color: #2c4a6d;
    transform: translateY(-2px);
}

.btn i {
    margin-right: 8px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #b9a36e;
}

/* Prayer Output */
.prayer-output {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.prayer-output.hidden {
    display: none;
}

.prayer-output::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    border-radius: 10px;
    z-index: 0;
}

.prayer-content {
    position: relative;
    z-index: 1;
}

.prayer-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.prayer-header h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.prayer-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.prayer-intro, .prayer-closing {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.prayer-section {
    margin-bottom: 1.5rem;
}

.prayer-section strong {
    color: var(--primary-color);
}

.prayer-section em {
    font-style: italic;
    color: #555;
}

.prayer-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* Saved Prayers */
.saved-prayers {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.saved-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.saved-header h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.saved-prayer-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--secondary-color);
}

.saved-prayer-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.saved-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.saved-prayer-card .btn {
    margin-right: 0.5rem;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.delete-btn {
    background-color: #e74c3c;
}

.delete-btn:hover {
    background-color: #c0392b;
}

.empty-message {
    text-align: center;
    color: #777;
    padding: 2rem 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .prayer-generator, .prayer-output, .saved-prayers {
        padding: 1.5rem;
    }
    
    .prayer-actions {
        flex-direction: column;
    }
    
    .prayer-actions .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prayer-output {
    animation: fadeIn 0.5s ease-out;
}

/* Scripture Reference Styling */
strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Heavenly Accents */
.heavenly-accent {
    color: var(--accent-color);
}

/* Prayer Components Visual Separation */
.prayer-section {
    position: relative;
    padding-left: 20px;
}

.prayer-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: calc(100% - 10px);
    width: 3px;
    background-color: rgba(201, 179, 126, 0.3);
    border-radius: 3px;
}