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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ead9ca;
    color: #333;
}

/* Fixed Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(234, 217, 202, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    position: absolute;
    left: 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #86a69d, #759488);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(134, 166, 157, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(134, 166, 157, 0.4);
}

.logo:hover {
    opacity: 0.8;
}

.logo-name {
    font-weight: 400;
}

.logo-suffix {
    font-size: 13px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.nav-item:hover {
    background: rgba(134, 166, 157, 0.2);
    transform: translateY(-2px);
    color: #475350;
}

.nav-item.active {
    background: linear-gradient(135deg, #86a69d, #759488);
    color: white;
    box-shadow: 0 4px 15px rgba(134, 166, 157, 0.3);
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(134, 166, 157, 0.05) 0%, rgba(242, 178, 99, 0.05) 100%);
    pointer-events: none;
}

#portfolio::before {
    background: linear-gradient(135deg, rgba(242, 178, 99, 0.08) 0%, rgba(134, 166, 157, 0.08) 100%);
}

#about::before {
    background: linear-gradient(135deg, rgba(134, 166, 157, 0.06) 0%, rgba(71, 83, 80, 0.06) 100%);
}

#skills::before {
    background: linear-gradient(135deg, rgba(242, 178, 99, 0.07) 0%, rgba(236, 175, 170, 0.07) 100%);
}

#blog::before {
    background: linear-gradient(135deg, rgba(134, 166, 157, 0.05) 0%, rgba(242, 178, 99, 0.08) 100%);
}

#contact::before {
    background: linear-gradient(135deg, rgba(71, 83, 80, 0.08) 0%, rgba(134, 166, 157, 0.05) 100%);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 430px;
    background-color: #f2b263;
    margin-bottom: 80px;
    transition: all 0.3s ease;
}

.hero-section:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 474px;
    height: 430px;
    background-image: url('public/image-1.png');
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.hero-text {
    position: absolute;
    top: 48px;
    left: 503px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px) brightness(1.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 1px 0 0 rgba(255, 255, 255, 0.32),
                inset 0 -1px 1px rgba(0, 0, 0, 0.13),
                inset -1px 0 1px rgba(0, 0, 0, 0.11);
}

.hero-content {
    width: 717px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: white;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.hero-button {
    position: absolute;
    top: 286px;
    left: 553px;
    width: 230px;
    height: 50px;
    background-color: #86a69d;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
}

.hero-button:hover {
    background-color: #759488;
}

/* Hobbies Section */
.hobbies-section {
    padding-bottom: 63px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 36px;
    background: linear-gradient(135deg, #ecafaa, #86a69d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    line-height: 36px;
    letter-spacing: -1px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ecafaa, #86a69d);
    border-radius: 2px;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
}

.hobby-card {
    background-color: #f2b263;
    border-radius: 50%;
    height: 294px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.hobby-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: #f0a855;
}

.hobby-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #475350;
    margin-bottom: 16px;
    line-height: 28px;
    letter-spacing: 0.5px;
}

.hobby-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #486960;
    line-height: 1.5;
    padding: 0 16px;
}

/* Page Titles */
.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 36px;
    background: linear-gradient(135deg, #ecafaa, #86a69d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ecafaa, #86a69d);
    border-radius: 2px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: linear-gradient(135deg, #f2b263, #f0a855);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    min-height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.portfolio-card:hover::before {
    left: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.portfolio-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #475350;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.portfolio-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #486960;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.tag {
    background-color: #86a69d;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tag:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #759488;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.tech-stack {
    margin: 20px 0;
}

.tech-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #475350;
    margin-bottom: 12px;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #475350;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tech-item i {
    font-size: 16px;
}

.portfolio-links {
    display: flex;
    gap: 12px;
}

.portfolio-link {
    background-color: #86a69d;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.portfolio-link i {
    font-size: 16px;
}

