* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0514 0%, #1a0b2e 50%, #0a0514 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Background Shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0;
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
}

.shape-square {
    width: 30px;
    height: 30px;
    background: rgba(139, 92, 246, 0.1);
    transform: rotate(45deg);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(147, 51, 234, 0.1);
    position: relative;
}

.shape-triangle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: -17px;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-bottom: 30px solid rgba(147, 51, 234, 0.05);
}

/* Position shapes at different locations - starting from bottom */
.shape:nth-child(1) { bottom: 10%; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { bottom: 15%; right: 15%; animation-delay: 1s; }
.shape:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 2s; }
.shape:nth-child(4) { bottom: 25%; right: 10%; animation-delay: 3s; }
.shape:nth-child(5) { bottom: 30%; left: 60%; animation-delay: 4s; }
.shape:nth-child(6) { bottom: 35%; right: 30%; animation-delay: 5s; }
.shape:nth-child(7) { bottom: 40%; left: 80%; animation-delay: 6s; }
.shape:nth-child(8) { bottom: 45%; left: 40%; animation-delay: 7s; }

@keyframes shapeFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    10% {
        opacity: 0.3;
        transform: translateY(-10px) scale(1);
    }
    70% {
        opacity: 0.3;
        transform: translateY(-60vh) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translateY(-80vh) scale(0.8);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* View Management */
.view {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    text-align: center;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(-20px);
    animation: headerAppear 1s ease-out forwards;
}

@keyframes headerAppear {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    font-weight: 300;
}

/* Weekly Spotlight */
.weekly-spotlight {
    margin: 40px 0;
    position: relative;
}

.spotlight-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.spotlight-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    height: 300px;
}

.spotlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.4);
}

.spotlight-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.spotlight-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.spotlight-card:hover .spotlight-background img {
    transform: scale(1.1);
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(45, 27, 78, 0.6) 50%, rgba(26, 11, 46, 0.9) 100%);
}

.spotlight-content {
    position: relative;
    z-index: 5;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spotlight-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 500px;
}

.spotlight-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px 20px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 15px;
    width: fit-content;
}

.highlight-icon {
    font-size: 1.2rem;
}

.spotlight-highlight span:last-child {
    color: #e2e8f0;
    font-weight: 500;
}

.spotlight-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.spotlight-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.spotlight-button svg {
    transition: transform 0.3s ease;
}

.spotlight-button:hover svg {
    transform: translateX(5px);
}

/* Projects Grid */
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 60px;
}

.project-banner {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: bannerAppear 0.8s ease-out forwards;
}

/* Staggered animation delays for each banner */
.project-banner:nth-child(1) { animation-delay: 0.1s; }
.project-banner:nth-child(2) { animation-delay: 0.3s; }
.project-banner:nth-child(3) { animation-delay: 0.5s; }
.project-banner:nth-child(4) { animation-delay: 0.7s; }
.project-banner:nth-child(5) { animation-delay: 0.9s; }
.project-banner:nth-child(6) { animation-delay: 1.1s; }
.project-banner:nth-child(7) { animation-delay: 1.3s; }

@keyframes bannerAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.banner-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-banner:hover .banner-image img {
    transform: scale(1.05);
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

.project-name {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop hover effect */
@media (hover: hover) {
    .project-banner:hover .project-overlay {
        opacity: 1;
    }
}

/* Mobile touch states */
.project-banner.touch-active .project-overlay {
    opacity: 1;
}

.project-banner.touch-active {
    transform: translateY(-3px) scale(0.98);
}

/* Project Detail View - Fresh & Minimalistic */
.project-content {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-8px);
}

.project-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
    gap: 40px;
}

/* Project Banner */
.project-banner-background {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: -180px;
    z-index: 1;
}

@media (max-width: 768px) {
    .project-banner-background {
        width: 90%;
        height: 150px;
        margin: 0 auto -280px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .project-banner-background {
        width: 85%;
        height: 120px;
        margin: 0 auto -280px;
        border-radius: 16px;
    }
}

.project-banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-banner-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 5, 20, 0.3) 0%, rgba(26, 11, 46, 0.4) 50%, rgba(10, 5, 20, 0.3) 100%);
}

