/* Auth Forms & Additional Pages */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.auth-container {
    max-width: 500px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-text);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.auth-btn:hover {
    background-color: #b51031;
}

.auth-switch {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
}

.auth-switch a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.static-content {
    background: white;
    padding: 3rem 4rem;
    border: 1px solid var(--color-border);
    max-width: 1100px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border-radius: 8px;
}

.auth-link {
    font-weight: 700 !important;
    color: var(--color-primary) !important;
}

/* Interview Content Styles */
.interview-image-card {
    background-color: #f1f1f1;
    border-radius: 12px;
    padding: 10px;
    margin: 1.5rem auto;
    max-width: 320px; /* Small width like home page cards */
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.interview-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.interview-image-card img {
    width: 100%;
    height: auto; /* Natural height to prevent face cropping */
    border-radius: 8px;
    display: block;
}

.zoom-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.zoom-overlay:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

/* Lightbox Modal */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    cursor: zoom-out;
}

.zoom-modal img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    cursor: default;
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}

.zoom-overlay svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zoom-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.interview-q {
    margin-bottom: 2rem !important;
}

.interview-q p:first-child strong {
    font-size: 1.2rem;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

/* Regular bold words in answers should stay inline and normal size */
.interview-q p strong {
    font-size: inherit;
    color: inherit;
    display: inline;
    font-family: inherit;
}

/* Mobile Adjustments for Static Content & Articles */
@media (max-width: 768px) {
    .static-content {
        padding: 1.5rem 0.5rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }
}

