:root {
    --primary: #2B2A2A;
    --secondary: #F2F4F8;
    --white: #fff;
    --text1: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    outline: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost';
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 75px;
    margin-inline: auto;
}

.navbar {
    width: 100%;
    height: 60px;
    padding: 0 1rem;
    background: var(--secondary);
    position: fixed;
    z-index: 999;
}

.nav-container {
    position: relative;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    padding: 0 75px;
    margin: 0 auto;
    top: 1rem;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
}

.nav-logo a {
    color: var(--primary);
}

.nav-logo span {
    color: #8A8635;
    font-family: 'Poppins';
}

.nav-link a {
    position: relative;
    margin: 0.75rem;
    color: var(--primary);
    font-size: 1.1rem;
    overflow: hidden;
    display: inline-block;
    margin-top: auto;
}

.nav-link a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 100%;
    color: #8A8635;
    white-space: nowrap;
    overflow: hidden;
    transition: width 0.4s ease-in-out;
}

.nav-link a:hover::before {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Contras Effect */
.navbar--default {
    background-color: var(--secondary);
}

.navbar--light {
    background-color: var(--white);
}

/* Home */
.home {
    position: relative;
    min-height: 110dvh;
    background-color: var(--secondary);
    padding: 80px 0;
}

.home-content {
    min-height: calc(100dvh - 225px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-text h1 {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.home-button {
    margin-top: 1rem;
    font-size: 1.1rem;
    display: flex;
    gap: 1.2rem;
}

.home-button i {
    margin-right: 0.75rem;
}

.btn {
    padding: 0.85rem 1.75rem;
    font-weight: 700;
}

.primary {
    background: #8A8635;
    border-radius: 50px;
    color: var(--white);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.primary:hover {
    transform: translateY(-5px)
}

.secondary {
    border-radius: 50px;
    background: transparent;
    color: #8A8635;
    border: 2px solid #8A8635;
    transition: all 0.3s ease;
}

.secondary:hover {
    background: #8A8635;
    color: var(--white);
}

.cursor {
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}

#typing {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 1rem;
}

.home-img {
    position: relative;
    max-width: 525px;
    flex: 0 0 525px;
}

.blob {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.6));
    transform: translateX(90px);
}

.wave {
    position: absolute;
    bottom: -90px;
    left: 0;
    line-height: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.wave img {
    width: 100%;
    height: 120%;
    display: block;
}

/* ABout */
.about {
    position: relative;
    min-height: 115dvh;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/circle-scatter-haikei.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.aboutt .container {
    position: relative;
    z-index: 2;
}

.header-about {
    margin-top: 5rem;
    text-align: center;
}

.header-about h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--primary);
}

.header-about span {
    color: #8A8635;
}

.about-content {
    position:  relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    top: 7rem;
}

.about-img {
    max-width: 380px;
    height: auto;
    flex: 0 0 380px;
}

.about-text {
    width: 550px;
}

.about-img img {
    width: 100%;
    display: block;
    border-radius: 360px;
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.6));
}

.about-text h3 {
    font-size: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
}

.about-text .p-bottom {
    margin-top: 1rem;
}

.social-media {
    display: flex;
    margin-top: 1.5rem;
}

.social-media a {
    width: 50px;
    height: 50px;
    margin: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--secondary);
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition:  all 0.3s ease;
}

.social-media a:hover {
    background: #8A8635;
    color: var(--white);
}

/* Skill */
.skill {
    background-color: var(--secondary);
    padding: clamp(64px, 8vw, 120px) 0;
    padding-top: 6rem;
}

.skill-header {
    text-align: center;
}

.skill-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    font-family: 'Poppins';
    color: var(--primary);
    margin-bottom: 0.5rem; 
}

.skill-header span {
    color: #8A8635;
}

.skill-header p {
    font-size: 1.2rem;
}

.skill-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.card-skill {
    background: var(--white);
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-radius: 16px;
    width: 300px;
    height: 300px;
    transition: all 0.3s ease;
    border-left: 8.5px solid #8A8635;
}

.card-skill:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.card-skill .icon {
    text-align: center;
}

.card-skill .icon i {
    font-size: 4rem;
    color: #8A8635;
    margin-top: 2rem;
}

