/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --background-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 110, 253, 0.9)),
                url('../images/brainerd-hero.jpg') center/cover no-repeat;
    padding: 100px 0;
    margin-bottom: 30px;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Sections */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 25px;
    text-align: center;
}

.card i {
    color: var(--primary-color);
}

/* Featured Businesses */
.featured-businesses {
    background-color: var(--background-light);
}

.business-card img {
    height: 200px;
    object-fit: cover;
}

/* Upcoming Events */
.event-card {
    margin-bottom: 20px;
}

.event-date {
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer */
footer {
    margin-top: 50px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

/* Navigation */
.navbar {
    padding: 15px 0;
}

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

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
}

/* Animations */
.card, .btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Custom Components */
.section-title {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto;
}
