body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    background: #D32F2F; /* Dark red */
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start; /* Adjusted for better logo positioning */
}

.logo img {
    margin: 0 20px; /* Adjusted margins for logo */
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex; /* Ensures horizontal alignment of navbar items */
    margin: 0; /* Removes default margin */
    align-items: center; /* Centers items vertically */
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    color: blue; /* Hover effect for links */
}

/* Dropdown container - style it to fit into the nav bar */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button on hover */
.dropdown:hover > a {
    background-color: #D32F2F; /* Dark red to match the theme */
}

section {
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

#home {
    background-color: #FFCDD2; /* Light red */
}

#about {
    background-color: #ffffff; /* White, with contrasting text color needed */
    color: #333; /* Dark text color for readability */
}

#location, #services {
    background-color: #B71C1C; /* Deep red */
    color: #ffffff; /* White text for contrast */
}

#products, #camp {
    background-color: #E57373; /* Soft red */
}

#contact {
    background-color: #F44336; /* Bright red */
}

footer {
    background: #333; /* Dark grey to blackish tone */
    color: #fff;
    text-align: center;
    padding: 10px 10px;
    width: 100%;
    bottom: 0;
}
.map-container iframe {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    border: none;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #333;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #D32F2F;
    color: white;
}

