/* Main Stylesheet for Western Pool and Spa Clone */

body {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #0a0a0a;
}

.navbar-brand {
    font-weight: bold;
    color: #ffffff !important;
    /* White text for dark bg */
    font-size: 1.5rem;
}

.nav-link {
    color: #cccccc !important;
    font-weight: 700;
    /* text-transform: uppercase; */
    font-size: 1.15em;
    padding: 1em !important;
}

.nav-link:hover {
    color: #ffffff !important;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero-bg.jpg') no-repeat center center;
    /* Placeholder */
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-color: #007bff;
    /* Fallback */
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-btn {
    background-color: #fff;
    color: #007bff;
    padding: 10px 30px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-btn:hover {
    background-color: #f0f0f0;
    color: #0056b3;
}

/* Featured Categories */
.featured-section {
    padding: 60px 0;
    text-align: center;
}

.feature-box {
    padding: 0;
    border: 1px solid #eee;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: transform 0.3s;
    overflow: hidden;
    /* Ensure image corners respect border radius */
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    color: #0056b3;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #222;
    color: #aaa;
    padding: 40px 0;
    font-size: 0.9rem;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

footer h5 {
    color: #fff;
    margin-bottom: 0;
}