/* ================================================
   PAGE SHARED STYLES
   About & Contact Pages - Common Styles
   ================================================ */

/* Base Page Layout */
.page-about #about,
.page-contact #contact {
    display: block;
    padding: 4rem 2rem;
    background: var(--primary-dark);
    position: relative;
    min-height: 100vh;
}

/* Page Containers */
.page-about .about-container,
.page-contact .contact-container {
    margin: 0 auto;
}

/* Hero Sections - Shared Typography */
.page-about .about-hero h1,
.page-contact .contact-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-about .about-hero,
.page-contact .contact-hero {
    text-align: center;
}

/* Shared Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive - Shared Breakpoints */
@media (max-width: 768px) {
    .page-about #about {
        padding: 3rem 1.5rem 3rem;
    }
    
    .page-contact #contact {
        padding: 2rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    /* Additional small mobile adjustments handled in page-specific files */
}