.card-skill .img {
    text-align: center;
}


.card-skill .img img {
    width:  92.5px;
    height: 92.5px;
}

.card-skill h3 {
    text-align: center;
    font-size:  1.5rem;
    margin-top: 1rem;
}

.card-skill p {
    text-align: justify;
    font-size: 1rem;
    margin-top: 1.75rem;
}

.tech-stack {
    margin-top: 4rem;
}

.tech-stack h3 {
    text-align: center;
    font-size: 1.7rem;
}

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

.tech-items {
    text-align: center;
    background: linear-gradient(135deg,#ffffff,#f5f5f0);
    border: 1px solid rgba(138, 134, 53, 0.25);
    width: 150px;
    height: 180px;
    padding: 25px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.tech-items:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.tech-items img {
    width: 100px;
    height: 100px;
    transition: filter 0.3s ease;
}

.tech-items img:hover {
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.6));

}

.tech-items span {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.skill-progress {
    margin-top: 4rem;
}

.skill-progress h3 {
    text-align: center;
    font-size: 1.7rem;
}

.progress-items {
    margin-top: 1.5rem;
}

.progress-items .row {
    display: flex;
}

.progress-items span {
    font-size: 1.2rem;
    font-weight: 600;
}

.progress-items .percent {
    margin-left: auto;
}

.progress-bar {
    width: 100%;
    height: 12.5px;
    background-color: var(--white);
    margin-top: 1.2rem;
    overflow: hidden;
    border-radius: 20px;
}

.progress {
    height: 100%;
    border-radius: 20px;
}

.progress.htmlcss {
    background-color: #8A8635;
    width: 75%;
}

.progress.js {
    background-color: #8A8635;
    width: 25%;
}

.progress.php {
    background-color: #8A8635;
    width: 30%;
}
.progress.laravel {
    background-color: #8A8635;
    width: 30%;
}
.progress.bootstrap {
    background-color: #8A8635;
    width: 40%;
}
.progress.mysql {
    background-color: #8A8635;
    width: 45%;
}

/* Project */
.project {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.project-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/blob-scatter-haikei.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.project .container {
    position: relative;
    z-index: 2;
}

.project-header {
    text-align: center;
}

.project-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    font-family: 'Poppins';
    color: var(--primary);
    margin-bottom: 0.5rem; 
}

.project-header span {
    color: #8A8635;
}

.project-header p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.project-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #8A8635;
    background: transparent;
    color: #8A8635;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: #8A8635;
    color: var(--white);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 134, 53, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

.btn-view,
.btn-code {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: #8A8635;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-view:hover,
.btn-code:hover {
    transform: scale(1.1);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.project-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    padding: 0.3rem 0.8rem;
    background: #8A8635;
    color: var(--white);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* COntact */
.contact {
    padding: 5rem 0;
    background-color: var(--secondary);
    min-height: 125dvh;
}

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

.contact-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    font-family: 'Poppins';
    color: var(--primary);
    margin-bottom: 0.5rem; 
}

.contact-header span {
    color: #8A8635;
}

.contact-header p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 4rem;
    padding-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: var(--secondary);
    background: #8A8635;
    border-radius: 50%;
    padding: 0.5rem ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item h3 {
    font-weight: 600;
}

.contact-info-item a {
    color: var(--primary);
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    height: 575px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 6.5px;
    border: 2px solid #eee;
    color: var(--primary);
    font-family: 'Jost';
    font-size: 1.1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8A8635;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-size: 1.1rem;
    font-family: 'Jost';
}

.contact-form .btn {
    width: 100%;
    height: 60px;
    color: var(--white);
    background: #8A8635;
    border: none;
    border-radius: 6.5px;
    font-family: 'Jost';
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form .btn:hover {
    background: #57541e;
}

footer {
    background-color: var(--secondary);
    height: 200px;
    text-align: center;
}

.line {
    border: 0.5px solid #3b3b3b;
    opacity: 0.3;
    width: 100%; 
}

.footer-link {
    margin-bottom: 1.5rem;
    padding-top: 2.5rem;
}

.footer-link a {
    margin: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: #8A8635;
}

.credit {
    margin-bottom: 1.5rem;
}

.credit a {
    color: var(--primary);
    font-weight: 700;
    transition: color 0.3s ease;
}

.credit a:hover {
    color: #8A8635;
}

/* MEDIA QUERIES */

@media (max-width: 1150px) {
    .home h1 {
        font-size: 1.8rem;
        max-width: 500px;
    }

    #typing {
        font-size: 1.2rem;
    }

    .home-button {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }

    .btn {
        padding: 0.75rem 1.4rem;
    }

    .blob {
        max-width: 90%;
    }
}

@media (max-width: 1024px) {
    .home h1 {
        font-size: 1.6rem;
        max-width: 700px;
    }

    #typing {
        font-size: 1.1rem;
    }

    .blob {
        max-width: 85%;
    }
}

@media (max-width: 950px) {
    .container {
        padding: 0 35px;
    }
    
    .nav-container {
        padding: 0 35px;
    }

    .home-content {
        position: relative;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
        bottom: 1.5rem;
    }

    .home-img {
        order: 1;
        max-width: 420px;
        flex: none;
        margin: 0 auto;
        display: block;
    }

    .home-text {
        order: 2;
    }
    
    .home-text h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    #typing {
        font-size: 1.2rem;
    }

    .home-button {
        justify-content: center;
        gap: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .blob {
        transform: translateX(0);
        max-width: 420px;
        display: block;
        width: 420px;
        height: 420px;
    }
    
    .about {
        padding: 4.5rem 0;
        min-height: auto;
        height: auto;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
        top: 1.5rem;
    }
    
    .about-img {
        max-width: 320px;
        height: auto;
        flex: none;
    }
    
    .about-text {
        width: 100%;
        max-width: 600px;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .header-about {
        margin-top: 3rem;
    }
    
    .header-about h2 {
        font-size: 2.1rem;
    }
    
    .social-media {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .skill {
        padding: 4.5rem 0;
    }
    
    .skill-header h2 {
        font-size: 2.1rem;
    }
    
    .skill-cards {
        gap: 2rem;
        margin-top: 3.5rem;
    }
    
    .card-skill {
        max-width: 320px;
    }
    
    .tech-grid {
        gap: 2.5rem;
        grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
        margin-top: 3rem;
        justify-items: center;
    }
    
    .tech-items {
        width: 135px;
        height: 165px;
        padding: 22px;
    }
    
    .tech-items img {
        width: 88px;
        height: 88px;
    }
    
    .tech-items span {
        font-size: 0.98rem;
        margin-top: 0.7rem;
    }
    
    .tech-stack h3 {
        font-size: 1.6rem;
    }
    
    .project {
        padding: 4.5rem 0;
    }
    
    .project-header h2 {
        font-size: 2.1rem;
    }
    
    .project-header p {
        font-size: 1.1rem;
    }
    
    .project-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .contact {
        padding: 4.5rem 0;
    }
    
    .contact-header h2 {
        font-size: 2.1rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .nav-container {
        padding: 0 5px;
    }

    .hamburger {
        display: flex;
        padding: 3px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    .nav-link {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar--default .nav-link {
        background: var(--secondary);
    }
    
    .navbar--light .nav-link {
        background: var(--white);
    }
    
    .nav-link.active {
        display: flex;
    }

    .nav-logo {
        margin-right: auto;
    }
    
    .nav-link a {
        margin: 0.3rem 0;
        font-size: 1rem;
        display: block;
        text-align: center;
    }

    .home {
        padding: 60px 0;
    }
    
    .home-text h1 {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    #typing {
        font-size: 1.1rem;
    }
    
    .home-button {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 1.4rem;
        font-size: 1rem;
    }

    .wave {
        left: 0 !important;
        width: 100%;
        overflow: hidden;
    }

    .about {
        padding: 5rem 0;
        min-height: auto;
        height: auto;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
        top: 1.5rem;
    }
    
    .about-img {
        max-width: 300px;
        height: auto;
        flex: none;
    }
    
    .about-text {
        width: 100%;
        max-width: 550px;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .header-about {
        margin-top: 2.5rem;
    }
    
    .header-about h2 {
        font-size: 2.2rem;
    }
    
    .social-media {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .skill {
        padding: 5rem 0;
    }
    
    .skill-header h2 {
        font-size: 2.2rem;
    }
    
    .skill-header p {
        font-size: 1.1rem;
    }
    
    .skill-cards {
        gap: 2rem;
        margin-top: 3.5rem;
    }
    
    .card-skill {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .tech-grid {
        gap: 2rem;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        margin-top: 3rem;
        justify-items: center;
    }
    
    .tech-items {
        width: 140px;
        height: 170px;
        padding: 25px 20px;
    }
    
    .tech-items img {
        width: 85px;
        height: 85px;
    }
    
    .tech-items span {
        font-size: 0.95rem;
        margin-top: 0.8rem;
        display: block;
    }
    
    .tech-stack h3 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .project {
        padding: 5rem 0;
    }
    
    .project-header h2 {
        font-size: 2.2rem;
    }
    
    .project-header p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .project-filter {
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 3rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact {
        padding: 5rem 0;
        min-height: auto;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form {
        height: auto;
        padding: 2.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 16px;
        font-size: 1rem;
    }
    
    .contact-form .btn {
        height: 55px;
        font-size: 1.1rem;
    }
    
    footer {
        height: auto;
        padding: 2.5rem 0;
    }
    
    .footer-link a {
        font-size: 1rem;
        margin: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 5 px;
    }
    
    .home {
        padding: 40px 0;
        min-height: 100vh;
    }
    
    .home-content {
        gap: 1rem;
        bottom: 0;
        min-height: calc(100vh - 120px);
        justify-content: center;
    }
    
    .home-text h1 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    #typing {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .home-button {
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
        margin-top: 0.5rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        width: 160px;
        text-align: center;
    }
    
    .home-img {
        max-width: 325px;
        margin-bottom: 1rem;
    }

    .blob {
        max-width: 325px;
        width: 325px;
        height: 325px;
    }

    .wave {
        left: 0 !important;
        width: 100%;
        overflow: hidden;
    }

    .about {
        padding: 1.5rem 0 3.5rem 0;
        height: auto;
        min-height: auto;
    }
    
    .about-content {
        gap: 1rem;
        top: 1rem;
    }

    .about-img {
        max-width: 180px;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-text h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .about-text .p-bottom {
        margin-top: 0.8rem;
    }
    
    .header-about {
        margin-top: 1rem;
    }
    
    .header-about h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .social-media {
        display: flex;
        justify-content: center;
        gap: 0.4rem;
        margin-top: 1rem;
    }
    
    .social-media a {
        font-size: 1.1rem;
        margin: 0;
        padding: 0.35rem;
    }
    
    .skill {
        padding: 2.5rem 0;
    }
    
    .skill-header h2 {
        font-size: 1.4rem;
    }
    
    .skill-header p {
        font-size: 0.9rem;
    }
    
    .card-skill h3 {
        font-size: 1.1rem;
    }
    
    .card-skill p {
        font-size: 0.85rem;
    }
    
    .tech-stack h3 {
        font-size: 1.2rem;
    }
    
    .tech-items span {
        font-size: 0.9rem;
    }
    
    .skill-progress h3 {
        font-size: 1.2rem;
    }
    
    .progress-items span {
        font-size: 1rem;
    }
    
    .project {
        padding: 2.5rem 0;
    }
    
    .project-header h2 {
        font-size: 1.4rem;
    }
    
    .project-header p {
        font-size: 0.9rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .project-info h3 {
        font-size: 1rem;
    }
    
    .project-info p {
        font-size: 0.85rem;
    }
    
    .project-tech span {
        font-size: 0.7rem;
    }
    
    .contact {
        padding: 2.5rem 0;
    }
    
    .contact-header h2 {
        font-size: 1.4rem;
    }
    
    .contact-header p {
        font-size: 0.9rem;
    }
    
    .contact-info-item h3 {
        font-size: 0.9rem;
    }
    
    .contact-info-item p {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .contact-form .btn {
        font-size: 1rem;
        height: 50px;
    }
    
    .footer-link a {
        font-size: 0.9rem;
    }
    
    .credit {
        font-size: 0.8rem;
    }
}