:root {
    --primary: #6b8cae;
    --dark: #0a0a0a;
    --light: #f8f8f8;
    --gray: #333;
    --primary-transparent: rgba(107, 140, 174, 0.3);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100%;
    width: auto;
    max-width: 120px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--light);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--primary);
}

.fullscreen-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}


.fullscreen-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.fullscreen-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.fullscreen-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0.5rem auto;
    line-height: 1.6;
}

#hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--light);
}

#hero h1 span {
    color: var(--primary);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.about-section {
    padding: 8rem 10% 4rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    min-width: 100px;
    max-width: 200px
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    max-height: 250px;
    height: auto;
    border-radius: 5px;
}

.skills h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.skills-list li {
    background-color: var(--primary-transparent);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.contact-section {
    padding: 8rem 10% 4rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.map-placeholder {
    flex: 1;
    min-width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.map-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.contact-method {
    margin: 2rem 0;
}

.contact-link {
    display: flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.contact-link i {
    margin-right: 1.5rem;
    font-size: 2rem;
}

.contact-link:hover {
    transform: translateX(10px);
}

.contact-availability {
    margin-top: 3rem;
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0.8;
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    position: relative;
}

.text-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.text-link:hover::after {
    width: 100%;
}

.main-footer {
    background-color: rgba(10, 10, 10, 0.9);
    color: var(--primary);
    padding: 3rem 0 0;
    border-top: 1px solid var(--gray);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray);
    margin-top: 2rem;
}

.footer-bottom p {
    color: var(--primary);
    opacity: 0.7;
    font-size: 0.9rem;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    transform: rotate(45deg);
    margin: -10px;
    animation: scrollDown 2s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
}

.particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--dark);
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links li a {
        margin-left: 0;
        font-size: 1.5rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .fullscreen-section h2 {
        font-size: 2rem;
    }

    .fullscreen-section h3 {
        font-size: 1.8rem;
    }

    .logo {
        height: 35px;
    }

    .contact-link {
        font-size: 1.4rem;
    }

    .contact-link i {
        font-size: 1.6rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .map-placeholder {
        order: -1;
        margin-bottom: 2rem;
    }
}

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

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

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

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}