
/* eleneelociaiaiaiaia.com/styles.css */

:root {
    --header-height: 4rem;
    --nav-link-height: 2rem;
    --card-border-radius: 0.75rem;
    --project-card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                         0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter var', system-ui, sans-serif;
    background-color: #000000;
    color: #ffffff;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    -webkit-text-size-adjust: 100%;
}

/* Navigation Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

nav {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    padding: 1rem 0;
}

nav a {
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    letter-spacing: 0.05em;
}

nav a:hover {
    transform: translateY(-2px);
    color: #ff708b;
}

/* Project Grid Enhancements */
.project-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    border-radius: var(--card-border-radius);
    box-shadow: var(--project-card-shadow);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.project-card img {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease;
}

/* Glow Effects for Interactive Elements */
.cta-button {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff708b, transparent);
    animation: floatGradient 4s ease-in-out infinite;
}

@keyframes floatGradient {
    0% { background-position: -300% }
    100% { background-position: 300% }
}

/* Footer Styles */
footer {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Custom SVG Filters */
.svg-aura {
    filter: brightness(1.2) contrast(1.1);
    transition: filter 0.3s ease;
}

.svg-aura:hover {
    filter: brightness(1.3) contrast(1.2);
}

/* Additional Animation Timings */
@keyframes scaleUp {
    0% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Focus State Enhancements */
*:focus {
    outline: 2px dotted #ff708b;
    outline-offset: 2px;
}
