/* simidiot.com - Memphis Bold Shapes Portfolio */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #FFFFFF;
    color: #1A1A1A;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1A1A1A;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    text-align: center;
    padding: 8rem 2rem 5rem;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shape {
    position: absolute;
    z-index: 0;
}

.shape-circle {
    border-radius: 50%;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.shape-squiggle {
    width: 60px;
    height: 20px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top-color: currentColor;
    border-bottom-color: currentColor;
}

.s1 {
    width: 50px;
    height: 50px;
    background: #FF3366;
    top: 10%;
    left: 6%;
    transform: rotate(25deg);
    animation: floatShape 6s ease-in-out infinite;
}

.s2 {
    border-bottom: 40px solid #3366FF;
    border-left-width: 24px;
    border-right-width: 24px;
    top: 18%;
    right: 10%;
    transform: rotate(-15deg);
    animation: floatShape 7s ease-in-out infinite 0.5s;
}

.s3 {
    width: 35px;
    height: 35px;
    background: #FFCC00;
    top: 68%;
    left: 12%;
    transform: rotate(45deg);
    animation: floatShape 5s ease-in-out infinite 1s;
}

.s4 {
    border-bottom: 35px solid #00CC99;
    border-left-width: 22px;
    border-right-width: 22px;
    bottom: 12%;
    right: 8%;
    transform: rotate(30deg);
    animation: floatShape 8s ease-in-out infinite 1.5s;
}

.s5 {
    width: 28px;
    height: 28px;
    background: #FF99CC;
    top: 38%;
    right: 18%;
    transform: rotate(-20deg);
    animation: floatShape 6s ease-in-out infinite 2s;
}

.s6 {
    color: #FF3366;
    top: 28%;
    left: 18%;
    transform: rotate(10deg);
    animation: floatShape 7s ease-in-out infinite 0.8s;
}

.s7 {
    width: 22px;
    height: 22px;
    background: #3366FF;
    bottom: 25%;
    left: 6%;
    transform: rotate(60deg);
    animation: floatShape 5.5s ease-in-out infinite 1.2s;
}

.s8 {
    color: #FFCC00;
    bottom: 30%;
    right: 15%;
    transform: rotate(-25deg);
    animation: floatShape 6.5s ease-in-out infinite 0.3s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(var(--base-rot, 0deg)); }
    50% { transform: translateY(-18px) rotate(calc(var(--base-rot, 0deg) + 10deg)); }
}

.s1 { --base-rot: 25deg; }
.s2 { --base-rot: -15deg; }
.s3 { --base-rot: 45deg; }
.s4 { --base-rot: 30deg; }
.s5 { --base-rot: -20deg; }
.s6 { --base-rot: 10deg; }
.s7 { --base-rot: 60deg; }
.s8 { --base-rot: -25deg; }

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 10vw, 6rem);
    color: #1A1A1A;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
}

.rotated {
    display: inline-block;
    transform: rotate(15deg);
    color: #FF3366;
    transition: transform 0.3s ease;
}

.rotated:hover {
    transform: rotate(-15deg) scale(1.2);
}

.hero-tagline {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: #1A1A1A;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.ask-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #FFFFFF;
    background: #FF3366;
    border: none;
    padding: 1rem 2.8rem;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ask-btn:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(255, 51, 102, 0.35);
    background: #E6204F;
}

.ask-btn:active {
    transform: scale(0.97);
}

/* ===== ASK PANEL ===== */
.ask-panel {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.ask-panel.open {
    max-height: 400px;
    padding: 2rem;
}

.ask-panel-inner {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 1.5rem;
}

.ask-input-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ask-input {
    flex: 1;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 1rem;
    border: 2px solid #1A1A1A;
    border-radius: 8px;
    outline: none;
    background: #FFFFFF;
    color: #1A1A1A;
    transition: border-color 0.2s ease;
}

.ask-input::placeholder {
    color: #999;
}

.ask-submit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #FFFFFF;
    background: #3366FF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ask-submit:hover {
    transform: scale(1.05);
    background: #2255DD;
}

.ask-response {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1A1A1A;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 4px 16px;
    background: #FFCC00;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    min-height: 0;
}

.ask-response.visible {
    opacity: 1;
    transform: translateY(0);
}

.ask-response:empty {
    display: none;
}

