* {
  font-family: "Arvo", serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2b1b13;
}

h1 {
  font-weight: 700;
  font-size: 56px;
}

h2 {
  font-weight: 700;
  font-size: 48px;
}

h3 {
  font-weight: 700;
  font-size: 24px;
}

h4 {
  font-weight: 400;
  font-size: 16px;
}

h5 {
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
}

h6 {
  font-weight: 400;
  font-size: 14px;
}

/* Paragraph */
p {
  font-weight: 400;
  font-size: 18px;
  color: #2b1b13;
  margin-bottom: 30px;
}

/* Navigation */
nav {
  background-color: #f7e7df;
  box-shadow: 1px 1px 4px #2b1b13;
  position: fixed;
  width: 100%;
  padding: 20px 100px 10px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}

nav div {
  display: flex;
  gap: 10px;
}

nav div.active {
  display: block;
}

nav .toggle {
  cursor: pointer;
  display: none;
}

/* style the hamburger icon */
i.fa-bars {
  color: #2b1b13;
  font-size: 30px;
  align-self: center;
}

nav h1 {
  font-size: 40px;
}

nav a {
  font-weight: 400;
  font-size: 16px;
  color: #2b1b13;
  text-decoration: none;
  padding: 10px;
}

nav span a {
  background-color: #2b1b13;
  font-weight: 700;
  font-size: 24px;
  color: #f7f6f6;
  text-decoration: none;
  border-radius: 4px;
}

nav span a:hover {
  background-color: #aa5858;
  box-shadow: 1px 1px 4px #2b1b13;
}

/* Header */
header {
  background-color: #eec5c5;
  padding: 80px 100px 0;
  border: dotted 4px #f7f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header span {
  display: flex;
}

/* Gallery */
.gallery1,
.gallery2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.gallery1 img,
.gallery2 img {
  margin: 10px;
  box-shadow: 0 4px 4px -3px #2b1b13;
  border-radius: 10px;
}

.left-content {
  width: 100%;
  padding: 60px 20px;
}

.right-gallery {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.masonry-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.BookButton,
.BookButtonAlt {
  font-weight: 700;
  font-size: 24px;
  color: #f7f6f6;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
}

.BookButton {
  background-color: #2b1b13;
}

.BookButton:hover,
.BookButtonAlt:hover {
  background-color: #aa5858;
  box-shadow: 1px 1px 4px #2b1b13;
}

.BookButtonAlt {
  border: dotted 4px #f7f6f6;
}

.BookButtonAlt:hover {
  color: #2b1b13;
  border: dotted 4px #2b1b13;
}

/* Main Section */
main {
  display: flex;
}

main img {
  padding: 20px;
}

main span {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

main div {
  padding: 15px;
  width: 400px;
  flex-grow: 1;
  text-align: center;
}

/* Call to Action */
#CTA,
#Contact,
.Services {
  background-size: cover;
  padding: 200px 120px 240px;
  border: dotted 4px #f7f6f6;
}

#CTA {
  background-image: url(../images/CTA\ bkg.jpg);
}

#Contact {
  display: flex;
  flex-direction: column;
  background-image: url(../images/Contact\ bkg.jpg);
}

#Contact span {
  display: flex;
}

#Contact div {
  width: 100%;
  padding: 10px;
}

#Contact h3 {
  color: #2b1b13;
}

#Contact img {
  margin-bottom: 20px;
}

.ContactMethods {
    display: flex;
    flex-direction: row;
    gap: 50px;
    text-align: left;
  }

.Services {
  background-image: url(../images/Services\ bkg.jpg);
}

/* Footer */
footer {
  background-color: #f7e7df;
  padding: 20px;
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  align-items: center;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
}

footer i {
  font-size: 30px;
  color: #f7e7df;
}

.icons {
  align-self: center;
}

/* Spacing Utilities */
.spacer {
  margin-bottom: 40px;
}

.spacertop {
  margin-top: 120px;
  margin-bottom: 40px;
}

/* Layout */
.layout {
  display: flex;
}

.left-content {
  width: 50%;
  padding: 60px;
}

.right-gallery {
  width: 50%;
}

/* Gallery Wrapper */
.gallery-container {
  height: 100vh;
  overflow: hidden;
}

.masonry-gallery {
  display: flex;
  gap: 20px;
  height: 100%;
  padding: 10px;
}

/* Columns */
.column {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
}

.column::-webkit-scrollbar {
  display: none; /* Chrome */
}

/* Images */
.column img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 14px;
  display: block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.column img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hide {
  display: none;
}

@media (max-width: 768px) {
  nav div {
    display: none;
    flex-direction: column;
    position: absolute;
    flex: 100%;
    text-align: center;
    row-gap: 8px;
    top: 50px;
    left: 0;
    background-color: #f7e7df;
    width: 100%;
    z-index: 1;
  }

  nav div.active {
    display: flex;
  }

  nav .toggle {
    display: block;
    align-self: center;
  }

  .Services {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .ContactMethods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
  }

  nav h1 {
    font-size: 24px;
  }

  header h1 {
    font-size: 30px;
    width: 500px;
  }

  .right-gallery {
    display: none;
  }

  p {
    width: 500px;
  }
}
