@font-face {
    font-family: 'Switzer';
    src: url('./fonts/Switzer-Variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --hover-button-color: #b2155a;
    --clicked-button-color: #cc1b6a;
}

body {
    font-family: 'Switzer', Helvetica, Arial, sans-serif;;
    position: relative;
    user-select: none;
}

body.page-404 {
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 0.8px, rgba(255, 255, 255, 0.1) 0.8px);
    background-size: 16px 16px;
    background-position: 0 0;
    z-index: -1;
}

.icon.nav-icon {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -150%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes softFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: softFadeIn 1s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
    }

}

.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    padding: 8px 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    max-width: 1500px;
    width: 95%;
    z-index: 1000;


    animation-name: slideDown;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.navbar-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    user-select: none;
}

.navbar-links a {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: color 0.5s ease-in-out;
}

.navbar-links a:hover {
    color: var(--hover-button-color);
}

.navbar-links a.active {
    transform: scale(2);
    color: var(--clicked-button-color);

}


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

.logo img {
    height: 45px;
    width: auto;
    user-select: none;

}

.all-projects-button {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    border-radius: 18px;
    display: inline-block;
    padding: 14px 32px;
    background: rgba(178, 21, 90, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(178, 21, 90, 0.9);
    box-shadow: 0 10px 25px rgba(178, 21, 90, 0.35);
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: 40px auto 0;
    user-select: none;
}

.all-projects-button:hover {
    background: var(--hover-button-color);
    border-color: var(--hover-button-color);
    box-shadow: 0 15px 35px rgba(178, 21, 90, 0.45);
    transform: translateY(-3px);
}

.all-projects-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(178, 21, 90, 0.3);
}

.projects-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo a {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 30px;
    text-decoration: none;
    color: #333;
    transition: color 0.5s ease-in-out;
    text-align: center;
    user-select: none;

}

.logo a:hover {
    color: var(--hover-button-color);
}

.category {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.category.tall {
    min-height: 200vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.category-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

html {
    scroll-behavior: smooth;
}

.welcomeText {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.welcomeText h1 {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 75px;
    text-align: left !important;
    margin-bottom: 10px;
    white-space: nowrap;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: color 0.85s ease-in-out;
    color: #000000;
}

.welcomeText h1:hover {
    color: var(--hover-button-color);
}

.welcomeText .subtitle {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 35px;
    color: #000000;
    margin-top: 70px;
    text-align: left !important;
    transition: color 0.85s ease-in-out;
    user-select: none;
}

.welcomeText .subtitle:hover {
    color: var(--hover-button-color);
}

.welcomeText .subtitle:hover .text-button {
    color: #000000;
}

.text-button:hover {
    color: #000000;
}

.text-button {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 35px;
    background: none;
    border: none;
    color: var(--hover-button-color);
    cursor: pointer;
    padding: 0;
    margin: 0;
    text-decoration: none;
    transition: color 0.85s ease-in-out;
    user-select: none;
}

.category-container h1 {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 70px;
    text-align: left !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-container {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-image {
    flex-shrink: 0;
}

.portfolio-image img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.85s ease-in-out;
    user-select: none;
}

.portfolio-image img:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 30px var(--hover-button-color);
}

.github-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.75s ease-in-out;
}

.github-logo:hover {
    transform: scale(1.1);
}


.github-logo img {
    width: 40px;
    height: 40px;
    user-select: none;

}

.contact-title {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 80px;
    text-align: center;
    user-select: none;
    transition: color 0.85s ease-in-out;
    margin-bottom: 70px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-title:hover {
    color: var(--hover-button-color);
}

.contact {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 0 0 auto;
    min-width: 320px;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.5s ease-in-out;
    height: 300px;
}

.contact-info-box:hover {
    box-shadow: 0 25px 60px rgba(178, 21, 90, 0.25);
    border-color: rgba(178, 21, 90, 0.4);
    transform: translateY(-5px);
}

.email-section,
.socials-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-panel h2 {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    text-align: left;
    user-select: none;
    transition: color 0.5s ease-in-out;
    margin: 0;
    color: #222;
}

.contact-info-panel h2:hover {
    color: var(--hover-button-color);
}

.contact-info-panel p {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
    user-select: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin: 0;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
}

.contact-info-panel p:hover {
    color: var(--hover-button-color);
    background: rgba(178, 21, 90, 0.08);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
    flex: 1;
    max-width: 550px;
}

.contact-container p {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 200;
    font-size: 30px;
}

.input-field {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    border-radius: 20px;
    width: 100%;
    height: 55px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 0 22px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.input-field:hover {
    border-color: rgba(178, 21, 90, 0.4);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.65);
}

.input-field:focus {
    outline: none;
    border-color: var(--hover-button-color);
    box-shadow: 0 0 0 4px rgba(178, 21, 90, 0.12), 0 12px 28px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.7);
}

.input-field::placeholder {
    color: rgba(51, 51, 51, 0.45);
    font-weight: 600;
}

.input-label {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 22px;
    color: #222;
    user-select: none;
    transition: color 0.3s ease-in-out;
}

.input-label:hover {
    color: var(--hover-button-color);
}

.label-text {
    display: block;
}

.input-text-field {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    border-radius: 20px;
    width: 100%;
    min-height: 140px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 18px 22px;
    color: #333;
    transition: all 0.3s ease-in-out;
    vertical-align: top;
    resize: vertical;
    max-height: 500px;
}

.input-text-field:hover {
    border-color: rgba(178, 21, 90, 0.4);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.65);
}

.input-text-field:focus {
    outline: none;
    border-color: var(--hover-button-color);
    box-shadow: 0 0 0 4px rgba(178, 21, 90, 0.12), 0 12px 28px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.7);
}

