/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* styles.css */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #d16767;
    color: #e7b3b3;
    padding: 1rem;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger {
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
}

.menu {
    display: none;
    flex-direction: column;
    align-items: center;
}

.menu.active {
    display: flex;
}

.menu a {
    text-decoration: none;
    color: #fff;
    padding: 1rem;
    background-color: #ce7171;
    width: 100%;
    text-align: center;
}

.menu a:hover {
    background-color: #611c1c;
}

/* Main Content Styles */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

#map {
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-media a {
    font-size: 2rem;
    color: #ffffff;
    text-decoration: none;
}

.social-media a:hover {
    color: #555;
}

/* Contact Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

textarea {
    resize: vertical;
    height: 150px;
}

button {
    background-color: #751010;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #9e4141;
}

/* Footer Styles */
footer {
    background-color: #8c0e0e;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

.logo {
    position: absolute; /* Position it relative to the header */
    top: 1rem; /* Adjust as needed */
    left: 1rem; /* Adjust as needed */
    height: 65px; /* Adjust size as needed */
    /* Optionally, you can set width if you want a fixed size */
}

.image-section {
    display: flex;
    justify-content: flex-end; /* Align images to the right */
    align-items: center; /* Vertically center the images */
    height: 70vh; /* Adjust the height as needed */
    padding: 0 1rem; /* Optional: Add padding */
    position: relative;
}

/* Container to align image to the side */
.image-container {
    position: relative;
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: flex-end; /* Align images to the right */
}

/* Style the image */
.side-image {
    max-width: 150%;
    height: auto;
    margin-bottom: 3rem; /* Optional: Add spacing between images */
}

.logo2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #692929;
    margin-left: auto; /* Push hamburger menu to the right */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.text-container {
    flex: 1; /* Allow the text to take up remaining space */
}

/* Text styles */
.text-container h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.text-container p {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
}

body {
    background-color: #4d1414;
}

/* Map section */
.map-section {
    display: flex;
    justify-content: center; /* To keep the h2 above the map */
    align-items: center; /* Center the iframe horizontally */
    padding: 2rem;
    gap: 1rem;
}

.map-container {
    flex: 2; /* The map takes up more space than the images */
    display: flex;
    justify-content: center;
}

/* Make the map responsive */
.map-section iframe {
    max-width: 600px; /* Set a maximum width for the map */
    width: 100%;
    height: 450px; /* Same height as the images */
    border: 0;
}

.side-image {
    flex: 1; /* Allow the images to take up equal space on both sides */
    display: flex;
    justify-content: center;
}

.side-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 450px; /* Match the height of the map */
}

.image-container2 {
    display: flex; /* Use flexbox to align the images side by side */
    justify-content: center; /* Center them horizontally */
    gap: 10rem; /* Add space between the images */
    padding: 5rem;
}

.image-container2 img {
    max-width: 100%; /* Ensure the images are responsive */
    width: 300px; /* Set a specific width for the images */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure images fit within their box */
}

