body {
    font-family: 'Poppins', sans-serif;
    padding-top: 70px; /* To offset the fixed navbar */
}

/* Hero Section FOR HOME PAGE */
.hero-section {
    position: relative;
    height: 90vh;
    background-image: url('../images/hero-bg.jpg'); /* THIS IS THE IMAGE FOR THE HOME PAGE */
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    font-weight: 700;
}

/* Animal Cards */
.animal-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Package Cards */
.package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.package-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
}

/* Footer */
footer a#admin-login-btn {
    color: #6c757d;
    text-decoration: none;
    border-color: #6c757d;
}

footer a#admin-login-btn:hover {
    color: #fff;
    background-color: #295881;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
/* assets/css/style.css */

.page-header {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: for parallax effect */
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}
/* --- Customer Panel Styles --- */
.customer-panel-container {
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sidebar .nav-link {
    color: #adb5bd;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background-color 0.2s, color 0.2s;
}

.sidebar .nav-link:hover {
    background-color: #495057;
    color: #fff;
}

.sidebar .nav-link.active {
    background-color: #ffc107;
    color: #212529;
    font-weight: bold;
}

.main-content {
    background-color: #f8f9fa;
}
/* --- Admin Panel Styles --- */
.admin-panel-container { min-height: 100vh; }
.sidebar .nav-link.active { background-color: #0d6efd; color: #fff; } /* Primary blue for admin */