.input-text-field::placeholder {
    color: rgba(51, 51, 51, 0.45);
    font-weight: 600;
}

.submit-button {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    border-radius: 20px;
    width: 100%;
    height: 58px;
    background: rgba(178, 21, 90, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(178, 21, 90, 0.9);
    box-shadow: 0 10px 25px rgba(178, 21, 90, 0.35);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    user-select: none;
}

.submit-button:hover {
    background: var(--hover-button-color);
    border-color: var(--hover-button-color);
    box-shadow: 0 15px 35px rgba(178, 21, 90, 0.45);
    transform: translateY(-3px);
}

.submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(178, 21, 90, 0.3);
}

.submit-button:disabled {
    background: rgba(150, 150, 150, 0.5);
    border-color: rgba(150, 150, 150, 0.6);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-result {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 22px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.form-result.show {
    opacity: 1;
    max-height: 200px;
}

.form-result.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1.5px solid rgba(34, 197, 94, 0.5);
    color: #16a34a;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.15);
}

.form-result.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1.5px solid rgba(239, 68, 68, 0.5);
    color: #dc2626;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
}


.back-to-home-button {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(178, 21, 90, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(178, 21, 90, 0.9);
    box-shadow: 0 10px 25px rgba(178, 21, 90, 0.35);
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    user-select: none;
    margin: 40px auto 0;
}

.back-to-home-button svg {
    width: 20px;
    height: 20px;
}

.back-to-home-button:hover {
    background: var(--hover-button-color);
    border-color: var(--hover-button-color);
    box-shadow: 0 15px 35px rgba(178, 21, 90, 0.45);
    transform: translateY(-3px);
}

.back-to-home-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(178, 21, 90, 0.3);
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    color: #333;
}

.social-icon:hover {
    background: var(--hover-button-color);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(178, 21, 90, 0.3);
    border-color: var(--hover-button-color);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.errorSiteContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 20px;
    text-align: center;
    gap: 30px;
}

.errorSiteContainer h1 {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 80px;
    color: #333;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    user-select: none;
    transition: color 0.85s ease-in-out;

}

.errorSiteContainer h1:hover {
    color: var(--hover-button-color);
}