.portfolio-link:hover {
    background-color: #759488;
    transform: translateY(-2px);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.about-card {
    background: linear-gradient(135deg, #f2b263, #f0a855);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    background-color: #f0a855;
}

.about-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #475350;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #486960;
    line-height: 1.8;
}

/* Skills Section */
.skills-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.skills-category {
    background: linear-gradient(135deg, #f2b263, #f0a855);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.skills-category::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #86a69d, #759488);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.skills-category:hover::after {
    transform: scaleY(1);
}

.skills-category:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #f0a855;
}

.skills-category-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #475350;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #486960;
    font-weight: 500;
}

.skill-bar {
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skill-level {
    height: 100%;
    background: linear-gradient(90deg, #86a69d, #759488, #86a69d);
    border-radius: 10px;
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
}

.skill-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: skillShine 2s infinite;
}

@keyframes skillShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.soft-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.soft-skill-badge {
    background-color: #86a69d;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.soft-skill-badge:hover {
    transform: translateY(-5px) rotate(-2deg);
    background-color: #759488;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.blog-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background-color: #f2b263;
    color: #475350;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
    background-color: #86a69d;
    color: white;
    border-color: #759488;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background-color: #f2b263;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #475350;
    line-height: 1.4;
    flex: 1;
}

.blog-category-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.blog-category-tag.networking {
    background-color: #86a69d;
    color: white;
}

.blog-category-tag.web {
    background-color: #d4a574;
    color: white;
}

.blog-category-tag.security {
    background-color: #c9827d;
    color: white;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #486960;
}

.blog-date, .blog-read-time {
    font-family: 'Podkova', serif;
    font-weight: 600;
}

.blog-excerpt {
    font-family: 'Podkova', serif;
    font-size: 16px;
    color: #486960;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.blog-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.4);
    color: #475350;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.blog-read-more {
    color: #86a69d;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: #759488;
    transform: translateX(4px);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #f2b263;
    letter-spacing: -0.5px;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #486960;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    background: linear-gradient(135deg, #f2b263, #f0a855);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-method:hover {
    transform: translateX(-8px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.contact-icon {
    font-size: 18px;
    color: #475350;
    width: 20px;
    text-align: center;
}

.contact-method-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #475350;
    letter-spacing: 0.5px;
    margin: 0;
}

.contact-method-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: #486960;
}

.contact-form-container {
    background: linear-gradient(135deg, #f2b263, #f0a855);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #475350;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #333;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #86a69d;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background-color: #86a69d;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    letter-spacing: 1px;
}

.form-submit:hover {
    background-color: #759488;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #475350;
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #ead9ca;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .fixed-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .nav-item {
        font-size: 16px;
        padding: 6px 12px;
    }

    .container {
        padding: 0 30px;
    }

    .hero-section {
        height: auto;
        padding-bottom: 100px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 350px;
    }

    .hero-text {
        position: relative;
        top: 20px;
        left: 0;
        width: 100%;
        padding: 20px;
    }

    .hero-content {
        width: 100%;
        font-size: 24px;
    }

    .hero-button {
        position: relative;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 auto;
        width: 200px;
    }

    .hobbies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .soft-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fixed-nav {
        padding: 12px 15px;
    }

    .logo {
        font-size: 18px;
        text-align: center;
    }

    .nav-item {
        font-size: 14px;
        padding: 5px 10px;
    }

    .container {
        padding: 0 15px;
    }

    .page-title,
    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-content {
        font-size: 18px;
    }

    .hero-button {
        width: 160px;
        height: 45px;
        font-size: 16px;
    }

    .hobbies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hobby-card {
        height: 250px;
        padding: 16px;
    }

    .portfolio-card {
        min-height: auto;
        padding: 20px;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-links {
        flex-direction: column;
        gap: 8px;
    }

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

    .soft-skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }

    .nav-item {
        font-size: 12px;
        padding: 4px 8px;
    }

    .container {
        padding: 0 12px;
    }

    .page-title,
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .hero-content {
        font-size: 16px;
    }

    .hero-button {
        width: 140px;
        height: 40px;
        font-size: 14px;
    }

    .portfolio-image {
        height: 150px;
    }

    .about-card,
    .portfolio-card,
    .skills-category,
    .contact-form-container {
        padding: 16px;
    }
}