/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fefefe;
    color: #222;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid #e0e0e0;
}

.navbar-brand {
    color: #8B4513 !important;
    font-size: 1.4rem;
}

.nav-link {
    color: #555 !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B4513 !important;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-top: -1rem;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Search Section */
.search-section {
    border: 1px solid #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    background-color: #8B4513;
    border-color: #8B4513;
}

.btn-primary:hover {
    background-color: #6b3410;
    border-color: #6b3410;
}

.btn-outline-primary {
    color: #8B4513;
    border-color: #8B4513;
}

.btn-outline-primary:hover {
    background-color: #8B4513;
    border-color: #8B4513;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

/* Footer */
footer {
    margin-top: 3rem;
    border-top: 1px solid #e0e0e0;
}