/* EricBernsal - Static Page Styles */

.page-hdr, .page-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}
.page-hdr-bg, .page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    background-size: cover;
    background-position: center;
}
.page-hdr-cont, .page-hero-cont {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.page-hdr h1, .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 12px;
}
.page-hdr p, .page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

.page-content {
    padding: 60px 20px;
    background: #faf7f2;
}
.page-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.page-wrap h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: #1a1a2e;
}
.page-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
}
.page-wrap p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a6e;
    margin-bottom: 16px;
}
.page-wrap ul,
.page-wrap ol {
    margin-left: 24px;
    margin-bottom: 16px;
}
.page-wrap li {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a6e;
    margin-bottom: 8px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info h2 {
    margin-top: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a2e;
}
.contact-info p {
    margin-bottom: 12px;
    color: #5a5a6e;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a2e;
}
.contact-form .inp {
    width: 100%;
    padding: 12px;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
}
.contact-form textarea.inp {
    resize: vertical;
    min-height: 120px;
}
.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.alert-success {
    background: #d4edda;
    color: #155724;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .page-hdr, .page-hero {
        height: 250px;
    }
}