.errorSiteContainer h2 {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    color: #666;
    margin: 0;
    max-width: 600px;
    user-select: none;
    transition: color 0.85s ease-in-out;


}

.errorSiteContainer h2:hover {
    color: var(--hover-button-color);
}

.errorSiteContainer a {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    text-decoration: none;
    color: white;
    background: rgba(178, 21, 90, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 18px 45px;
    border-radius: 25px;
    border: 2px solid rgba(178, 21, 90, 0.9);
    box-shadow: 0 10px 25px rgba(178, 21, 90, 0.3);
    transition: all 0.5s ease-in-out;
    margin-top: 20px;
    display: inline-block;
    user-select: none;
}

.errorSiteContainer a:hover {
    background: var(--hover-button-color);
    border-color: var(--hover-button-color);
    box-shadow: 0 15px 35px rgba(178, 21, 90, 0.45);
    transform: translateY(-3px);
}

.errorSiteContainer a:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(178, 21, 90, 0.3);
}

.errorSiteContainer {
    position: relative;
    z-index: 2;
}

.project-site {
    min-height: 100vh;
    padding: 120px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-site h1 {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 70px;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: color 0.85s ease-in-out;
    user-select: none;
}

.project-site h1:hover {
    color: var(--hover-button-color);
}

.all-projects-view {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    padding: 20px 20px;
}

.project-card {
    background: #ffffff;
    border: none;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    width: 380px;
    flex-shrink: 0;

}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(178, 21, 90, 0.25);
    border-color: rgba(178, 21, 90, 0.4);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.project-title {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 28px;
    color: #222;
    margin: 0;
    transition: color 0.3s ease-in-out;
    user-select: none;
}

.project-card:hover .project-title {
    color: var(--hover-button-color);
}

.project-description {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    user-select: none;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.tech-tag {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    background: rgba(178, 21, 90, 0.1);
    border: 1px solid rgba(178, 21, 90, 0.3);
    border-radius: 20px;
    color: var(--hover-button-color);
    transition: all 0.3s ease-in-out;
    user-select: none;
}

.tech-tag:hover {
    background: rgba(178, 21, 90, 0.2);
    border-color: var(--hover-button-color);
    transform: translateY(-2px);
}

.project-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-btn {
    font-family: 'Switzer', monospace;
    font-style: normal;
    font-weight: 900;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
    border: 1.5px solid;
    user-select: none;
    flex: 1;
    min-width: 0;
}

.project-btn svg {
    width: 18px;
    height: 18px;
}

.github-btn {
    background: rgba(51, 51, 51, 0.85);
    border-color: rgba(51, 51, 51, 0.9);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(51, 51, 51, 0.3);
}

.github-btn:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.website-btn {
    background: rgba(178, 21, 90, 0.85);
    border-color: rgba(178, 21, 90, 0.9);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(178, 21, 90, 0.3);
}

.website-btn:hover {
    background: var(--hover-button-color);
    border-color: var(--hover-button-color);
    box-shadow: 0 12px 30px rgba(178, 21, 90, 0.4);
    transform: translateY(-3px);
}

.page-404 .errorSiteContainer h1 {
    font-size: 10rem;
    color: var(--hover-button-color);
}

.page-404 .errorSiteContainer h2 {
    color: black;
}

.page-404 .errorSiteContainer h1:hover {
    color: var(--hover-button-color);
}

.page-404 .errorSiteContainer h2:hover {
    color: black;
}

.footer {
    padding: 20px 20px 22px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.information-container,
.links-container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.information-container p {
    font-family: 'Switzer', monospace;
    font-weight: 700;
    font-size: 14px;
    color: #555;
    user-select: none;
}

.links-container a {
    font-family: 'Switzer', monospace;
    font-weight: 700;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.links-container a:hover {
    color: var(--hover-button-color);
}

.about-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    width: 100%;
    margin-top: 40px;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.box-top-left {
    flex: 0 0 auto;
    min-height: 800px;
}

.box-bottom-left {
    min-height: 500px;
    width: 100%;
}

.right-connected-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 1200px;
}

.right-content-top {
    flex: 0 0 35%;
    padding-bottom: 20px;
}

.right-content-bottom {
    flex: 1;
    padding-top: 20px;
}

.divider {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    width: 100%;
}

.about-grid-wrapper .about-box {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;

    transition: none;
    transform: none;
}

.about-grid-wrapper .about-box:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.about-grid-wrapper .about-box:hover h2 {
    color: #222;
}


.technologies-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    padding: 20px;
}

.technologies-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.tools-content {
    width: 80px;
    height: 80px;
    background-color: #f4f4f4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.tools-content:hover {
    transform: translateY(-5px);
}

.tools-content a {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.tools-content img {
    max-width: 100%;
    max-height: 100%;
}

.tools-content img:hover {
    opacity: 0.5;
    cursor: alias;
}

@media (max-width: 1150px) {
    .welcomeText h1 {
        font-size: 60px;
    }

    .portfolio-image img {
        width: 350px;
        height: 435px;
    }

    .category-container {
        padding: 0 35px;
    }

    .all-projects-view {
        gap: 35px;
    }
}

@media (max-width: 1000px) {

    .navbar {
        padding: 10px 20px;
        position: fixed;
        flex-wrap: wrap;
        align-items: center;
    }

    .back-to-home-button {
        font-size: 15px;
        padding: 13px 28px;
    }

    .all-projects-button {
        font-size: 15px;
        padding: 13px 28px;
    }

    .logo a {
        font-size: 22px;
    }

    .icon.nav-icon {
        display: block;
        margin-left: auto;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 10px;
        margin-top: 15px;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-links a {
        font-size: 18px;
    }

    .logo img {
        height: 32px;
    }

    .home-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .welcomeText {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .welcomeText h1 {
        font-size: 40px;
        text-align: left !important;
        white-space: normal;
        margin-bottom: 5px;
    }

    .welcomeText .subtitle {
        font-size: 20px;
        text-align: left;
        margin-top: 30px;
    }

    .text-button {
        font-size: 20px;
    }

    .portfolio-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .portfolio-image img {
        width: 280px;
        height: 350px;
    }

    .category {
        justify-content: center;
    }

    .category-container {
        padding: 0 20px;
        margin: 0 auto;
    }

    .category-container h1 {
        text-align: left !important;
        font-size: 45px;
    }

    .github-logo {
        width: 50px;
        height: 50px;
    }

    .github-logo img {
        width: 35px;
        height: 35px;
    }

    .contact-title {
        font-size: 56px;
        margin-bottom: 50px;
    }

    .contact {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }

    .contact-info-panel {
        width: 100%;
        max-width: 550px;
        min-width: auto;
    }

    .contact-container {
        width: 100%;
        max-width: 550px;
        align-items: stretch;
    }

    .contact-info-box {
        padding: 35px;
        gap: 25px;
    }

    .input-label {
        font-size: 20px;
    }

    .input-field {
        height: 52px;
        font-size: 15px;
    }

    .input-text-field {
        min-height: 120px;
        font-size: 15px;
    }

    .errorSiteContainer h1 {
        font-size: 60px;
    }

    .errorSiteContainer h2 {
        font-size: 24px;
    }

    .errorSiteContainer a {
        font-size: 18px;
        padding: 16px 40px;
    }

    .project-site h1 {
        font-size: 56px;
        margin-bottom: 50px;
    }

    .all-projects-view {
        max-width: 600px;
        gap: 30px;
    }

    .project-content {
        padding: 25px;
        gap: 18px;
    }

    .project-title {
        font-size: 26px;
    }

    .project-description {
        font-size: 15px;
    }

    .page-404 .errorSiteContainer h1 {
        font-size: 8rem;
    }

    .about-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .box-top-left,
    .box-bottom-left,
    .right-connected-box {
        min-height: 350px;
        height: auto;
    }
}

@media (max-width: 680px) {
    .contact-title {
        font-size: 45px;
        margin-bottom: 35px;
    }

    .contact {
        gap: 30px;
    }

    .contact-info-panel {
        max-width: 100%;
    }

    .contact-container {
        max-width: 100%;
    }

    .contact-info-box {
        padding: 28px;
        gap: 22px;
    }

    .contact-info-panel h2 {
        font-size: 22px;
    }

    .contact-info-panel p {
        font-size: 17px;
        padding: 6px 10px;
    }

    .input-label {
        font-size: 19px;
        gap: 10px;
    }

    .input-field {
        height: 50px;
        font-size: 15px;
        padding: 0 18px;
    }

    .input-text-field {
        min-height: 110px;
        font-size: 15px;
        padding: 15px 18px;
    }

    .project-site {
        padding: 100px 15px 60px;
    }

    .project-site h1 {
        font-size: 45px;
        margin-bottom: 40px;
    }

    .all-projects-view {
        padding: 0 10px;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 22px;
        gap: 16px;
    }

    .project-title {
        font-size: 24px;
    }

    .project-description {
        font-size: 14px;
    }

    .tech-tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    .project-btn {
        font-size: 14px;
        padding: 11px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
    }

    .information-container,
    .links-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
        width: 90%;
    }

    .back-to-home-button {
        font-size: 14px;
        padding: 12px 24px;
    }

    .back-to-home-button svg {
        width: 18px;
        height: 18px;
    }

    .logo a {
        font-size: 18px;
    }

    .navbar-links a {
        font-size: 16px;
    }

    .logo img {
        height: 28px;
    }

    .welcomeText h1 {
        font-size: 28px;
        white-space: nowrap;
    }

    .welcomeText .subtitle {
        font-size: 16px;
        margin-top: 20px;
    }

    .text-button {
        font-size: 16px;
    }

    .category-container h1 {
        font-size: 35px;
    }

    .portfolio-image img {
        width: 240px;
        height: 300px;
    }

    .all-projects-button {
        font-size: 14px;
        padding: 12px 24px;
    }

    .contact-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .contact {
        gap: 25px;
    }

    .contact-info-box {
        padding: 24px;
        gap: 20px;
    }

    .email-section,
    .socials-section {
        gap: 12px;
    }

    .contact-info-panel h2 {
        font-size: 20px;
    }

    .contact-info-panel p {
        font-size: 16px;
        padding: 6px 10px;
    }

    .social-links {
        gap: 15px;
        margin-top: 8px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .input-label {
        font-size: 18px;
        gap: 8px;
    }

    .input-field {
        height: 48px;
        font-size: 15px;
        padding: 0 16px;
    }

    .input-text-field {
        min-height: 100px;
        font-size: 15px;
        padding: 14px 16px;
    }

    .errorSiteContainer h1 {
        font-size: 48px;
    }

    .errorSiteContainer h2 {
        font-size: 20px;
    }

    .errorSiteContainer a {
        font-size: 16px;
        padding: 14px 35px;
    }

    .project-site h1 {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .project-image {
        height: 180px;
    }

    .project-content {
        padding: 20px;
        gap: 14px;
    }

    .project-title {
        font-size: 22px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-buttons {
        gap: 10px;
    }

    .project-btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    .project-btn svg {
        width: 16px;
        height: 16px;
    }

    .page-404 .errorSiteContainer h1 {
        font-size: 6rem;
    }
}


.category.legal-page {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 80px;
    display: block;
}

.legal-heading {
    margin-bottom: 40px;
    text-align: center;
}

.legal-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.legal-section-title {
    font-family: 'Switzer', monospace;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 0;
    color: #222;
    font-weight: 900;
}

.legal-text {
    font-family: 'Switzer', monospace;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 30px;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text strong {
    color: #333;
    font-weight: 700;
}

.divider.legal-divider {
    margin: 40px 0;
}

.legal-back-button {
    margin-top: 50px !important;
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}