/* Hero section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background-color: #000;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

/* Blog styles */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin: 1.5rem 0;
}

.blog-sidebar {
    position: sticky;
    top: 20px;
}

/* for mission athena social icons */
.social-icon:hover {
    transform: scale(1.1);
}

/* more space above h3*/
h3 {
    margin-top: 1.1rem;
}

/* About page */
.profile-section img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Custom utility classes */
.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .hero-text {
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}