/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

header {
    background: #1e3a5f; /* Deep River Blue */
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #c8aa7c 3px solid; /* Amber/Gold Accent */
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

.hero-banner {
    min-height: 400px;
    background: url('images/hero-banner-placeholder.jpg') no-repeat 0 -200px; /* Replace with your image */
    background-size: cover;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 4px #000000;
}

.hero-banner h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-banner p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background: #c8aa7c; /* Amber/Gold */
    color: #1e3a5f;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.button:hover {
    background: #b08f5a;
}

section {
    padding: 20px 0;
    border-bottom: 1px #ddd solid;
}

section h2 {
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    margin-bottom: 10px;
}

.image-placeholder, .video-placeholder, .audio-placeholder {
    background-color: #ccc;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    border: 1px dashed #999;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
}

.story-block, .sighting-block {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-left: 5px solid #c8aa7c;
}

.story-block h3, .sighting-block h3 {
    margin-top: 0;
    color: #1e3a5f;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box; /* Important for width */
}

form textarea {
    min-height: 100px;
}

form input[type="submit"] {
    background: #1e3a5f;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.animated-gif {
    max-width: 250px; /* Or your desired max width */
    height: auto;
    display: block; /* To allow margin auto to center if needed */
    margin: 10px auto; /* Example: adds some space and centers it if its container allows */
    border-radius: 5px;
    border: 1px solid #ddd; /* Optional: adds a light border */
}

form input[type="submit"]:hover {
    background: #365f8a;
}

footer {
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    background-color: #333;
    text-align: center;
}