/* Global Styles */
html, body {
    height: 100%;  /* Ensure the height is 100% for flex layout */
    margin: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;  /* Light background */
    color: #333;  /* Darker text for contrast */
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* Ensure full viewport height */
}

.container-fluid, .container {
    flex: 1;  /* Allow main content to grow and footer to stay at bottom */
}

/* Navbar */
.navbar-dark {
    background-color: #007bff;  /* Brighter blue for navbar */
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
}

/* Jumbotron Hero Section */
.jumbotron {
    background-color: #ffffff;  /* Bright white background */
    color: #333;  /* Darker text for contrast */
    text-shadow: none;  /* Remove text shadow for cleaner look */
}

.jumbotron h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #007bff;  /* Bright blue heading */
}

.jumbotron p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;  /* Light gray text */
}

/* Primary Button - Modern, sleek design */
.jumbotron .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);  /* Sleek gradient */
    border: none;  /* Flat design */
    color: white;  /* White text for contrast */
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;  /* Smooth transitions */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  /* Subtle shadow for depth */
}

.jumbotron .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f);  /* Darker gradient on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* Elevate the button on hover */
    transform: translateY(-2px);  /* Slight lift on hover */
}

/* Social Media Button */
.jumbotron .btn-outline-light {
    background-color: #007bff;  /* Blue background for visibility */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jumbotron .btn-outline-light:hover {
    background-color: white;
    color: #007bff;  /* Blue text on hover */
    border: 2px solid #007bff;  /* Blue border on hover */
}

/* Features Section */
.card {
    background-color: #ffffff;  /* Bright white background for the cards */
    border: 1px solid #ddd;  /* Light gray border */
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Soft shadow for depth */
}

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

.card-body {
    color: #333;  /* Darker text for readability */
}

/* Headings in Features Section */
.container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007bff;  /* Bright blue heading for sections */
}

.container p.lead {
    font-size: 1.1rem;
    color: #666;  /* Gray text for better contrast */
}

/* Footer */
footer {
    background-color: #f1f1f1;  /* Light gray background for footer */
    color: #333;  /* Darker text for contrast */
    margin-top: auto;  /* Ensure footer is always at the bottom */
    width: 100%;  /* Stretch footer across the entire width */
}

footer p {
    margin: 0;
    padding: 10px 0;
}

/* Footer at Bottom */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* Ensures the body takes up the full viewport height */
}

.container {
    flex: 1;
}

footer {
    flex-shrink: 0;
    position: relative;
    bottom: 0;
    left: 0;
}
