/* Basic Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #6d4c41;
}

/* Banner Image */
.banner-image {
  width: 100%;
  height: auto;
  margin-top: 60px; /* Adjust according to header height */
}

/* Main Content Styles */
.content-section {
  padding: 2em;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  color: #333;
  margin-bottom: 0.5em;
}

p {
  font-size: larger;
}

/* Footer Styles */
footer {
  background-color: #fff;
  color: #666;
  text-align: center;
  /*padding: 1em 0;*/
  padding: 0%;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Additional Styles for Text Above Banner */
.text-above-banner {
  text-align: center;
  background-color: #f4f4f4; /* or any color of your choice */
  margin-top: 80px; /* Adjust this value as needed */
}

/* Base styles for content containers */
.content-container {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.content-container .text-content,
.content-container .image-content {
  flex: 1; /* Each takes up half the container */
  padding: 15px;
}

/* Default order: Text on the left, Image on the right */
.content-container .text-content {
  order: 1;
}

.content-container .image-content {
  order: 2;
  text-align: right;
}

/* When 'image-left' class is applied: Image on the left, Text on the right */
.content-container.image-left .text-content {
  order: 2; /* Text second */
}

.content-container.image-left .image-content {
  order: 1; /* Image first */
  text-align: left;
}




/* Responsive image */
.content-container .image-content img {
  max-width: 100%;
  height: auto;
}

.featured-links {
  display: flex;
  justify-content: space-between; /* Distributes space evenly between the cards */
  padding: 20px;
  margin-bottom: 100px;
}

.link-card {
  width: calc(33% - 20px); /* Subtracts some space for padding/margins */
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Adds a subtle shadow for depth */
}

.link-card h3 {
  margin-top: 0;
}

.link-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #4A2E2F;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.link-button:hover {
  background-color: #6D4C41;
}
