/* ===================================
   CSS Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #18181b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   Layout Utilities
   =================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===================================
   Navigation
   =================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.solid-bg {
    background-color: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(127, 29, 29, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: yellow;
}

/* De kleur die de link krijgt als je op die pagina bent */
.nav-links a.active {
    color: #ffcc00 !important;
    font-weight: bold;
    border-bottom: 2px solid #ffcc00;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: yellow;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-icon {
    display: block;
    cursor: pointer;
    color: #d1d5db;
}

@media (min-width: 768px) {
    .mobile-menu-icon {
        display: none;
    }
}

.mobile-menu-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    padding-bottom: 1rem;
}

.mobile-menu-toggle:checked~.mobile-menu {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #f87171;
}

.mobile-menu a.active {
    color: #dc2626;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #18181b, #27272a, #000000);
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-element-1 {
    position: absolute;
    top: -10rem;
    right: -10rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-bg-element-2 {
    position: absolute;
    bottom: -10rem;
    left: -10rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(153, 27, 27, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 0;
    animation: fadeIn 0.8s ease-out;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: #dc2626;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.hero .description {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-link {
    padding: 0.75rem;
    background-color: #27272a;
    border: 1px solid rgba(127, 29, 29, 0.3);
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    border-color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
}

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #d1d5db;
}

.btn-primary {
    display: inline-block;
    background-color: #dc2626;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-shadow: 0 10px 20px rgba(127, 29, 29, 0.3);
}

.btn-primary:hover {
    background-color: #b91c1c;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

/* ===================================
   Section Styles
   =================================== */

section {
    padding: 5rem 0;
}

.section-skills {
    background-color: #27272a;
}

.section-about {
    background-color: #18181b;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-underline {
    width: 5rem;
    height: 0.25rem;
    background-color: #dc2626;
    margin: 0 auto;
}

.section-description {
    color: #9ca3af;
    margin-top: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ===================================
   About Section
   =================================== */

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image {
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px rgba(127, 29, 29, 0.2);
    width: 100%;
}

.about-content h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.btn-secondary {
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-shadow: 0 10px 20px rgba(127, 29, 29, 0.3);
    display: inline-block;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background-color: #b91c1c;
}

/* ===================================
   Skills Grid
   =================================== */

.skills-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.skill-card {
    padding: 1.5rem;
    background-color: #27272a;
    border: 1px solid rgba(127, 29, 29, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.skill-card:hover {
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 20px 40px rgba(127, 29, 29, 0.2);
}

.skill-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(220, 38, 38, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.skill-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
}

.skill-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.skill-card p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.25rem 0.75rem;
    background-color: #18181b;
    color: #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid #3f3f46;
}

/* ===================================
   Page Header (for werk en contact)
   =================================== */

.page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, #18181b, #18181b, #27272a);
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.page-header h1 .highlight {
    color: #dc2626;
}

.page-header p {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .page-header h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .page-header h1 {
        font-size: 4.5rem;
    }
}

/* ===================================
   Projects Grid
   =================================== */

.projects-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background-color: #18181b;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(127, 29, 29, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 25px 50px rgba(127, 29, 29, 0.2);
    transform: translateY(-0.5rem);
}

.project-image-container {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #18181b, rgba(24, 24, 27, 0.5), transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 0.8;
}
.button-dicht{
    fill: none;
    stroke: currentColor;
    object-view-box: 0 0 24 24;
}
.button-dicht-knop{
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}
.project-hover-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-hover-text {
    opacity: 1;
}

.project-hover-button {
    background-color: rgba(220, 38, 38, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-hover-button span {
    color: #ffffff;
    font-weight: 600;
}

.project-hover-button svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.project-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #f87171;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-content {
    padding: 1.5rem;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
    color: #dc2626;
}

.project-description {
    color: #9ca3af;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tag {
    padding: 0.25rem 0.75rem;
    background-color: #27272a;
    color: #9ca3af;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid #3f3f46;
}

.project-links {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #27272a;
}

.project-link {
    flex: 1;
    padding: 0.5rem;
    background-color: #27272a;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.project-link:hover {
    background-color: #3f3f46;
    color: #ffffff;
}

.project-link svg {
    width: 1rem;
    height: 1rem;
}

/* ===================================
   Modal
   =================================== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.modal:target {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
}

.modal-container {
    position: relative;
    height: 100%;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    position: relative;
    background-color: #18181b;
    border: 1px solid rgba(127, 29, 29, 0.3);
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(127, 29, 29, 0.2);
    width: 100%;
    max-width: 56rem;
    max-height: 90vh;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.5rem;
    background-color: rgba(39, 39, 42, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #dc2626;
}

.modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}

.modal-body {
    overflow-y: auto;
    max-height: 90vh;
}

.modal-image {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #18181b, rgba(24, 24, 27, 0.5), transparent);
}

.modal-content-inner {
    padding: 2rem;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-meta-item svg {
    width: 1rem;
    height: 1rem;
}

.modal-meta-year {
    color: #dc2626;
}

.modal-meta-category {
    color: #9ca3af;
}

.modal-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.modal-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
}

.modal-details {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(39, 39, 42, 0.5);
    border: 1px solid rgba(127, 29, 29, 0.2);
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .modal-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal-detail-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.modal-detail-item p {
    color: #ffffff;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.modal-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.modal-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-list-item {
    display: flex;
    gap: 0.75rem;
}

.modal-list-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #dc2626;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.modal-list-item p {
    color: #9ca3af;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.modal-tag {
    padding: 0.5rem 1rem;
    background-color: #27272a;
    border: 1px solid rgba(127, 29, 29, 0.3);
    color: #f87171;
    border-radius: 0.5rem;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.modal-action-button {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.modal-action-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.modal-action-primary {
    background-color: #dc2626;
    color: #ffffff;
}

.modal-action-primary:hover {
    background-color: #b91c1c;
}

.modal-action-secondary {
    background-color: #27272a;
    border: 1px solid rgba(127, 29, 29, 0.3);
    color: #ffffff;
}

.modal-action-secondary:hover {
    background-color: #3f3f46;
}

/* ===================================
   Contact Page
   =================================== */

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.contact-info h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background-color: #18181b;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(127, 29, 29, 0.2);
    transition: border-color 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(220, 38, 38, 0.4);
}

.contact-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(220, 38, 38, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.submit-contact{
    width: 20px;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
}
.contact-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
}

.contact-card-content h3 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-card-content a,
.contact-card-content p {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #dc2626;
}

.contact-social h3 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.contact-social-link {
    padding: 0.75rem;
    background-color: #18181b;
    border: 1px solid rgba(127, 29, 29, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    border-color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
}

.contact-social-link svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #9ca3af;
}

.contact-form {
    background-color: #18181b;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(127, 29, 29, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row.two-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    color: #d1d5db;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #27272a;
    border: 1px solid #3f3f46;
    color: #ffffff;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 12rem;
}

.btn-submit {
    width: 100%;
    background-color: #dc2626;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(127, 29, 29, 0.3);
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #b91c1c;
}

.btn-submit svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===================================
   Footer
   =================================== */

footer {
    background-color: #000000;
    border-top: 1px solid rgba(127, 29, 29, 0.2);
}

.footer-container {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand:hover {
    color: #f87171;
}

.footer-description {
    color: #9ca3af;
}

.footer-section h3 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    padding: 0.5rem;
    background-color: #18181b;
    border: 1px solid rgba(127, 29, 29, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid rgba(127, 29, 29, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Animation delays for project cards */
.project-card:nth-child(1) {
    animation: fadeInUp 0.5s ease-out 0s both;
}

.project-card:nth-child(2) {
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.project-card:nth-child(3) {
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.project-card:nth-child(4) {
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.project-card:nth-child(5) {
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.project-card:nth-child(6) {
    animation: fadeInUp 0.5s ease-out 0.5s both;
}

/* ===================================
   Custom Scrollbar
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #18181b;
}

::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #52525b;
}

/* ===================================
   Utility Classes
   =================================== */

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-6 {
    margin-top: 1.5rem;
}