:root {
    --cl-blue: #0167E3;
    --cl-lime: #8afb04;
    --cl-pink: #F6D6E3;
    --cl-orange: #fa8005;

    --font-heading: "Vtks-Sacoleta", sans-serif;
}

@font-face {
    font-family: "Vtks-Sacoleta";
    src: url("/fonts/vtks-sacoleta/vtks-sacoleta.ttf");
}

* {
    box-sizing: border-box;
    font-family: var(--font-heading);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--cl-pink);
    background-image:
        linear-gradient(rgba(1, 103, 227, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 103, 227, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

.finalClass {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px 40px;
}

.headerClass {
    display: none;
    width: 100%;
}

.mainClass {
    display: flex;
    flex: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

h1 {
    text-align: center;
    color: var(--cl-blue);
    font-size: 600%;
    /* Your grand original text scale */
    font-weight: bold;
    margin: 0 0 10px 0;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.firstColumn,
.thirdColumn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secondColumn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.indie-btn {
    position: relative;
    width: 220px;
    height: 100px;
    padding: 0;

    background-color: var(--cl-lime);
    border: 12px solid var(--cl-blue);
    border-radius: 100px;
    box-shadow: 8px 8px 0px var(--cl-blue);

    cursor: pointer;
    outline: none;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
}


.indie-btn a,
.indie-btn {
    font-size: 150%;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.indie-btn a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.indie-btn.is-hovered {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px var(--cl-blue);
}

.indie-btn:active {
    transform: translate(8px, 8px);
    box-shadow: 0px 0px 0px var(--cl-blue);
}

#logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-img {
    width: 900px;
    max-width: 100%;
    height: auto;
}

#previewImg {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 200px;
    height: 200px;
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.9) rotate(-3deg);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#previewImg.show-preview {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.footerClass {
    width: 100%;
    margin-top: 40px;
}

.indie-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 0 10px 0;
    border-top: 6px solid var(--cl-blue);
    /* Solid top-bar architecture */
    font-size: 1.1rem;
    color: var(--cl-blue);
    font-weight: bold;
}

.indie-footer p {
    margin: 0;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: var(--cl-lime);
    border: 2px solid var(--cl-blue);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite ease-in-out;
}

.status-text {
    color: #000000;
    background-color: var(--cl-lime);
    padding: 2px 6px;
    border-radius: 4px;
    border: 2px solid var(--cl-blue);
    font-size: 0.9rem;
}

.footer-right .visitor-counter {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 8px var(--cl-lime);
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

@media (max-width: 1024px) {
    .finalClass {
        padding: 15px;
    }

    .mainClass {
        flex-direction: column;
        flex: 1;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin: 40px 0;
    }

    .firstColumn,
    .thirdColumn {
        display: none !important;
    }

    h1 {
        font-size: 3.5rem;
    }

    #logo-img {
        max-width: 450px;
    }

    #previewImg {
        display: none !important;
    }

    .headerClass {
        display: block;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .mobile-nav-wrapper {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        padding: 10px 0;
    }

    .burger-trigger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 50px;
        height: 45px;
        padding: 8px;
        background: var(--cl-lime);
        border: 4px solid var(--cl-blue);
        border-radius: 8px;
        box-shadow: 4px 4px 0px var(--cl-blue);
        cursor: pointer;
        z-index: 1000;
    }

    .burger-bar {
        width: 100%;
        height: 4px;
        background-color: var(--cl-blue);
        border-radius: 2px;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--cl-pink);
        border: 8px solid var(--cl-blue);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        transform: translateY(-100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-drawer.is-open {
        transform: translateY(0);
    }

    .drawer-header {
        background-color: var(--cl-blue);
        color: #ffffff;
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .drawer-close {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 2rem;
        cursor: pointer;
        line-height: 1;
    }

    .drawer-content {
        flex: 1;
        overflow-y: auto;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .drawer-section h3 {
        margin: 0 0 15px 0;
        color: var(--cl-blue);
        font-size: 1.3rem;
        border-bottom: 3px dashed var(--cl-blue);
        padding-bottom: 5px;
    }

.drawer-section a,
.drawer-section .mobile-project-btn {
    
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    padding: 12px 15px;
    margin-bottom: 10px;

    background: var(--cl-lime);
    color: #000;

    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;

    border: 3px solid var(--cl-blue);
    border-radius: 8px;

    box-shadow: 4px 4px 0 var(--cl-blue);

    cursor: pointer;

    text-align: left;
}

.drawer-section a:active,
.drawer-section .mobile-project-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--cl-blue);
    background-color: var(--cl-orange);
    color: #ffffff;
}

    .indie-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .about-main {
        flex-direction: column-reverse !important;
        gap: 40px;
    }

    .about-heading {
        text-align: center;
        font-size: 2.2rem;
    }

    .image-container {
        max-width: 320px;
        margin: 0 auto;
    }

    .story-p {
        font-size: 1.05rem;
        padding: 10px 14px;
    }



    .final-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-container {
        width: 100%;
        padding: 24px 16px;
    }

    .contact-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .submit-button {
        width: 100%;
    }
}

.about-main {
    align-items: flex-start;
    max-width: 1400px;
    gap: 60px;
}

.image-container {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

#about-img {
    width: 100%;
    height: auto;
    border: 8px solid var(--cl-blue);
    border-radius: 24px;
    box-shadow: 12px 12px 0px var(--cl-blue);
    background-color: #ffffff;
    
    
    animation: imgBounce 3.5s linear; 
    transform-origin: bottom; 
}

@keyframes imgBounce {
    0% {
        transform: translateY(-200px);
        animation-timing-function: ease-in; 
    }
    30% {
        transform: translateY(0) scaleY(1) scaleX(1);
        animation-timing-function: ease-out; 
    }

    34% {
        transform: translateY(0) scaleY(0.85) scaleX(1.05); 
        animation-timing-function: ease-out;
    }
    45% {
        transform: translateY(-80px); 
        animation-timing-function: ease-in; 
    }
    60% {
        transform: translateY(0) scaleY(1) scaleX(1);
        animation-timing-function: ease-out;
    }

    63% {
        transform: translateY(0) scaleY(0.95) scaleX(1.02);
        animation-timing-function: ease-out;
    }
    73% {
        transform: translateY(-30px); 
        animation-timing-function: ease-in;
    }
    85% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    92% {
        transform: translateY(-10px); 
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateY(0) scaleY(1) scaleX(1); 
    }
}

.textClass {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-heading {
    text-align: left;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-p {
    font-family: 'Courier New', Courier, monospace;
    /* Switched body text to monospace for legibility */
    font-size: 1.15rem;
    font-weight: bold;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    background-color: #ffffff;
    padding: 12px 16px;
    border: 3px solid var(--cl-blue);
    border-radius: 12px;
    box-shadow: 4px 4px 0px var(--cl-blue);
    animation: slide-in 0.8s ease 1;

}

@keyframes slide-in {
    from {
        transform: translateX(-100%) rotateZ(360deg);
    }

    to {
        transform: translateX(0) rotate(0deg);
    }
}


.contact-main {
    justify-content: center;
}

.final-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    align-items: center;
    gap: 60px;
}

#contact-img {
    width: 100%;
    height: auto;
    border: 8px solid var(--cl-blue);
    border-radius: 24px;
    box-shadow: 12px 12px 0px var(--cl-blue);
    background-color: #ffffff;
}

.contact-form-container {
    flex: 1.2;
    background-color: #ffffff;
    border: 8px solid var(--cl-blue);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 12px 12px 0px var(--cl-blue);
}

.contact-heading {
    margin: 0 0 25px 0;
    color: var(--cl-blue);
    font-size: 2.5rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--cl-blue);
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    font-family: 'Courier New', Courier, monospace;
    /* Clean tech monospace code inputs */
    font-size: 1.05rem;
    font-weight: bold;
    padding: 12px 16px;
    border: 3px solid var(--cl-blue);
    border-radius: 8px;
    background-color: var(--cl-pink);
    color: #000000;
    outline: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #ffffff;
    box-shadow: inset 0 0 0 2px var(--cl-blue);
}

.error-message {
    font-family: 'Courier New', Courier, monospace;
    color: var(--cl-orange);
    font-size: 0.85rem;
    font-weight: bold;
}

.submit-button {
    width: 200px;
    height: 60px;
    margin-top: 10px;
    background-color: var(--cl-lime);
    border: 4px solid var(--cl-blue);
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    box-shadow: 4px 4px 0px var(--cl-blue);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
}

.submit-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--cl-blue);
    background-color: var(--cl-orange);
    color: #ffffff;
}

.submit-button:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--cl-blue);
}

.success-main {
    justify-content: center;
}

.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.home-arrow img {
    width: 120px;
    height: auto;
    transition: transform .2s ease;
    cursor: pointer;
}

.home-arrow:hover img {
    transform: translateX(-10px) scale(1.08);
}

.home-arrow:active img {
    transform: scale(0.95);
}