.project-banner-large {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    margin: 50px auto 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.project-banner-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.project-info {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.project-info h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.project-description {
    font-size: 1.3rem;
    color: #e2e8f0;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 160px;
    justify-content: center;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateX(5px);
}

.me-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Team Section - Fresh & Minimalistic */
.team-section {
    margin-top: 80px;
    text-align: center;
}

.team-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 100px;
    justify-content: flex-start;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.team-member-link {
    display: block;
    transition: transform 0.3s ease;
}

.team-member-link:hover {
    transform: scale(1.1);
}

.team-member-pfp {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.team-member-link:hover .team-member-pfp {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Art Section - Fresh & Minimalistic */
.art-section {
    margin-top: 80px;
    text-align: center;
}

.art-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.art-piece {
    transition: all 0.3s ease;
    cursor: pointer;
}

.art-piece:hover {
    transform: translateY(-5px);
}

.art-piece img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.art-piece:hover img {
    transform: scale(1.05);
}



.team-member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    text-align: left;
}

.team-member-info p {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 400;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .project-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }
    
    .project-banner-background {
        width: 100%;
        height: 180px;
        border-radius: 20px;
        margin-bottom: 0;
        position: relative;
        overflow: hidden;
    }
    
    .project-banner-large {
        width: 120px;
        height: 120px;
        border-radius: 20px;
        margin: -60px auto 0;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        position: relative;
        z-index: 10;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }
    
    .project-info {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }
    
    .project-info h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 0;
        font-weight: 700;
        letter-spacing: -0.02em;
    }
    
    .project-description {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 0;
        color: #94a3b8;
        line-height: 1.5;
        max-width: 300px;
    }
    
    .social-links {
        margin-top: 40px;
        display: flex;
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .social-link {
        padding: 24px 32px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        min-width: 120px;
        max-width: 120px;
        height: 48px;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .social-link:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .spotlight-card {
        height: 250px;
    }
    
    .spotlight-content {
        padding: 30px;
    }
    
    .spotlight-title {
        font-size: 2.5rem;
    }
    
    .spotlight-description {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        padding: 15px;
    }
    
    .team-member-pfp {
        width: 65px;
        height: 65px;
        border: none;
    }
    
    .art-gallery {
        grid-template-columns: 1fr;
    }
    
    .art-piece img {
        height: 300px;
        object-fit: contain;
        border-radius: 20px;
    }
    
    .spotlight-card {
        height: 200px;
    }
    
    .spotlight-content {
        padding: 20px;
    }
    
    .spotlight-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .spotlight-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .spotlight-highlight {
        padding: 8px 15px;
        margin-bottom: 20px;
    }
    
    .spotlight-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px 0;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    .projects-grid {
        gap: 15px;
    }
    
    .banner-image {
        height: 150px;
    }
    
    .project-info h2 {
        font-size: 1.5rem;
    }
    
    .project-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .project-banner-large {
        width: 160px;
        height: 160px;
        margin: 0;
        margin-left: 0;
        padding-left: 0;
        flex-shrink: 0;
    }
    
    .project-banner-background {
        height: 150px;
        border-radius: 16px;
    }
    
    .project-banner-large {
        width: 100px;
        height: 100px;
        border-radius: 16px;
        margin: -50px auto 0;
        border: none;
    }
    
    .project-info {
        margin-top: 25px;
        padding: 0 15px;
    }
    
    .project-info h2 {
        font-size: 1.8rem;
    }
    
    .project-description {
        font-size: 1rem;
        max-width: 280px;
    }
    
    .social-links {
        margin-top: 30px;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .social-link {
        padding: 20px 28px;
        border-radius: 10px;
        min-width: 108px;
        max-width: 132px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
    
    .art-piece img {
        height: 300px;
        object-fit: contain;
        border-radius: 16px;
    }
}

/* Animation Classes */
.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease-in-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
} 