/* Base Styles and Variables */
:root {
    --primary-bg: #000000;
    --primary-text: #ffffff;
    --accent-color: #FFD700;
    --secondary-bg: #111111;
    --tertiary-bg: #222222;
    --transition-speed: 0.3s;
    --glow-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-text);
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.underline {
    height: 4px;
    width: 60px;
    background-color: var(--accent-color);
    margin: 0 auto;
    position: relative;
}

.underline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.section-header:hover .underline::before {
    transform: scaleX(2);
}

section {
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: 2px solid var(--accent-color);
}

.primary-btn:hover {
    box-shadow: var(--glow-shadow);
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    box-shadow: var(--glow-shadow);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.95);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links ul {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hamburger {
    display: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
}

.glitch-text {
    position: relative;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    }
    to {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.7), 0 0 35px rgba(255, 215, 0, 0.5);
    }
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    position: relative;
    box-shadow: var(--glow-shadow);
    animation: float 6s ease-in-out infinite;
}

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

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1.5s ease-in-out infinite;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-text);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-text {
    font-size: 0.8rem;
    color: var(--primary-text);
    letter-spacing: 2px;
}

/* About Section */
.about-section {
    background-color: var(--secondary-bg);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.skill-category {
    flex: 1;
    min-width: 250px;
}

.skill-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background-color: var(--tertiary-bg);
    color: var(--primary-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
}

.skill-tag:hover {
    background-color: var(--primary-bg);
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow);
}

/* Projects Section */
.projects-section {
    background-color: var(--primary-bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: var(--secondary-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

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

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
}

.project-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.project-tag {
    background-color: var(--tertiary-bg);
    color: var(--primary-text);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all var(--transition-speed) ease;
}

.project-tag:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

/* Vistoro Section */
.vistoro-section {
    background-color: var(--secondary-bg);
}

.vistoro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vistoro-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.vistoro-responsibilities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.responsibility {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background-color: var(--tertiary-bg);
    border-radius: 10px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.responsibility:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

.responsibility i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.responsibility h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
}

.vistoro-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Instagram Section */
.instagram-section {
    background-color: var(--primary-bg);
}

.instagram-content {
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.instagram-profile {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.profile-header i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 1rem;
}

.profile-header h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
}

.instagram-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: all var(--transition-speed) ease;
}

.instagram-link:hover {
    transform: scale(1.05);
    text-shadow: var(--glow-shadow);
}

.instagram-profile p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Music Section */
.music-section {
    background-color: var(--secondary-bg);
}

.music-content {
    max-width: 1000px;
    margin: 0 auto;
}

.music-text p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.music-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.music-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background-color: var(--tertiary-bg);
    border-radius: 10px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

.music-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.music-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
}

/* Art Gallery Section */
.art-section {
    background-color: var(--primary-bg);
}

.art-content {
    max-width: 1000px;
    margin: 0 auto;
}

.art-text p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.art-placeholder {
    aspect-ratio: 1 / 1;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.art-placeholder:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

.art-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.art-placeholder p {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0;
}

.art-note {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 2rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-bg);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-text p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    background-color: var(--tertiary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

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

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--tertiary-bg);
    color: var(--primary-text);
    font-size: 1.5rem;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow);
}

/* Footer */
.footer {
    background-color: var(--tertiary-bg);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: #ccc;
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Hidden Heart Easter Egg */
.hidden-heart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 0;
    opacity: 0;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 1000;
}

.hidden-heart:hover,
.hidden-heart.active {
    font-size: 2rem;
    opacity: 1;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        margin-top: 2rem;
    }

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

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

    .skills,
    .vistoro-responsibilities,
    .music-showcase {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

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

    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }

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

    .hamburger {
        display: block;
        z-index: 1000;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--accent-color);
    }

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

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--accent-color);
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .about-text p,
    .vistoro-text p,
    .music-text p,
    .art-text p,
    .contact-text p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .projects-grid,
    .art-gallery {
        grid-template-columns: 1fr;
    }

    .vistoro-links {
        flex-direction: column;
        gap: 1rem;
    }
}