/* Add Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Roboto:wght@400;500&display=swap');

body {
  background-image: url('/static/pubbackground.jpg');
  background-color: #faf8f5; /* A warm off-white background */
  color: #333; /* Darker text for better readability */
  font-family: 'Roboto', sans-serif; /* Roboto for body text */
}

header, footer {
  background-color: #4a3729; /* Deep brown */
  color: white;
}

.columns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.column {
  flex: 1;
  max-width: 50%;
}

.content-box {
  background-color: #fff8f0; /* Soft cream background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 1px solid #ddd; /* Subtle border */
}

h1, h2, h3, h4 {
  font-family: 'Merriweather', serif; /* Merriweather for headings */
  color: #5a432e; /* Dark brown for headings */
}

.container {
  margin: 20px auto; /* centers the container */
  max-width: 1200px; /* makes the container full width */
}

.review {
  background-color: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.review img {
  width: 100%; /* ensures the image takes the full width of its container */
  height: auto; /* maintains the aspect ratio */
  max-width: 400px;
  display: block; /* prevents inline spacing issues */
  margin: 0 auto 20px;
}

.review h2 {
  color: #333;
  font-family: 'Arial', sans-serif;
}

.score-highlight {
  font-size: 1.5em;
  color: #DAA520; /* gold color */
  font-weight: bold;
}

.rating-section p {
  margin: 0;
  font-weight: bold;
}

.rating-section span {
  display: block; /* ensures the description is on a new line */
}

hr {
  margin: 10px 0;
}
/* Responsive adjustments */
@media (max-width: 991px) {
  .row > [class^="col-"] {
    padding-bottom: 10px; /* Adds space at the bottom of each column when stacked */
  }
}

#map {
  height: 400px; /* Ensure the map height is adequate */
  border-radius: 5px; /* Slightly rounded corners for the map */
}
