/*
Author: Rebecca Ghand
Date: 2/20/25
File Name: Styles.CSS
*/

/* CSS Reset */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* Header */
.mobile {
    text-align: center;
    background-color: #4d3319;
    padding: 15px 0;
    color: white;
    position: relative;
}

.mobile a img {
    display: block;
    margin: 0 auto;
    width: 150px; /* Adjust size as needed */
    max-width: 80%;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background-color: #2a1f14;
    padding: 10px 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li {
    padding: 10px;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

.mobile-nav.show {
    display: block;
}

main {
    padding: 20px;
}

h1, h2 {
    color: #4d3319;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

img {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 10px;
}

.about-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
}

.contact-info {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
}

.contact-info p {
    font-weight: bold;
}

.contact-info a {
    color: #4d3319;
    text-decoration: none;
    font-size: 1.2em;
}

footer {
    background-color: #4d3319;
    color: white;
    padding: 10px;
    font-size: 0.9em;
}

footer a {
    color: white;
    text-decoration: none;
}
