/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    padding-top: 60px; /* Add padding to prevent content from being hidden under navbar */
}

/* Navbar Styles */
.navbar {
    background-color: transparent;
    transition: background-color 0.5s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(44, 62, 80, 0.9) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Page Header Styles */
.container-fluid.bg-light.py-5 {
    padding-top: 6rem !important; /* Increase top padding for page headers */
    margin-top: -60px; /* Offset the body padding */
}

.display-4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Hero Section */
.banner-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: -60px; /* Offset the body padding to remove the gap */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 40vh;
}

/* Gallery Styles */
.gallery-filters {
    margin: 2rem 0;
}

.filter-btn {
    margin: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: none;
    background: var(--light-bg);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--secondary-color);
    color: white;
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .gallery-overlay { /* Added more specificity to only select overlay within gallery items*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.shorts-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-info {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        background-color: rgba(44, 62, 80, 0.9) !important;
    }
    
    .hero-content {
        padding-top: 30vh;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        justify-content: center;
    }
}
