/* Registry Page Styles */

/* Section Headers */
.registry-hero {
    background: linear-gradient(135deg, #f3f0ea 0%, #dcc3a5 100%);
    padding: 3rem 0;
    text-align: center;
}

/* Registry */
.registry-content {
    padding: 4rem 0;
}

.registry-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.registry-card {
    background: #f3f0ea;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(35, 67, 92, 0.1);
    text-align: center;
}

.registry-card h3 {
    color: #c6793d;
    margin-bottom: 1rem;
}

.registry-note {
    background: #dcc3a5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}
