/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

html {
    scroll-behavior: smooth;
}

/* BACKGROUND + DARK OVERLAY */
#bg {
    position: fixed;
    inset: 0;
    background: url("img/backgd.png") no-repeat center center fixed;
    background-size: cover;
    filter: blur(7px);
    z-index: -2;
    transition: filter 0.4s ease;
}

#bg-dark {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
    transition: background 0.4s ease;
}

/* NAVBAR */
#navbar {
    width: 100%;
    position: fixed;
    top: 0;
    padding: 12px 0;
    transition: background 0.3s ease;
    z-index: 10;
}

#navbar.scrolled {
    background: rgba(0,0,0,0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#navbar:hover {
    background: rgba(0,0,0,1);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO AREA */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-area img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo-area .name {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links li a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: #ff006e;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    transition: width 0.3s ease;
}

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

/* MOBILE MENU */
.menu-btn {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-btn:hover {
    color: #ff006e;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff006e, #8338ec);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff006e;
    color: #ff006e;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 5vw;
    flex-wrap: wrap;
    max-width: 1000px;
    justify-content: center;
}

/* PROFILE IMAGE */
.profile-img {
    width: 200px;
    max-width: 40vw;
    height: 200px;
    max-height: 40vw;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.5), 0 5px 20px rgba(0,0,0,0.5);
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* RIGHT TEXT */
.right {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 250px;
}

.username {
    font-size: 1.75rem;
    opacity: 0.85;
    min-height: 28px;
    white-space: nowrap;
    overflow: visible;
    color: #ff006e;
    font-weight: bold;
    border-right: 3px solid #ff006e;
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 49% {
        border-right-color: #ff006e;
    }
    50%, 100% {
        border-right-color: transparent;
    }
}

.fullname {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffffff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.role {
    font-size: 1.5rem;
    opacity: 0.9;
    color: #ff006e;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.7;
    font-style: italic;
}

/* CTA BUTTONS */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* SOCIAL LINKS */
.social-links, .footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a, .footer-socials a {
    transition: transform 0.3s ease;
}

.social-links a:hover, .footer-socials a:hover {
    transform: scale(1.3) rotate(5deg);
}

.social-links a img.social-icon, .footer-socials a img.social-icon {
    width: 28px;
    height: 28px;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.social-links a:hover img.social-icon, .footer-socials a:hover img.social-icon {
    filter: brightness(1.2) drop-shadow(0 0 10px #ff006e);
}

/* SECTIONS */
section {
    padding: 80px 15px;
    position: relative;
}

.section-container {
    max-width: 900px;
    margin: auto;
    color: white;
}

.section-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ABOUT SECTION */
.intro-text {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 110, 0.2);
    transition: all 0.3s ease;
}

.about-item:hover {
    background: rgba(255, 0, 110, 0.1);
    border-color: #ff006e;
    transform: translateY(-10px);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ff006e;
}

.about-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* COMING SOON SECTION */
.coming-soon {
    text-align: center;
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 0, 110, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.coming-soon:hover {
    background: rgba(255, 0, 110, 0.1);
    border-color: #ff006e;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.coming-soon h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff006e;
}

.coming-soon p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.coming-soon-social {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coming-soon-social p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.coming-soon-social .social-links {
    justify-content: center;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* SKILLS SECTION */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.skill-category h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff006e;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 0, 110, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.4), rgba(131, 56, 236, 0.4));
    border-color: #ff006e;
    transform: scale(1.05);
}

/* CONTACT SECTION */
.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 0, 110, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.contact-box:hover {
    background: rgba(255, 0, 110, 0.08);
    border-color: #ff006e;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    color: #ff006e;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.contact-item a:hover {
    color: #ff006e;
}

.contact-item p {
    color: white;
    font-size: 1.05rem;
}

/* CONTACT FORM SECTION */
.contact-form-section {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 0, 110, 0.2);
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
    margin-bottom: 30px;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.form-note {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* CONTACT SOCIAL SECTION */
.contact-social-section {
    text-align: center;
}

.contact-social-section p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.contact-socials a {
    background: rgba(255, 0, 110, 0.2);
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 0, 110, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.contact-socials a:hover {
    background: rgba(255, 0, 110, 0.4);
    border-color: #ff006e;
    color: #ff006e;
    transform: translateY(-2px);
}

/* FOOTER */
#footer {
    background: rgba(0,0,0,0.95);
    color: white;
    padding: 25px 15px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 0, 110, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    text-align: left;
    flex: 1 1 auto;
}

.footer-left p {
    margin: 0;
}

.footer-left .tagline {
    opacity: 0.7;
    font-size: 0.85rem;
    margin-top: 5px;
}

.footer-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3vw;
    }

    .username {
        font-size: 1.5rem;
    }

    .fullname {
        font-size: 2.5rem;
    }

    .role {
        font-size: 1.3rem;
    }

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

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .right {
        align-items: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0,0,0,0.95);
        display: none;
        text-align: center;
        padding: 20px 0;
        z-index: 9;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin-bottom: 15px;
    }

    .menu-btn {
        display: block;
    }

    .social-links, .footer-right {
        justify-content: center;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fullname {
        font-size: 2rem;
    }

    .section-container h2 {
        font-size: 1.8rem;
    }

    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-img {
        width: 150px;
        height: 150px;
    }

    .username {
        font-size: 1.25rem;
        min-height: 24px;
    }

    .fullname {
        font-size: 1.8rem;
    }

    .role {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-grid,
    .skills-container {
        grid-template-columns: 1fr;
    }

    .section-container h2 {
        font-size: 1.5rem;
    }

    .contact-box {
        padding: 25px 20px;
    }

    .contact-form-section,
    .contact-social-section {
        padding: 20px 0;
    }

    .contact-info-grid {
        gap: 20px;
    }

    .coming-soon {
        padding: 40px 20px;
    }

    .coming-soon-icon {
        font-size: 3rem;
    }

    .coming-soon h3 {
        font-size: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        width: 100%;
        justify-content: center;
    }
}
