/*
  File: custom.css
  Author: [Your Name]
  Date: [Current Date]
  Description: Custom styles to override and enhance Bootstrap for the Forward Fitness Club.
*/

body {
    font-family: 'Roboto Slab', serif;
}

/* Jumbotron: Custom background image and styling */
.jumbotron {
    background-image: url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    border-radius: 0;
}

.jumbotron h1 {
    font-family: 'Francois One', sans-serif;
    font-weight: 700;
}

/* Navbar: Custom font for the brand */
.navbar-brand {
    font-family: 'Francois One', sans-serif;
    font-size: 1.5rem;
}

/* Card styles for a subtle hover effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Footer styling */
footer {
    background-color: #343a40; /* Bootstrap's dark color */
    color: #ccc;
    padding: 2rem 0;
    margin-top: 2rem;
}

footer a {
    color: white;
}

footer a:hover {
    color: #ddd;
    text-decoration: none;
}