html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111827;
    overflow-x: hidden;
}

/* --- Dynamic Logo Styles --- */
.fixed-logo-wrapper {
    position: fixed; top: 1.5rem; left: 1.5rem; z-index: 1000;
}
.logo-container {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 1.25rem 0.6rem 0.6rem; border-radius: 50px;
    transition: all 0.4s ease;
}
.logo-mark { width: 45px; height: 45px; }
.logo-piece { stroke-width: 6; stroke-linecap: round; transition: stroke 0.4s ease; }
.logo-text { font-size: 1.2rem; font-weight: 500; transition: color 0.4s ease; }

.logo-light-theme {
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.logo-light-theme .logo-piece { stroke: #111827; }
.logo-light-theme .logo-text { color: #111827; }

.logo-dark-theme {
    background: rgba(31, 41, 55, 0.5); backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.2); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.logo-dark-theme .logo-piece { stroke: #f0f0f0; }
.logo-dark-theme .logo-text { color: #f0f0f0; }

/* --- Navbar Styles --- */


/* General Animation */
.fade-in-up {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

/* Job Card Styles */
.job-card {
    background-color: #ffffff; border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.job-card h3 { color: #111827; }
.job-card p { color: #4b5563; }
.job-card .tag { background-color: #f3f4f6; color: #374151; }

/* Button Styles */
.primary-btn {
    background-color: #111827; color: #ffffff;
    transition: background-color 0.3s ease;
}
.primary-btn:hover { background-color: #374151; }

/* Footer Styles */
.site-footer {
    background-color: #0a0a0a;
    color: #9ca3af;
}
.footer-logo .logo-text { color: #f0f0f0; }
.footer-logo .logo-piece { stroke: #f0f0f0; }
.footer-social-icon {
    color: #9ca3af;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social-icon:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .glassy-navbar { display: none; }
    .hero-section h1 { font-size: 2.05rem; line-height: 2.55rem; }
    .hero-section p { font-size: 1rem; }
    .section-title { font-size: 1.875rem; line-height: 2.25rem;}
    .fixed-logo-wrapper { top: 1rem; left: 1rem; }
    .site-footer .container > div {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .site-footer .md\:items-start, .site-footer .md\:items-end {
        align-items: center;
    }
}