/* =============================================
   Learning Isn't Linear - Contact Page Styles
   ============================================= */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* ==================== HEADER (same as product pages) ==================== */
header {
    background: #222;
    padding: 8px 0;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-container {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.logo-container img {
    height: 38px;          /* ← Small logo size */
    width: auto;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover {
    color: #0077cc;
}

/* ==================== HERO ==================== */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
    color: #222;
}

/* ==================== CONTACT CARD ==================== */
.contact-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-card h3 {
    margin-top: 0;
    font-size: 22px;
    color: #333;
    text-align: center;
}

.email-display {
    display: block;
    margin: 25px 0;
    font-size: 24px;
    font-weight: bold;
    color: #0077cc;
    text-align: center;
}

.sub-text {
    color: #888;
    font-size: 15px;
    margin-top: 15px;
    text-align: center;
}

/* ==================== FOOTER ==================== */
/* Footer - Fully Centered */
footer {
    background: #222;
    color: #888;
    text-align: center;
    padding: 25px 20px;
    margin-top: 60px;
}

.footer-nav {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #0077cc;
}