:root {
    --primary-color: #006A4E;
    --secondary-color: #2E8B57;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    padding-top: 80px;
}

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
}

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

.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.package-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card img {
    height: 200px;
    object-fit: cover;
}

.package-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

footer {
    background-color: #1a1a1a;
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

/* Admin Dashboard Styles */
.sidebar {
    background: var(--primary-color);
    min-height: 100vh;
    padding: 20px;
}

.sidebar .nav-link {
    color: white !important;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.sidebar .nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.admin-content {
    padding: 20px;
}

.dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Team Section Styles */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

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

.team-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card .card-body {
    padding: 1.5rem;
}

.team-card .social-links a {
    transition: color 0.3s ease;
}

.team-card .social-links a:hover {
    color: #b8860b !important;
}

.team-card .card-title {
    color: #1a1f3c;
    font-weight: 600;
}

/* Islamic Pattern */
.islamic-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 50%, transparent 9px, #fff 10px, #fff 15px, transparent 16px) 0px -10px,
        radial-gradient(circle at 100% 50%, transparent 9px, #fff 10px, #fff 15px, transparent 16px) 0px -10px,
        radial-gradient(circle at 50% 0%, transparent 9px, #fff 10px, #fff 15px, transparent 16px) -10px 0px,
        radial-gradient(circle at 50% 100%, transparent 9px, #fff 10px, #fff 15px, transparent 16px) -10px 0px;
    background-size: 40px 40px;
    opacity: 0.03;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 50px 0;
    }
    
    .navbar-brand img {
        height: 40px;
    }
}
