@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

html {
    height: auto;
    scroll-behavior: auto !important;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #222831;
    color: #eeeeee;
    font-family: 'Poppins', sans-serif;
}
body::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }


#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#particles-js canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Animated background glow effect */
#background-glow-circles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    animation: floatGlow 20s infinite ease-in-out;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.2);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.8);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    z-index: 100;
    box-sizing: border-box;
    background: rgba(34, 40, 49, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 195, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 5%;
    background: rgba(34, 40, 49, 0.95);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #eeeeee;
}
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
}
.nav-links a {
    text-decoration: none;
    color: #eeeeee;
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #00c3ff;
}


main {
    width: 100%;
    position: relative;
    z-index: 10;
}
.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.team-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.team-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #eeeeee;
    margin: 0 0 3rem 0;
    background: linear-gradient(135deg, #00c3ff 0%, #0096cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(0, 195, 255, 0.3);
}

.profile-duo {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
}
.profile {
    opacity: 0;
    transform: translateY(30px);
}
.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #00c3ff;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.3);
    transition: all 0.3s ease;
}

.profile:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 195, 255, 0.5);
}
.profile h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.profile p {
    color: #9a9a9a;
    margin-top: 0.5rem;
}
.discord-id {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #00c3ff;
    letter-spacing: 0.5px;
}

.hero-buttons-container {
    display: flex;
    flex-direction: column; 
    align-items: center;  
    gap: 1rem;            
    opacity: 0;
    transform: translateY(30px);
}


.cta-btn {
    background: #00c3ff;
    color: #222831;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 220px; 
    box-sizing: border-box; 
    text-align: center; 
}
.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 195, 255, 0.2);
}


.content-section {
    padding: 100px 10%;
    background: linear-gradient(135deg, #222831 0%, #2a313c 50%, #34495e 100%);
    border-top: 1px solid rgba(0, 195, 255, 0.2);
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, #34495e 0%, #2a313c 50%, #222831 100%);
}
.anim-target {
    opacity: 0; 
}
.content-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00c3ff 0%, #0096cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 195, 255, 0.2);
}


