@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    font-family: "Poppins", sans-serif;
    background-color: #FFF5E1;
    color: #000;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark Mode */
body.dark-mode {
    background-color: #1a1a2e;
    color: #eee;
}

body.dark-mode .home_section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%);
}

body.dark-mode nav,
body.dark-mode .sub_hero_text p,
body.dark-mode .project-card,
body.dark-mode .contact-card,
body.dark-mode .skill-category,
body.dark-mode .stat-card {
    background: #16213e;
    color: #eee;
}

body.dark-mode .project-card.featured {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

body.dark-mode .projects_section,
body.dark-mode .footer,
body.dark-mode .skills-section,
body.dark-mode .stats-section {
    background: #1a1a2e;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: #0f3460;
    color: #eee;
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus {
    background: #16213e;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    background: #FFD93D;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #000;
}

.theme-toggle .sun {
    display: block;
}

.theme-toggle .moon {
    display: none;
}

body.dark-mode .theme-toggle {
    background: #533483;
}

body.dark-mode .theme-toggle .sun {
    display: none;
}

body.dark-mode .theme-toggle .moon {
    display: block;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF6B9D, #FFD93D, #A8E6CF);
    z-index: 999;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    background: #FF6B9D;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    color: #000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #000;
    background: #A8E6CF;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 1001;
    background: #fff;
    color: #000;
    padding: 1.2rem 2rem;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 300px;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.toast.success {
    background: #A8E6CF;
}

.toast.error {
    background: #FF6B9D;
}


.home_section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    padding: 2vh 2vw;
    font-size: 2vw;
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 50%, #A8E6CF 100%);
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1.5vh 2vw;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
    border-radius: 12px;
    font-weight: 700;
}

.logo {
    font-family: "Anton", sans-serif;
    font-size: 2.2vw;
    background: #FFD93D;
    padding: 0.3vw 1vw;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
    transform: rotate(-2deg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: rotate(2deg) translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.nav_contact_link {
    font-size: 2vw;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav_contact_link:hover {
    color: #FF6B9D;
    transform: translateY(-2px);
}

.sub_hero_text {
    display: flex;
    justify-content: flex-end;
    font-size: 1.5vw;
    font-weight: 400;
}

.sub_hero_text p {
    width: 35vw;
    margin-top: 5vh;
    background: #fff;
    padding: 2vw;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    border-radius: 8px;
    color: #000;
    font-weight: 500;
}

.hero_text {
    font-family: "Anton", sans-serif;
    font-size: 12.5vw;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 6px 6px 0px #000, 12px 12px 0px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
    transition: transform 0.1s ease;
}

.typing-container {
    position: absolute;
    bottom: 10vh;
    left: 2vw;
    font-size: 2.5vw;
    font-weight: 700;
    background: #fff;
    padding: 1vw 2vw;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    color: #000;
}

.typing-text {
    color: #FF6B9D;
}

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

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

.scroll_btn {
    position: absolute;
    bottom: 2vh;
    right: 3vh;
}

.about_section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FFF5E1;
}

.about_section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.6);
    border: 8px solid #000;
}

.about_span{
    z-index: 1;
    margin-left: 2vw;
}

.about_content{
    z-index: 1;
    margin-bottom: -30vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 5vh;
}

.about_topics{
    width: 95%;
    display: flex;
    gap: 4vw;
    text-transform: uppercase;
}

.about_text{
    font-size: 1.5vw;
    width: 95%;
    background: #FFD93D;
    padding: 2vw;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
    border-radius: 12px;
    font-weight: 600;
}

/* Skills Section */
.skills-section {
    width: 100vw;
    padding: 8vh 4vw;
    background: #FFF5E1;
    display: flex;
    flex-direction: column;
    gap: 4vw;
}

.section-title {
    font-family: "Anton", sans-serif;
    font-size: 4vw;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    text-shadow: 4px 4px 0px #FFD93D;
    margin-bottom: 2vh;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3vw;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.skill-category {
    background: #fff;
    padding: 2vw;
    border: 5px solid #000;
    box-shadow: 8px 8px 0px #000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.skill-category.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.skill-category:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #000;
}

.skill-category h3 {
    font-family: "Anton", sans-serif;
    font-size: 1.8vw;
    margin-bottom: 1.5vw;
    color: #000;
    background: #FFD93D;
    padding: 0.5vw 1vw;
    border: 3px solid #000;
    display: inline-block;
    box-shadow: 4px 4px 0px #000;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8vw;
}

.skill-tag {
    background: #A8E6CF;
    color: #000;
    padding: 0.5vw 1vw;
    border: 3px solid #000;
    font-weight: 700;
    font-size: 1vw;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 3px 3px 0px #000;
}

.skill-tag:hover {
    background: #FF6B9D;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
}

.skills{
    z-index: 1;
    padding: 0 2.5%;
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
    font-size: 2.2vw;
    display: flex;
    justify-content: flex-start;
    gap: 3vw;
    overflow: hidden;
}

.projects_section{
    font-family: "Poppins", sans-serif;
    width: 100vw;
    min-height: auto;
    padding: 8vh 4vw;
    display: flex;
    flex-direction: column;
    gap: 4vw;
    background: #FFF5E1;
}

.projects-header {
    text-align: center;
    margin-bottom: 3vh;
}

.project_title{
    font-family: "Anton", sans-serif;
    font-size: 5vw;
    text-transform: uppercase;
    color: #000;
    text-shadow: 5px 5px 0px #FFD93D;
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 1vh;
}

.projects-subtitle {
    font-size: 1.5vw;
    color: #000;
    font-weight: 600;
    margin-top: 1vh;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.project-card {
    position: relative;
    background: #fff;
    border: 5px solid #000;
    box-shadow: 10px 10px 0px #000;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px #000;
}

.project-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3vw;
    padding: 3vw;
    background: linear-gradient(135deg, #fff 0%, #FFF5E1 100%);
}

.project-number {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #FF6B9D;
    color: #000;
    font-family: "Anton", sans-serif;
    font-size: 2.5vw;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #000;
    box-shadow: 5px 5px 0px #000;
    z-index: 5;
    transform: rotate(-10deg);
}

.projects_container{
    width: 100%;
    height: 80%;
    display: grid;
    grid-template-columns: 35vw 1fr;
    grid-gap: 1vw;
    margin-top: 2vh;
}

.sub_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
}

.project{
    position: relative;
    padding: 1vw;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,123,255,0.2);
}

.project img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.project:hover img {
    filter: brightness(0.3);
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5vw;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-title {
    font-family: "Anton", sans-serif;
    font-size: 1.8vw;
    margin-bottom: 1vh;
    text-transform: uppercase;
}

.project-description {
    font-family: "Poppins", sans-serif;
    font-size: 1vw;
    margin-bottom: 1.5vh;
    line-height: 1.4;
}

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

.project-tech-stack span {
    font-family: "Poppins", sans-serif;
    font-size: 0.8vw;
    background: rgba(255,255,255,0.2);
    padding: 0.3vw 0.6vw;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.project-tech-stack span:hover {
    background: rgba(255,255,255,0.4);
}

.project-large .project-title {
    font-size: 2.5vw;
}

.project-large .project-description {
    font-size: 1.2vw;
    width: 80%;
}

.projects_container span{
    font-family: "Poppins", sans-serif;
    z-index: 2;
    font-size: 5vw;
    position: absolute;
    bottom: 0;
}

.contact_section{
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFD93D 50%, #A8E6CF 100%);
    padding: 8vh 4vw;
    margin-top: 10vw; 
}

.contact-card {
    background: #fff;
    border-radius: 0;
    border: 6px solid #000;
    box-shadow: 16px 16px 0px #000;
    padding: 2.5vw 3vw;
    max-width: 600px;
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2vw;
    transform: rotate(-1deg);
}

.contact-card h2 {
    font-family: "Anton", sans-serif;
    font-size: 2vw;
    margin-bottom: 0.3vw;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #FFD93D;
    padding: 0.5vw 2vw;
    border: 3px solid #000;
    box-shadow: 6px 6px 0px #000;
    transform: rotate(2deg);
}

.contact-card p {
    font-size: 1vw;
    color: #000;
    margin-bottom: 0.5vw;
    text-align: center;
    font-weight: 600;
}

.contact-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    width: 100%;
    padding: 0.8vw 1vw;
    border-radius: 0;
    border: 3px solid #000;
    background: #FFF5E1;
    color: #000;
    font-size: 0.95vw;
    font-family: "Poppins", sans-serif;
    resize: none;
    font-weight: 600;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.contact-form textarea {
    grid-column: 1 / -1;
    width: 100%;
    padding: 0.8vw 1vw;
    border-radius: 0;
    border: 3px solid #000;
    background: #FFF5E1;
    color: #000;
    font-size: 0.95vw;
    font-family: "Poppins", sans-serif;
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
    font-weight: 600;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #FFD93D;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

.contact-form button {
    grid-column: 1 / -1;
    background: #FF6B9D;
    color: #000;
    border: 4px solid #000;
    border-radius: 0;
    padding: 0.8vw 2vw;
    font-size: 1vw;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 6px 6px 0px #000;
    text-transform: uppercase;
}

.contact-form button:hover {
    background: #A8E6CF;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #000;
}

.contact-info {
    width: 100%;
    margin-top: 0.8vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8vw;
    font-size: 0.9vw;
    color: #000;
    font-weight: 600;
}

.contact-info span {
    background: #FFF5E1;
    padding: 0.6vw 1vw;
    border: 3px solid #000;
    box-shadow: 3px 3px 0px #000;
    transition: all 0.2s;
}

.contact-info span:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
}

.contact-info a {
    color: #FF6B9D;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 700;
}

.contact-info a:hover {
    color: #000;
    text-decoration: underline;
    transform: translateX(4px);
}

/* Stats Section */
.stats-section {
    width: 100vw;
    padding: 8vh 4vw;
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 50%, #A8E6CF 100%);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3vw;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: #fff;
    padding: 3vw 2vw;
    border: 5px solid #000;
    box-shadow: 10px 10px 0px #000;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px #000;
}

.stat-number {
    font-family: "Anton", sans-serif;
    font-size: 4vw;
    color: #FF6B9D;
    margin-bottom: 1vh;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

.stat-label {
    font-family: "Poppins", sans-serif;
    font-size: 1.2vw;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.footer{
    width: 100vw;
    height: 40vh;
    padding: 0 10vw;
    display: grid;
    grid-template-columns: 10vw 10vw 5vw 5vw;
    gap: 12.5vw;
    align-items: center;
    font-size: 1vw;
    background: #FFF5E1;
    border-top: 6px solid #000;
    color: #000;
}

.footer_title{
    font-size: 5vw;
    font-family: "Anton", sans-serif;
    line-height: 1;
    color: #000;
    text-shadow: 4px 4px 0px #FFD93D;
}

.footer div{
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.footer div span{
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.footer div span:hover{
    text-decoration: underline;
    color: #FF6B9D;
    transform: translateX(4px);
}

.nav-link {
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.nav-link:hover {
    color: #FF6B9D;
    transform: translateY(-2px);
}


.project {
    position: relative;
    overflow: hidden;
}

.project:hover {
    transform: scale(1.05);
}

.project img {
    width: 100%;
    display: block;
}

.project:hover img {
    filter: brightness(0.7);
}

.project-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    margin: 0;
    z-index: 2;
}

.project:hover .project-title {
    opacity: 1;
}

.project span {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 2;
}

.project-block {
    width: 100%;
    margin: 3vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    width: 80vw;
    max-width: 1100px;
    background: #fff;
    border-radius: 0;
    border: 5px solid #000;
    box-shadow: 12px 12px 0px #000;
    padding: 2vw 2vw;
    transition: all 0.3s ease;
}

.project-row:hover {
    transform: translate(-4px, -4px);
    box-shadow: 16px 16px 0px #000;
}

.project-row.reverse {
    flex-direction: row-reverse;
}

.project-card .project-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #FF6B9D;
    background: #A8E6CF;
    transition: all 0.3s;
}

.project-card.featured .project-img {
    height: 100%;
    min-height: 300px;
}

.project-card .project-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img {
    box-shadow: 8px 8px 0px #FF6B9D;
}

.project-card:hover .project-img img {
    transform: scale(1.08) rotate(-2deg);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    color: #000;
}

.project-title-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.project-card .project-title {
    font-family: "Anton", sans-serif;
    font-size: 1.8vw;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #FFD93D;
    color: #000;
    padding: 0.5vw 1vw;
    border: 3px solid #000;
    display: block;
    width: 100%;
    transform: rotate(-1deg);
    box-shadow: 4px 4px 0px #000;
    margin-bottom: 2vw;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.project-card .project-title:hover {
    background: #FF6B9D;
    transform: rotate(-1deg) translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.project-card.featured .project-title {
    font-size: 2.5vw;
}

.project-description {
    font-family: "Poppins", sans-serif;
    font-size: 1vw;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
    flex-grow: 1;
}

.project-card.featured .project-description {
    font-size: 1.2vw;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
    margin: 1vw 0;
}

.detail-item {
    font-size: 1vw;
    line-height: 1.5;
    color: #000;
}

.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5vw;
    margin-bottom: 1.5vw;
    position: relative;
    z-index: 2;
}

.project-tech-tags span {
    background: #A8E6CF;
    color: #000;
    padding: 0.4vw 0.8vw;
    border: 2px solid #000;
    font-size: 0.85vw;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 3px 3px 0px #000;
    transition: all 0.2s;
}

.project-tech-tags span:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
    background: #FFD93D;
}

@media (max-width: 900px) {
    .theme-toggle, .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .theme-toggle {
        top: 15px;
        right: 15px;
    }

    .logo {
        font-size: 4vw;
    }

    .typing-container {
        font-size: 3.5vw;
        padding: 2vw 3vw;
        bottom: 5vh;
    }

    .section-title {
        font-size: 7vw;
    }

    .skills-container {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .skill-category h3 {
        font-size: 4vw;
    }

    .skill-tag {
        font-size: 2.8vw;
        padding: 1.5vw 2.5vw;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 5vw;
    }

    .stat-number {
        font-size: 8vw;
    }

    .stat-label {
        font-size: 3vw;
    }

    .toast {
        right: 10px;
        max-width: 90vw;
        font-size: 3vw;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    
    .project-card.featured {
        grid-template-columns: 1fr;
        padding: 5vw;
    }
    
    .project-card {
        padding: 4vw;
    }
    
    .project-number {
        font-size: 5vw;
        width: 50px;
        height: 50px;
    }
    
    .project_title {
        font-size: 8vw;
    }
    
    .projects-subtitle {
        font-size: 3.5vw;
    }
    
    .project-card .project-title {
        font-size: 4vw;
    }
    
    .project-card.featured .project-title {
        font-size: 5vw;
    }
    
    .project-description {
        font-size: 3vw;
    }
    
    .project-card.featured .project-description {
        font-size: 3.2vw;
    }
    
    .detail-item {
        font-size: 2.8vw;
    }
    
    .project-tech-tags span {
        font-size: 2.5vw;
        padding: 1vw 2vw;
    }
    
    .project-card .project-img {
        height: 180px;
    }
    
    .project-card.featured .project-img {
        min-height: 200px;
    }
    
    .contact-card {
        padding: 6vw 5vw;
        max-width: 95vw;
    }
    
    .contact-card h2 {
        font-size: 5vw;
    }
    
    .contact-card p {
        font-size: 3vw;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 3vw;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 3.2vw;
        padding: 2.5vw 3vw;
    }
    
    .contact-form textarea {
        grid-column: 1;
        min-height: 120px;
    }
    
    .contact-form button {
        grid-column: 1;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2vw;
        font-size: 2.8vw;
        margin-top: 2vw;
    }
    
    .contact-info span {
        padding: 2vw 3vw;
    }
}