/* Maestro's Purrsonal Stylesheet */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #eee;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #e94560;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3rem;
    color: #e94560;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #f8b500;
    font-style: italic;
}

nav {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-bottom: 2px solid rgba(233, 69, 96, 0.5);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav li {
    padding: 0;
}

nav li:before {
    content: none;
    animation: none;
}

nav a {
    color: #f8b500;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #e94560;
}



main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(233, 69, 96, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(233, 69, 96, 0.4);
}

h2 {
    color: #f8b500;
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e94560;
    padding-bottom: 0.5rem;
}

ul {
    list-style: none;
    padding-left: 1rem;
}

li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

li:before {
    content: "🐾";
    position: absolute;
    left: 0;
}

.fun-facts li:before {
    content: "😸";
}

.skills li:before {
    content: "⚡";
}

.hobbies li:before {
    content: "🎯";
}

#skills li:before {
    content: none;
    animation: none;
}

#skills li {
    padding-left: 0;
}



footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-top: 3px solid #e94560;
    margin-top: 2rem;
}

footer p {
    color: #f8b500;
    font-size: 1.1rem;
}

/* Paw print animation */
@keyframes pawPrint {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

section:hover li:before {
    animation: pawPrint 1s ease-in-out infinite;
}

/* Responsive design */
@media (max-width: 768px) {

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }
    
    main {
        padding: 1rem;
    }
    
    section {
        padding: 1rem;
    }
}
