/* Component Styles - Buttons, Cards, UI Elements */

.paper-shadow {
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 10px 20px rgba(0,0,0,0.02);
}

.home_prim {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.home_prim:hover {
    background: #1d4ed8;
}

.home_second {
    background: none;
    border: none;
    color: #666;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

.drop-cap::first-letter {
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    padding-right: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d6d3d1;
    background: white;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #78716c;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #57534e;
    margin-bottom: 0.5rem;
}

.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid #d6d3d1;
    cursor: pointer;
}

.btn-primary {
    display: inline-block;
    border: 1px solid #1c1917;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #1c1917;
    color: #F9F7F2;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: transparent;
    color: #1c1917;
}

.btn-secondary {
    display: inline-block;
    border: 1px solid #1c1917;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    color: #1c1917;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1c1917;
    color: #F9F7F2;
}

/* Card Styles */
.resource-card {
    background: white;
    border: 1px solid #e7e5e4;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.resource-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Alert/Toast Styles */
.alert {
    padding: 1rem 1.5rem;
    border: 1px solid;
    margin-bottom: 1rem;
}

.alert-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}