.about-container {
    display: flex;
    justify-content: center;
    gap: 4%;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.about-person {
    flex-basis: 100%;
    max-width: 800px;
    min-width: 300px;
    text-align: center;
}
.about-person h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}
.about-person p {
    line-height: 1.8;
    color: #cfcfcf;
    font-size: 1rem;
    text-align: left; /* Keep paragraph text left-aligned for readability */
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.project-card {
    background: linear-gradient(135deg, rgba(42, 49, 60, 0.9) 0%, rgba(52, 73, 94, 0.8) 50%, rgba(57, 62, 70, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(0, 195, 255, 0.2);
    position: relative;
    backdrop-filter: blur(15px);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.15) 0%, rgba(0, 255, 195, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover::after {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 195, 255, 0.3);
    border-color: rgba(0, 195, 255, 0.5);
}
.project-image-actual {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image-actual {
    transform: scale(1.05);
}
.project-card h4 {
    font-size: 1.5rem;
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    margin: 0;
}
.project-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #cfcfcf;
    line-height: 1.6;
}

.project-link-button {
    display: inline-block;
    background: #00c3ff;
    color: #222831;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin: 0 1.5rem 1.5rem 1.5rem;
    transition: all 0.3s ease;
}

.project-link-button:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 195, 255, 0.3);
}

.shop-cta-container-within-section {
    text-align: center; 
    padding-top: 3rem;   
    padding-bottom: 1rem; 
}

.explore-shop-btn {
    font-size: 1.1rem;
}

.contact-preference-info {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #b0b8c4;
    font-style: italic;
}
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
#contact-form input, #contact-form textarea {
    background: linear-gradient(135deg, #393e46 0%, #34495e 100%);
    border: 2px solid #4f5868;
    color: #eeeeee;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}
#contact-form input:focus, #contact-form textarea:focus {
    outline: none;
    border-color: #00c3ff;
}
#contact-form textarea {
    resize: vertical;
    min-height: 150px;
}
#contact-form .cta-btn {
    align-self: center;
    margin-top: 1rem;
}
.form-status-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
}
.form-status-message.success { color: #33cc99; }
.form-status-message.error { color: #ff6b6b; }


/* Social Icons Bar */
.social-icons-bar {
    position: fixed;
    top: 120px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 101;
    transition: top 0.3s ease;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(34, 40, 49, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 195, 255, 0.3);
    border-radius: 50%;
    color: #eeeeee;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: #00c3ff;
    box-shadow: 0 8px 25px rgba(0, 195, 255, 0.4);
    color: #00c3ff;
}

.discord-icon:hover {
    border-color: #5865F2;
    color: #5865F2;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

footer {
    padding: 4rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, #2a313c 0%, #222831 100%);
    border-top: 1px solid #393e46;
    text-align: center;
    color: #9a9a9a;
}
footer .copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #7a828e;
}

@media (max-width: 768px) {
    .content-section {
        padding: 160px 6% 70px;
    }
    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .hero-container {
        padding-top: 140px;
        min-height: calc(100vh - 140px);
    }
    .profile-duo,
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }

    .about-person {
        flex-basis: 100%;
    }
    .projects-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-icons-bar {
        top: 160px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding-top: 140px;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center; 
    }
    .logo {
        margin-left: 0; 
    }
    .profile-duo {
        gap: 2.5rem;
    }
    .profile {
        max-width: 280px;
        margin: 0 auto;
        padding: 1rem;
    }
    .profile img {
        width: 130px;
        height: 130px;
        margin-bottom: 1.2rem;
    }
    .profile h2 {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    .profile p {
        color: #9a9a9a;
        margin-top: 0.6rem;
        font-size: 1rem;
        line-height: 1.4;
    }
    .discord-id {
        display: block !important;
        margin-top: 1.2rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #00c3ff;
        letter-spacing: 0.5px;
    }
    .hero-buttons-container {
        gap: 0.8rem; 
    }

    .project-image-actual {
        height: 228px; 
        width: 100%;
    }

    .content-section {
        padding: 160px 6% 70px;
    }

    .content-section h2 {
        font-size: 1.7rem; 
    }
}



.logo { 
    display: flex;
    align-items: center; 
    gap: 0.75rem;       
    text-decoration: none;
    color: #eeeeee;
}

.site-logo-img {
    height: 50px;  
    width: auto;   
    display: block; 
    border-radius: 50%;
}

#background-glow-circles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    pointer-events: none; 
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(0, 195, 255, 0.03); 
    box-shadow: 0 0 30px 10px rgba(0, 195, 255, 0.05);
    opacity: 0; 
    animation: glowPulseAnimation 8s ease-in-out; 
}

@keyframes glowPulseAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1; 
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@media (max-width: 768px) { 

    .hero-container h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .profile h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .cta-btn { 
        padding: 0.8rem 2rem; 
        font-size: 0.9rem;
    }

    .project-image-actual { 
        height: 180px; 
    }
}

@media (max-width: 480px) { 

    .hero-container {
        padding-left: 5%; 
        padding-right: 5%;
        padding-top: 160px;
        box-sizing: border-box; 
        min-height: calc(100vh - 160px);
    }

    .hero-container h1 {
        font-size: 2rem;
    }

    .profile-duo {
        gap: 2rem; 
        margin-bottom: 2.5rem;
        justify-content: center;
    }

    .profile img {
        width: 110px; 
        height: 110px;
    }

    .profile h2 {
        font-size: 1.7rem; 
        margin-bottom: 0.6rem;
    }

    .profile p { 
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .discord-id { 
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    .hero-buttons-container {
        gap: 1rem; 
        margin-top: 1rem;
    }
}

#services h2 {
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2.5rem;
    text-align: center;
    justify-items: center;
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    background: linear-gradient(135deg, #2a313c 0%, #34495e 50%, #393e46 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 195, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.service-item:hover::before {
    transform: scale(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 195, 255, 0.25);
    border-color: rgba(0, 195, 255, 0.3);
}

.service-icon {
    font-size: 3rem; 
    margin-bottom: 1.5rem;
    display: block; 
    background: linear-gradient(135deg, #00c3ff 0%, #0096cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 195, 255, 0.3));
}

.service-item h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #eeeeee;
}

.service-item p {
    color: #cfcfcf;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card::before,
.project-card::after {
    pointer-events: none;
}

@media (max-width: 600px) { 
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-item {
        padding: 1.5rem;
    }
    .service-icon {
        font-size: 2rem;
    }
    .service-item h3 {
        font-size: 1.3rem;
    }
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.project-card p {
    flex-grow: 1;
}
