/* General Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --price-color: #28a745;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    padding-top: 80px; /* Add padding to account for fixed header */
}

/* Price Display */
.price-display {
    color: var(--price-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-display::before {
    content: "$";
    margin-right: 2px;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    padding-top: 80px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighten overlay and ensure it never blocks clicks */
    background: rgba(255, 255, 255, 0.12);
    z-index: 0;
    pointer-events: none;
}

/* Ensure hero content sits above overlay */
.hero-section .hero-content {
    position: relative;
    z-index: 1;
}

/* Reviews */
.review-card {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.3s ease;
}

.review-card .rating {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.review-card .customer-name {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-contact a {
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Alert Messages */
.alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out forwards, fadeOut 0.5s ease-in forwards 5s;
    max-width: 350px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Fix for header affecting top parts */
.content-wrapper {
    padding-top: 76px; /* Adjust based on navbar height */
}

/* Team member cards */
.team-card {
    text-align: center;
    margin-bottom: 30px;
}

.team-card .team-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Filter reset button */
.filter-reset {
    margin-left: 10px;
}