/* Global Styles */
body {
    font-family: 'Outfit', sans-serif;
    color: #f8f9fa;
    background-color: #0F0F10;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

section {
    position: relative;
    overflow: hidden;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(45deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-bg {
    background-color: #161618;
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
}

.navbar-scrolled {
    background-color: rgba(15, 15, 16, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('../images/26.jpg') no-repeat center center/cover;
    position: relative;
    margin-top: -80px; /* Offset fixed navbar */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,15,16,0.3) 0%, rgba(15,15,16,0.9) 100%);
    z-index: 0;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

/* About Section */
.experience-badge {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Team Section */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5) !important;
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.team-card:hover .team-img {
    border-color: #fff;
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-item {
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

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

/* Contact/Footer */
.map-container iframe {
    filter: grayscale(100%) invert(90%); /* Dark map */
}
.map-container {
    border: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .display-1 { font-size: 3rem; }
}