/* Fonts */
:root {
    --primary-color: #008f7a;
    --secondary-color: #ff6f61;
    --accent-color: #ffd700;
    --dark-bg: #2c3e50;
    --light-bg: #f8f9fa;
    --text-primary: #333;
    --text-secondary: #666;
    --font-main: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Custom Colors */
.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; color: white; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; color: white; }
.bg-gradient-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #005f52 100%);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #007665;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 143, 122, 0.4);
    color: white;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-dark .nav-link {
    color: #333 !important;
    font-weight: 500;
}

.navbar-dark .nav-link:hover, .navbar-dark .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    height: 85vh;
    background: url('https://images.unsplash.com/photo-1586616424536-6963e6cb8798?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    margin-top: -76px; /* Offset navbar height */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.z-index-1 { z-index: 1; }

.search-box {
    max-width: 700px;
    border-radius: 50px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

/* Animations */
.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Cards */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    border-radius: 15px;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-img-wrapper {
    overflow: hidden;
    height: 250px;
    position: relative;
}

.card-img-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-hover:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.badge-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Section Styling */
.section-header h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.ls-2 { letter-spacing: 2px; }

/* Footer */
.hover-white:hover { color: white !important; }

/* Responsive */
@media (max-width: 768px) {
    .display-3 { font-size: 2.5rem; }
}
