/* _content/SeymenDK/Views/Home/Index.cshtml.rz.scp.css */
/* ========== BASE LAYOUT ========== */
body[b-5q8tn80ytu] {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
    color: #1b1b1f;
    overflow-x: hidden;
}

.home-container[b-5q8tn80ytu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding-bottom: 5rem;
}

/* ========== HERO SECTION ========== */
.hero-section[b-5q8tn80ytu] {
    text-align: center;
    margin-top: 4rem;
    animation: fadeIn-b-5q8tn80ytu 1s ease-out;
}

.hero-title[b-5q8tn80ytu] {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #007aff, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.hero-subtitle[b-5q8tn80ytu] {
    font-size: 1.25rem;
    color: #333333aa;
}

/* ========== CARD GRID ========== */
.card-grid[b-5q8tn80ytu] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* ========== GLASS CARDS ========== */
.glass-card[b-5q8tn80ytu] {
    width: 180px;
    height: 200px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    text-decoration: none;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover[b-5q8tn80ytu] {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.35);
}

.card-icon[b-5q8tn80ytu] {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.glass-card:hover .card-icon[b-5q8tn80ytu] {
    transform: scale(1.1);
}

.card-title[b-5q8tn80ytu] {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========== GLASS PANEL (for About/Timeline) ========== */
.glass-panel[b-5q8tn80ytu] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 2rem 3rem;
    max-width: 800px;
    text-align: center;
}

/* ========== ABOUT ME SECTION ========== */
.about-section[b-5q8tn80ytu] {
    max-width: 800px;
}

.about-section h2[b-5q8tn80ytu] {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-section p[b-5q8tn80ytu] {
    font-size: 1.1rem;
    color: #333333cc;
    line-height: 1.6;
}

/* ========== SKILLS SECTION ========== */
.skills-section[b-5q8tn80ytu] {
    text-align: center;
}

.skills-section h2[b-5q8tn80ytu] {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.skills-grid[b-5q8tn80ytu] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.glass-badge[b-5q8tn80ytu] {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-badge:hover[b-5q8tn80ytu] {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
}

/* ========== EXPERIENCE / TIMELINE ========== */
.experience-section[b-5q8tn80ytu] {
    text-align: center;
    width: 100%;
    padding: 2rem 0;
}

.experience-section h2[b-5q8tn80ytu] {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.timeline[b-5q8tn80ytu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.timeline-item[b-5q8tn80ytu] {
    max-width: 700px;
    position: relative;
    text-align: left;
}

.timeline-item h3[b-5q8tn80ytu] {
    margin-bottom: 0.5rem;
}

.timeline-item p[b-5q8tn80ytu] {
    margin-bottom: 0.5rem;
    color: #333333cc;
}

.timeline-year[b-5q8tn80ytu] {
    font-size: 0.9rem;
    color: #007aff;
    font-weight: 600;
}

/* ========== ANIMATIONS ========== */
.fade-in[b-5q8tn80ytu] {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn-b-5q8tn80ytu 1.2s ease forwards;
}

@keyframes fadeIn-b-5q8tn80ytu {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .glass-panel[b-5q8tn80ytu] {
        padding: 1.5rem;
    }
    .hero-title[b-5q8tn80ytu] {
        font-size: 2.5rem;
    }
    .skills-grid[b-5q8tn80ytu] {
        gap: 0.75rem;
    }
}
/* _content/SeymenDK/Views/Projects/ProjectCard.cshtml.rz.scp.css */
/* ========== CONTAINER & TITLES ========== */
.projects-container[b-dd8hog4oex] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: radial-gradient(120% 150% at 50% 0%, #dceaff 0%, #f0f3ff 40%, #ffffff 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
}

.section-title[b-dd8hog4oex] {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #007aff, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    animation: fadeIn-b-dd8hog4oex 1s ease-out;
}

/* ========== GRID LAYOUT ========== */
.projects-grid[b-dd8hog4oex] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* ========== PROJECT CARD ========== */
.project-card[b-dd8hog4oex] {
    position: relative;
    width: 260px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

/* Hover = expand slightly + brighten glass */
.project-card:hover[b-dd8hog4oex] {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ========== PROJECT HEADER ========== */
.project-header[b-dd8hog4oex] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.project-icon[b-dd8hog4oex] {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-name[b-dd8hog4oex] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    transition: color 0.3s ease;
}

/* Hover = icon scales slightly */
.project-card:hover .project-icon[b-dd8hog4oex] {
    transform: scale(1.1);
}

/* ========== DESCRIPTION REVEAL ========== */
.project-description[b-dd8hog4oex] {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    color: #333333cc;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 0.75rem;
    transition: all 0.5s ease;
}

/* Hover = smoothly drop description */
.project-card:hover .project-description[b-dd8hog4oex] {
    opacity: 1;
    max-height: 200px;
    margin-top: 1rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn-b-dd8hog4oex {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
    .projects-grid[b-dd8hog4oex] {
        flex-direction: column;
        align-items: center;
    }

    .project-card[b-dd8hog4oex] {
        width: 90%;
    }
}
/* _content/SeymenDK/Views/Projects/Projects.cshtml.rz.scp.css */
.projects-page-container[b-97gxbspg9k] {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
    color: #1b1b1f;
}

/* ========== HEADER PANEL ========== */
.glass-panel[b-97gxbspg9k] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 2.5rem 3rem;
    max-width: 700px;
    margin-bottom: 3.5rem;
    animation: fadeIn-b-97gxbspg9k 1s ease-out;
}

/* ========== TITLE & SUBTITLE ========== */
.projects-title[b-97gxbspg9k] {
    font-size: 3rem;
    font-weight: 700;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.projects-subtitle[b-97gxbspg9k] {
    font-size: 1.1rem;
    color: #333333cc;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ========== PROJECT GALLERY ========== */
.projects-gallery[b-97gxbspg9k] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    animation: fadeIn-b-97gxbspg9k 1.2s ease-out;
}

/* Subtle animation for each card */
.projects-gallery > *[b-97gxbspg9k] {
    animation: popIn-b-97gxbspg9k 0.6s ease-out;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn-b-97gxbspg9k {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn-b-97gxbspg9k {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
    .projects-title[b-97gxbspg9k] {
        font-size: 2.2rem;
    }

    .projects-subtitle[b-97gxbspg9k] {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .glass-panel[b-97gxbspg9k] {
        padding: 2rem 1.5rem;
    }
}
/* _content/SeymenDK/Views/Shared/_Layout.cshtml.rz.scp.css */
/* ========== NAVBAR FIXES & CENTERING ========== */
.glass-nav[b-xa8kiu30qt] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 1rem 0.5rem;
    text-align: center;
}

/* Centers the brand + nav stack vertically for a clean Apple-like header */
.navbar-brand[b-xa8kiu30qt] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007aff !important;
    text-align: center;
}

.navbar-nav[b-xa8kiu30qt] {
    justify-content: center;
    align-items: center;
}

.nav-link[b-xa8kiu30qt] {
    color: #1b1b1f !important;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-link:hover[b-xa8kiu30qt] {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ========== SPACING BELOW NAV ========== */
.mt-navbar[b-xa8kiu30qt] {
    padding-top: 110px; /* matches the nav height for safe spacing */
}

/* ========== FOOTER GLASS STYLE (same as before) ========== */
.glass-footer[b-xa8kiu30qt] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
    color: #333333cc;
    text-align: center;
}

.glass-footer a[b-xa8kiu30qt] {
    color: #007aff;
    text-decoration: none;
}

.glass-footer a:hover[b-xa8kiu30qt] {
    color: #00c3ff;
}
