/* CSS Reset */
body, header, nav, main, footer, img, h1, h2, h3, ul, li, p, figure, figcaption, table, th, td, form, label, input, textarea, button {
    margin: 0;
    padding: 0;
    border: 0;
}

/* General Styles */
body {
    background-color: #f6eee4;
    font-family: Verdana, Arial, sans-serif;
    color: #2a1f14;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #4d3319;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d1bfa7;
}

/* Header Styles */
header {
    position: relative;
    background-image: url("baby-hawk.jpg"); /* Replace with correct path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

header a {
    text-decoration: none;
    position: relative;
    z-index: 1;
}

header img {
    display: none;
}

header a h1 {
    font-size: 3.5em;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

header a p {
    font-size: 1.8em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Navigation Styles */
nav {
    background-color: #2a1f14;
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #f6eee4;
    font-size: 18px;
    font-weight: bold;
    padding: 5px;
}

nav a:hover {
    color: #d1bfa7;
}

/* Main Content Styles */
main {
    padding: 20px;
}

h2 {
    color: #2a1f14;
    text-align: center;
    margin-bottom: 20px;
}

/* Gallery Styles */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

figure {
    margin: 0;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

figcaption {
    padding: 10px;
    background-color: #f6eee4;
    color: #2a1f14;
    font-size: 0.9em;
}

/* Contact Page Styles */
#contact {
    text-align: center;
}

/* About Page Styles */
.about {
    text-align: center;
}

.about img {
    margin: 0 auto;
}

/* Index Page Styles */
#home {
    text-align: center;
}

#home img {
    margin: 0 auto;
}

/* Footer Styles */
footer {
    background-color: #2a1f14;
    color: #f6eee4;
    padding: 15px;
    text-align: center;
    position: relative;
    width: 100%;
}

/* Partnership Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Contact Form Styles */
#contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f6eee4;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact-info, #additional-info {
    margin-bottom: 20px;
}

#contact-info h3, #additional-info h3 {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: calc(100% - 12px);
    padding: 6px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    height: 100px;
}

button[type="submit"] {
    background-color: #4d3319;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

button[type="submit"]:hover {
    background-color: #d1bfa7;
    color: #2a1f14;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        height: 250px;
    }

    header a h1 {
        font-size: 2.5em;
    }

    header a p {
        font-size: 1.2em;
    }

    nav li {
        margin: 0 10px;
    }

    nav a {
        font-size: 16px;
    }

    #contact-form {
        padding: 10px;
    }

    #contact-info, #additional-info {
        width: 100%;
    }
}

/* Tablet View */
@media (min-width: 769px) and (max-width: 1024px) {
    #contact-form {
        max-width: 80%;
    }

    #contact-info, #additional-info {
        width: 48%;
        display: inline-block;
        vertical-align: top;
    }
}

/* Desktop View */
@media (min-width: 1025px) {
    #contact-form {
        max-width: 60%;
    }

    #contact-info, #additional-info {
        width: 48%;
        display: inline-block;
        vertical-align: top;
    }
}

