@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Shrikhand&family=Bungee+Shade&family=Monoton&display=swap');

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

:root {
    --orange-funk: #FF6B35;
    --purple-haze: #9D4EDD;
    --yellow-sunshine: #FFD60A;
    --pink-passion: #FF006E;
    --teal-dream: #06FFA5;
    --lime-groove: #CCFF00;
    --sky-blue: #00B4D8;
    --deep-purple: #5A189A;
    --funk-red: #FF4059;
}

body {
    font-family: 'Righteous', cursive;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}


.psychedelic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background:
        /* Flowing wavy curves using radial gradients */
        radial-gradient(ellipse 200% 100% at 0% 0%,
            transparent 39%,
            rgba(255, 107, 53, 0.2) 40%,
            rgba(255, 107, 53, 0.2) 41%,
            transparent 42%
        ),
        radial-gradient(ellipse 180% 90% at 100% 10%,
            transparent 44%,
            rgba(157, 78, 221, 0.25) 45%,
            rgba(157, 78, 221, 0.25) 46%,
            transparent 47%
        ),
        radial-gradient(ellipse 220% 110% at 0% 30%,
            transparent 34%,
            rgba(255, 214, 10, 0.15) 35%,
            rgba(255, 214, 10, 0.15) 36%,
            transparent 37%
        ),
        radial-gradient(ellipse 190% 95% at 100% 50%,
            transparent 39%,
            rgba(6, 255, 165, 0.18) 40%,
            rgba(6, 255, 165, 0.18) 41%,
            transparent 42%
        ),
        radial-gradient(ellipse 210% 100% at 0% 70%,
            transparent 37%,
            rgba(255, 0, 110, 0.2) 38%,
            rgba(255, 0, 110, 0.2) 39%,
            transparent 40%
        ),
        radial-gradient(ellipse 200% 105% at 100% 90%,
            transparent 42%,
            rgba(157, 78, 221, 0.22) 43%,
            rgba(157, 78, 221, 0.22) 44%,
            transparent 45%
        ),
        /* Soft color washes */
        radial-gradient(ellipse 800px 900px at 20% 40%,
            rgba(255, 107, 53, 0.15) 0%,
            transparent 60%
        ),
        radial-gradient(ellipse 900px 800px at 80% 60%,
            rgba(157, 78, 221, 0.2) 0%,
            transparent 60%
        ),
        /* Base gradient */
        radial-gradient(ellipse at 30% 40%,
            var(--deep-purple) 0%,
            #1a0a2e 50%,
            #0a0515 100%
        );
    background-blend-mode: normal;
    opacity: 0.9;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.groovy-header {
    text-align: center;
    padding: 3rem 0 1rem 0;
    margin-bottom: 1rem;
}

.logo-container {
    margin-bottom: 0;
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.logo {
    max-width: 400px;
    filter: drop-shadow(0 0 20px var(--yellow-sunshine))
            drop-shadow(0 0 40px var(--orange-funk));
}


.funky-box {
    background: rgba(157, 78, 221, 0.2);
    border: 5px solid var(--yellow-sunshine);
    border-radius: 30px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
    position: relative;
    overflow: hidden;
}


/* Section titles */
.section-title {
    font-family: 'Shrikhand', cursive;
    font-size: 3rem;
    text-align: center;
    margin: 2rem 0;
    color: var(--yellow-sunshine);
    text-shadow:
        3px 3px 0px var(--orange-funk),
        6px 6px 20px rgba(0,0,0,0.5);
}

.psychedelic-text {
    color: #fff;
    text-shadow:
        3px 3px 0px var(--purple-haze),
        6px 6px 20px rgba(0,0,0,0.8);
}

/* Hero section */
.hero-section {
    margin: 3rem 0;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Team section */
.team-section {
    margin: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.team-card {
    background: rgba(157, 78, 221, 0.3);
    border: 4px solid var(--teal-dream);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: rotate(0deg) scale(1.05) !important;
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.6);
}

.team-card:nth-child(even) {
    transform: rotate(1deg);
}

.image-frame {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 6px solid var(--yellow-sunshine);
    padding: 8px;
    background: var(--funk-red);
    box-shadow: 0 0 30px var(--yellow-sunshine);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #000;
}

.member-name {
    font-family: 'Shrikhand', cursive;
    font-size: 2rem;
    color: var(--lime-groove);
    margin: 1rem 0 0.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.member-title {
    font-size: 1.2rem;
    color: var(--yellow-sunshine);
    margin-bottom: 1rem;
    font-style: italic;
}

.member-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1rem;
}

.member-email {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.member-email a {
    color: var(--teal-dream);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.member-email a:hover {
    color: var(--yellow-sunshine);
    text-shadow: 0 0 15px var(--teal-dream);
}

.groovy-divider {
    height: 5px;
    background: var(--teal-dream);
    border-radius: 5px;
    margin-top: 1.5rem;
}

/* Services section */
.services-section {
    margin: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: rgba(157, 78, 221, 0.3);
    border: 4px solid var(--lime-groove);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.5);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Shrikhand', cursive;
    font-size: 1.8rem;
    color: var(--yellow-sunshine);
    margin: 1rem 0;
}

.service-card p {
    font-size: 1.1rem;
    color: #fff;
}

/* Contact section */
.contact-section {
    margin: 4rem 0;
}

.contact-box {
    text-align: center;
}

.contact-text {
    font-size: 1.3rem;
    color: #fff;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--lime-groove);
    text-decoration: none;
    background: rgba(0,0,0,0.5);
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    border: 3px solid var(--teal-dream);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.contact-link:hover {
    transform: scale(1.1) rotate(2deg);
    background: rgba(157, 78, 221, 0.3);
    border-color: var(--yellow-sunshine);
    box-shadow: 0 10px 40px var(--purple-haze);
}

.contact-icon {
    font-size: 2rem;
}

/* Footer */
.groovy-footer {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem 0 2rem;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.rainbow-bar {
    height: 15px;
    background: linear-gradient(90deg,
        var(--purple-haze) 0%,
        var(--orange-funk) 50%,
        var(--purple-haze) 100%);
    margin-top: 2rem;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card,
    .team-card:nth-child(even) {
        transform: rotate(0deg);
    }

    .team-card:hover {
        transform: scale(1.05) !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 1rem;
    }

    .funky-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 180px;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .member-name {
        font-size: 1.5rem;
    }
}
