/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fdfdfd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e8eaed;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c3e50;
    letter-spacing: -0.5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-brand h1:hover {
    color: #34495e;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #5a6c7d;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%),
        url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2106&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: #e8eaed;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #2c3e50;
    letter-spacing: -1px;
}

.about p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.focus-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.focus-item h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.focus-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c3e50;
    letter-spacing: -1px;
}

.contact > .container > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.contact-info {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.contact-button {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.contact-button:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #bdc3c7;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 120px 0 80px;
        background-attachment: scroll; /* Fix for mobile devices */
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about, .contact {
        padding: 80px 0;
    }
    
    .about h3, .contact h3 {
        font-size: 2rem;
    }
    
    .focus-areas {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .focus-item {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about h3, .contact h3 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-button {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* Easter Egg Styles */
.easter-egg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.easter-egg.show {
    opacity: 1;
    visibility: visible;
}

.easter-egg-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 2rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.easter-egg-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.easter-egg-content p {
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.easter-egg-content em {
    font-style: italic;
    color: #34495e;
    font-size: 1.1rem;
}

.easter-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 1.5rem;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7f8c8d;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f8f9fa;
    color: #2c3e50;
}