/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

body {
    color: #fff;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

/* ===== BACKGROUND IMAGE ===== */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('AARON LUKE PORTFOLIO.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0.3;
}

/* ===== GLASS MORPHISM EFFECTS ===== */
.glass-nav, .glass-panel, .glass-card, .glass-button {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ===== HEADER STYLES ===== */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 12, 41, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* ===== GLASS NAVIGATION ===== */
.glass-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.glass-nav-button {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    
    /* Glassmorphism effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Updated active state with highlight effect */
.glass-nav-button.active {
    background: rgba(0, 255, 170, 0.3);
    color: #00ffaa;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.5);
    border: 1px solid rgba(0, 255, 170, 0.5);
    position: relative;
}

/* Add green highlight effect */
.glass-nav-button.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: #00ffaa;
    border-radius: 3px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.logo-container {
    width: 120px;
    height: 40px;
}

.logo-container img {
    height: 100%;
    width: auto;
}

/* Center the navigation */
@media (min-width: 769px) {
    .header-container {
        justify-content: center;
    }
    
    .logo-container {
        position: absolute;
        left: 5%;
    }
    
    .glass-nav {
        margin: 0 auto;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-container {
        position: static;
        margin-bottom: 10px;
    }
    
    .glass-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .glass-nav-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* Remove the outer border from the navigation */
.glass-nav {
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* But keep the glass effect on buttons */
.glass-button {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.glass-button.active {
    background: rgba(0, 255, 170, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #00ffaa;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.hero h2 {
    font-size: 5rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.hero h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
}

/* ===== ABOUT SECTION WITH IMAGE ===== */
.about-section {
    padding: 100px 10%;
    margin: 50px 0;
}

.about-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.profile-img:hover {
    transform: scale(1.02);
}

.about-content {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00ffaa;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.skills-section h3 {
    font-size: 1.8rem;
    margin: 30px 0 20px;
    color: #fff;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.skill-card {
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 170, 0.2);
}

.skill-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00ffaa;
}

.skill-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.skill-card p {
    font-size: 0.9rem;
    color: #ccc;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .profile-img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .glass-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero h3 {
        font-size: 1.8rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        padding: 80px 5%;
    }
    
    .about-container {
        padding: 30px;
    }
}