/* Styles for body, headings, and background */

body {
    font-family: helvetica, Arial, sans-serif;
    color: #333;     /* Dark gray text color for better readability */
    background-image: url("images/background/SummerCloud.jpg");
    width: 100%;
    height: 100%;
    margin: 10;
    padding: 0;
    line-height: 1.3;
}

h1 {
    font-family: helvetica, Arial, sans-serif;
    color: #4112a6; /* Purple color for headings */
}
h2, h3, h4, h5, h6 {
    font-family: helvetica, Arial, sans-serif;
    color: #4112a671; /* Lighter Purple color for h2... headings */
}

#booking {
    font-family: helvetica, Arial, sans-serif;
    color: #4112a6; /* Purple color for headings */
    text-align: left;
    padding: 5px;
    justify-content: top;
}

#PhotoGallery {
    font-family: helvetica, Arial, sans-serif;
    color: #4112a6; /* Purple color for headings */
    text-align: left;
    padding: 5px;
    justify-content: top;
}

.footer {
    font-family: helvetica, Arial, sans-serif;
    color: #0d0d0d8b; /* Dark gray text color for footer */
    font-size: 12px;
    padding-right: 20px;
    text-align: right;
}
 
.gallery img {
    width: 100px; /* Small thumbnails */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}


/* Navigation arrows */

.arrow {
    width: 40px; 
    height: 40px;
    transform: translateY(-50%);
    font-size: 2rem;
    line-height: 2rem;
    color: rgb(242, 242, 242);
    background: rgba(0, 0, 0, 0.1);
    background-size: auto;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0px;
    z-index: 1001;
}

.arrow.left {
    left: 20px;
    line-height: 20px;
    z-index: 1001;
}

.arrow.right {
    right: 20px;
    line-height: 20px;
    z-index: 1001;
}

.arrow:hover {
    background-color: rgb(35, 35, 35);
    color: rgb(222, 222, 222);
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Centred Div */

.parent {
    display: flex;
    justify-content: center; /* Centers horizontally */
  }

.child {
    width: 50%; /* Adjust width as needed */
    text-align: center; /* Centers text inside the child div */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery {
        max-width: 100%; /* Full width on smaller screens */
    }

    .arrow {
        font-size: 1.5rem; /* Smaller arrows on smaller screens */
        padding: 8px;
    }
}

.ImageStrip img {
    width: 100px; /* Small thumbnails */
    height: 75px; /* Fixed height for uniformity */
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.images {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between images */
    margin-top: 20px;
    width: 100px; /* Small thumbnails */
    height: 75px; /* Fixed height for uniformity */
    border-radius: 10px;
}

/* Carousel */
.viewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    object-fit: cover;
    border-radius: 10px;
    margin: 0px;
    height: auto;
    z-index: 1000;
}

.image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    z-index: 1000;
}

.button {
    position: absolute;
    top: 50%;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    background-color: rgb(222, 222, 222, 0.5);
    cursor: pointer;
    z-index: 1001;
}

.button:hover {
    background-color: rgb(35, 35, 35);
    color: rgb(222, 222, 222);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.counter {
    position: absolute;
    bottom: 2%;
    left: 50%;
    font-size: 10px;
    color: rgb(10, 10, 10);
    text-align: center;
    width: 40px;
    margin: 0;
    background-color: rgb(222, 222, 222, 0.5);
    background-size: auto;
    border-radius: 20px;
    padding: 5px 5px;
    border: 1px solid rgb(35, 35, 35,0.5);
    cursor: pointer;
    z-index: 1001;
}

.counter:hover {
    background-color: rgb(35, 35, 35);
    color: rgb(222, 222, 222);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.overlayright {
    position: absolute;
    top: 50%;
    text-align: right;
    color: lightgrey;
    width: 100%;
    margin: 0;
}

.overlayleft {
    position: absolute;
    top: 50%;
    color: lightgrey;
    text-align: left;
    width: 100%;
    margin: 0;
}
    
.overlaytally {
    position: absolute;
    bottom: 2%;
    color: #f4f2f2;
    text-align: center;
    width: 100%;
    margin: 0;
}