/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    padding-bottom: 50px;
    font-family: Arial, sans-serif;
    height: 100%;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-nav li {
    margin-left: 20px;
}

.navbar-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-nav a:hover {
    background-color: #575757;
    border-radius: 5px;
    color: #ddd;
}

.auth-link {
    color: white;
    text-decoration: none;
}

.auth-link:hover {
    color: #ddd;
}

.user {
    margin-left: auto;
}

/* Hero Section */
.hero {
    background: url('{% static 'my_app/images/hero-bg.jpg' %}') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.hero p {
    font-size: 24px;
    margin: 20px 0;
}

.btn-primary {
    background-color: #969696;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #969696;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.feature {
    text-align: center;
    max-width: 300px;
}

.feature h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    color: #555;
}

/* Call to Action Section */
.cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #333;
    color: white;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-secondary {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.btn-secondary:hover {
    background-color: #218838;
}

.clear {
    clear: both;
    height: 60px;
}
