/* ========== Two-Column Section ========== */
.two-column-section {
  display: flex;             /* Make columns appear side by side */
  justify-content: space-between;
  max-width: 1400px;         /* Constrain overall width (optional) */
  margin: 0 auto;            /* Center the container horizontally */
  padding: 60px;             /* Spacing around the content */
  gap: 2rem;                 /* Space between columns */
  box-sizing: border-box;
}

.left-column,
.right-column {
  background-color: #fff;    /* White background for columns */
  padding: 20px;
  border-radius: 5px;        /* Slightly rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.title {
  margin-bottom: 10px;
}

/* Flex ratios: 
   - Left column 2/3, right column 1/3 */
.left-column {
  flex: 2;
}
.right-column {
  flex: 1;
}

.inside-two-columns {
  display: flex;
}


.reservation-contact-item {
  display: flex;
  padding: 10px;
  align-items: center;
}
.reservation-contact-item div {
  align-items: center;
}

/* ========== Gallery Styles ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 1 column by default */
  gap: 20px;
  margin: 0 auto;
}

.gallery-item {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.price-item {
  margin-bottom: 10px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.information-item {
  margin: 10px;
}

.about-me {
  display: flex;
}
.about-me p {
  margin-right: 10px;
}

.text-image {
  width: 100%;
}
.text-image img {
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.manage-button {
  display: none; /* Toggle via JS if needed */
}

footer {
  background-color: #fff;
  color: black;
}
.footer-content {
  width: 90%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Wrapped images for text wrapping */
.wrapped-image-left {
  float: left;
  margin: 15px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.wrapped-image-right {
  float: right;
  margin: 15px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wrapped-content p {
  text-align: justify;
}

/* ========== Responsive Styles for Mobile ========== */
@media (max-width: 768px) {
  .two-column-section {
    flex-direction: column;
    padding: 20px;
  }
  
  .left-column,
  .right-column {
    flex: 1;
    margin-bottom: 20px;
  }
  
  /* Ensure wrapped images no longer float on mobile */
  .wrapped-image-left,
  .wrapped-image-right {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
    width: 100%;
  }
  .wrapped-content{
    text-align: center;
  }
  
  /* Gallery: Use a single column grid on mobile */
  .gallery {
    grid-template-columns: 1fr;
  }
}
