/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #838483;
  font-family: Arial, sans-serif;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background-color: #b19493;
  flex-wrap: wrap; /* optional for responsiveness */
}

.stacked-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #b19493;
  padding: 2em;
  gap: 1.5em;
}

.grid-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2em;
  padding: 2em 2em 1em;
}

.header-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.header-logo {
  height: 240px;
  width: auto;
}

.header-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1em;
}

/* Search Bar */
.header-search {
  display: flex;
  gap: 0.5em;
  width: 100%;
}

.header-search input {
  flex: 1;
  padding: 0.5em 1em;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #888;
}

.header-search button {
  padding: 0.5em 1em;
  font-size: 1em;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Title */
.header-title h1,
.site-title {
  font-family: 'Dancing Script', cursive;
  color: black;
  font-size: 2.5em;
  text-align: center;
  line-height: 1;
}

/* Navigation */
.header-nav nav {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  justify-content: center;
}

.header-nav nav a {
  text-decoration: none;
  font-size: 1.1em;
  color: black;
  padding: 0.4em 0.8em;
  transition: all 0.3s ease;
}

.header-nav nav a:hover {
  color: white;
  background-color: #396e94;
  border-radius: 5px;
}

/* Image Row */
.image-row-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 2em;
}

.image-row {
  background-color: #b19493;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1.5em;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  min-height: 350px;
}

.image-row h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2em;
  color: black;
  margin-bottom: 1em;
}

/* Hero Message */
#hero-msg {
  background-color: #b19493;
  padding: 2em;
  margin-top: 2em;
  border-radius: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#hero-msg h3 {
  font-size: 1.6em;
  color: black;
  margin-bottom: 0.5em;
}

.button-box a.book {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 0.75em 1.5em;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1em;
}

/* Layout for side-by-side content */
.row-content {
  display: flex;
  gap: 2em;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-wrap: nowrap;
}

.row-content img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.row-content p {
  font-size: 1em;
  color: #333;
  margin: 0;
  max-width: 400px;
}

/* Footer Styles */
.site-footer {
  background-color: #b19493;
  color: black;
  padding: 2em;
  margin: 3em auto;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 1000px;
  text-align: left;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left p {
  margin: 0.5em 0;
}

.footer-left a {
  color: black;
  text-decoration: underline;
  margin: 0 0.5em;
}

.footer-left a:hover {
  color: white;
  background-color: #396e94;
  padding: 0.2em 0.4em;
  border-radius: 5px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-shrink: 0;
}

.footer-right img {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  transition: transform 0.3s;
}

.footer-right img:hover {
  transform: scale(1.1);
}

/* Footer Specific */
footer {
  padding: 1em;
  text-align: center;
  color: var(--headline-color-on-color);
  background-color: var(--paragraph-background-color);
}

footer > h1, header > h2 {
  color: var(--headline-color-on-color);
}
