:root{
    --background-color:white;
    --font-color:black;
    --font-color-white:white;
    --black-hover-color:rgba(0, 0, 0, 0.469);
    --white-hover-color:#ffffff;
    --bottums-color: #025959;
    --sections-bakcground-color:#f9f9f9;
    
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    margin-top: 100px;
}



.gallery-section {
    flex: 0 0 65%;
    margin-right: 20px;
}

.main-image {
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.main-image img {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

.gallery-container {
    width: 100%;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
}

.thumbnail {
    flex: 0 0 25%;
    padding: 5px;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 3px;
    transition: opacity 0.3s;
}

.thumbnail img:hover {
    opacity: 0.8;
}

.details {
    flex: 0 0 30%;
}

h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--bottums-color);
}

.description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.book-now {
    background-color: var(--bottums-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 30px;
}

.book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category, .tag {
    margin-bottom: 10px;
}

.category a, .tag a {
    color: var(--bottums-color);
    text-decoration: none;
}

.category a:hover, .tag a:hover {
    text-decoration: underline;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    
    max-height: 80%;
}

.lightbox-caption {
    margin: auto;
   
    text-align: center;
    color: white;
    padding: 10px 0;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover {
    color: #bbb;
}

@media (max-width: 992px) {
    .gallery-section {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .details {
        flex: 0 0 100%;
    }
    
    .thumbnail {
        flex: 0 0 25%;
    }
}

@media (max-width: 576px) {
    .thumbnail {
        flex: 0 0 33.333%;
    }
}


  .title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .price-note{
    font-size: 14px;
    color: #444;
    margin-bottom: 40px;
  }

  

 

 

  

  .day-box {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .day-title {
    font-weight: bold;
    margin-bottom: 10px;
  }

  .highlight {
    color: var(--bottums-color);
    text-decoration: none;
    font-weight: bold;
  }
  .contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f6f6f6;
    padding: 40px 20px;
    text-align: center;
  }

  .contact-box {
    width: 100%;
    
    margin-bottom: 30px;
  }

  .contact-box i {
    font-size: 24px;
    margin-right: 10px;
    vertical-align: middle;
  }

  .contact-title {
    font-size: 16px;
    color:var(--bottums-color);
    margin: 0 0 10px;
    font-weight: bold;
  }

  .contact-content {
    font-size: 14px;
    color: #333;
  }

  .contact-content span {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
  }

  @media (min-width: 768px) {
    .contact-section {
      flex-direction: row;
      justify-content: space-around;
      align-items: flex-start;
      padding: 40px 0;
    }

    .contact-box {
      margin-bottom: 0;
    }
  }


  .seasons-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.seasons-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seasons-title h2 {
    font-size: 28px;
    margin: 0;
    padding: 0 15px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.title-first{
    font-size: 28px;
}

.seasons-title::before {
    
    font-size: 32px;
    margin-right: 10px;
}

.seasons-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.seasons-table thead {
    background-color: var(--bottums-color);
    color: white;
}

.seasons-table th {
    text-align: left;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.seasons-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eaeaea;
}

.seasons-table tbody tr {
    background-color: white;
    transition: background-color 0.3s ease;
}

.seasons-table tbody tr:hover {
    background-color: #f9f9f9;
}

.seasons-table tbody tr:last-child td {
    border-bottom: none;
}
