/* lodge.component.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  
  .container-hotel-overview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  .content-wrapper {
    display: flex;
    flex-wrap: wrap; /* ✅ allows text to wrap below image */
    gap: 2rem;
    align-items: flex-start;
  }
  
  .image-section {
    flex: 0 0 35%; /* fixed width for image column */
    max-width: 35%;
  }
  
  .lodge-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    min-height: 250px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    display: block;
  }
  
  .text-section {
    flex: 1 1 100%; /* ✅ force text below if taller than image */
    max-width: calc(58% - 2rem);
  }
  
  .lodge-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
    margin: 1rem 0 1.5rem 0;
  }
  
  .description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
  
    white-space: normal; /* Collapses extra whitespace, allows natural wrapping (change to pre-line if you need to preserve line breaks) */
    overflow-wrap: break-word; /* Breaks long words/phrases only if they can't fit on a line */
   
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .container {
      padding: 2rem 1rem;
    }
  
    .content-wrapper {
      flex-direction: column; /* ✅ stack naturally on mobile */
    }
  
    .image-section,
    .text-section {
      flex: 1 1 100%;
      max-width: 100%;
    }
  
    .lodge-title {
      font-size: 2.5rem;
    }
  
    .lodge-image {
      max-height: 300px;
      min-height: 200px;
    }
  }
  