/* ===== SAMPLE RESPONSES ===== */
.responses {
    max-width: 620px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.chat-pair {
    margin-bottom: 2.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.chat-user {
    background: #F5F5F5;
    color: #1A1A1A;
    padding: 0.8rem 1.1rem;
    border-radius: 16px 16px 16px 4px;
    max-width: 70%;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.chat-ai {
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 4px 16px;
    max-width: 85%;
    margin-left: auto;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1A1A1A;
    position: relative;
    transition: transform 0.2s ease;
}

.chat-ai:hover {
    transform: scale(1.02);
}

.chat-ai.yellow { background: #FFCC00; }
.chat-ai.blue { background: #A8D8FF; }
.chat-ai.green { background: #B5EAD7; }

/* ===== IDIOT MODES ===== */
.modes {
    max-width: 620px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.mode-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mode-btn {
    width: 120px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mode-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.mode-btn.active {
    transform: scale(1.15) rotate(-3deg);
}

.mode-shape {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.5rem;
    transition: transform 0.3s ease;
}

.mode-circle {
    border-radius: 50%;
}

.mode-red .mode-circle {
    background: #FF3366;
}

.mode-square {
    border-radius: 4px;
}

.mode-blue .mode-square {
    background: #3366FF;
}

.mode-tri {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #00CC99;
    margin: 0 auto 0.5rem;
}

.mode-green .mode-shape {
    width: auto;
    height: auto;
}

.mode-star {
    width: 80px;
    height: 80px;
    background: #FF99CC;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.mode-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: #1A1A1A;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 4px solid currentColor;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.mode-red .mode-label { color: #FF3366; border-color: #FF3366; }
.mode-blue .mode-label { color: #3366FF; border-color: #3366FF; }
.mode-green .mode-label { color: #00CC99; border-color: #00CC99; }
.mode-pink .mode-label { color: #FF99CC; border-color: #FF99CC; }

.mode-description {
    text-align: center;
    margin-top: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #1A1A1A;
    min-height: 1.5em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mode-description.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HALL OF SHAME ===== */
.hall {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.shame-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.shame-card {
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.shame-card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.1);
}

.sc-yellow { background: #FFF8E1; }
.sc-pink { background: #FFE8EE; }
.sc-blue { background: #E8F4FF; }
.sc-green { background: #E8FFF3; }

.shame-q {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.shame-a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.laugh-count {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #FF3366;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: inline-block;
}

.laugh-count::before {
    content: '\1F602 ';
}

.laugh-count.bumped {
    animation: laughBump 0.3s ease;
}

@keyframes laughBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ===== FOOTER ===== */
.footer {
    max-width: 620px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.confetti-shape {
    position: absolute;
    opacity: 0.4;
}

.confetti-circle {
    border-radius: 50%;
}

.confetti-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.confetti-squiggle {
    width: 40px;
    height: 12px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: currentColor;
    border-bottom-color: currentColor;
}

.c1 {
    width: 16px;
    height: 16px;
    background: #FF3366;
    top: 15%;
    left: 8%;
    animation: confettiFall 4s ease-in-out infinite;
}

.c2 {
    border-bottom: 14px solid #FFCC00;
    top: 25%;
    right: 12%;
    animation: confettiFall 5s ease-in-out infinite 0.5s;
}

.c3 {
    width: 12px;
    height: 12px;
    background: #3366FF;
    top: 60%;
    left: 15%;
    animation: confettiFall 4.5s ease-in-out infinite 1s;
}

.c4 {
    border-bottom: 12px solid #00CC99;
    top: 40%;
    right: 20%;
    animation: confettiFall 5.5s ease-in-out infinite 1.5s;
}

.c5 {
    width: 14px;
    height: 14px;
    background: #FF99CC;
    bottom: 20%;
    left: 25%;
    animation: confettiFall 4s ease-in-out infinite 2s;
}

.c6 {
    color: #FF3366;
    top: 50%;
    right: 8%;
    animation: confettiFall 5s ease-in-out infinite 0.8s;
}

@keyframes confettiFall {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    25% { opacity: 0.7; }
    50% { transform: translateY(-10px) rotate(15deg); opacity: 0.5; }
    75% { opacity: 0.3; }
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.flink {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #FF3366;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.flink:hover {
    color: #3366FF;
    transform: rotate(-3deg);
}

.footer-copy {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #888;
    position: relative;
    z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .hero {
        padding: 5rem 1.5rem 3rem;
        min-height: 80vh;
    }

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

    .mode-row {
        gap: 1rem;
    }

    .mode-btn {
        width: 100px;
    }

    .mode-shape {
        width: 60px;
        height: 60px;
    }

    .mode-tri {
        border-left-width: 30px;
        border-right-width: 30px;
        border-bottom-width: 52px;
    }

    .mode-star {
        width: 60px;
        height: 60px;
    }
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TYPING INDICATOR ===== */
.typing-indicator {
    display: inline-flex;
    gap: 4px;
    padding: 0.5rem 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #1A1A1A;
    border-radius: 50%;
    animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-8px); opacity: 1; }
}
