/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
}

/* Header styling */
header {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
}

nav ul li a:hover {
    background-color: #495057;
    border-radius: 5px;
}

/* Main content styling */
main {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Search section styling */
.search-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.search-section h2 {
    margin-bottom: 15px;
}

.search-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-section input[type="text"] {
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.search-section button {
    padding: 10px;
    background-color: #343a40;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-section button:hover {
    background-color: #495057;
}

/* Results section styling */
.results-section h3 {
    margin-bottom: 15px;
}

.results-section table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.results-section table th,
.results-section table td {
    padding: 12px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.results-section table th {
    background-color: #e9ecef;
}

/* Header */
.main-header {
    background-color: #2b2f33;
    padding: 20px 40px;
    display: flex;
    align-items: center;
}

.header-logo {
    max-width: 100%;
    height: 120px;
    width: auto; /* or any size you want */
}


/* Hero Banner */

.hero-banner {
    background-image: url('https://coral-finch-454763.hostingersite.com/background.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; /* prevents tiling */
    height: 500px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 40px auto 40px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.hero-overlay {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
}
.hero-overlay h1 {
    font-size: 2em;
    color: #343a40;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.1em;
    color: #495057;
    margin-bottom: 20px;
}


.hero-overlay form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-overlay input[type="text"] {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.hero-overlay button {
    background-color: #343a40;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero-overlay button:hover {
    background-color: #495057;
}

.advanced-search {
    font-size: 0.9em;
    margin-top: 10px;
    display: inline-block;
    color: #0069d9;
    text-decoration: none;
}

.advanced-search:hover {
    text-decoration: underline;
}

/* Info Cards (reuse earlier CSS) */
.info-cards {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 80px auto;
    max-width: 1000px;
}

.card {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.card h3 {
    color: #343a40;
    margin-bottom: 10px;
}

.card p {
    color: #495057;
}

/* Footer styling */
footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
