/* Combined CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #f8f8f8;
}

.logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2a9d8f;
}

/* Poster Image */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Ensures the video area has height */
    overflow: hidden;
    background-color: #000; /* fallback background */
}

.video-wrapper video,
.video-wrapper #videoPlaceholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#videoPlaceholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}
/* ---------- */

main img, main video {
    width: 100%;
    height: auto;
    display: block;
}

.center-article {
    padding-top: 14px;
}
.center-article h1 {
    color: #000000;
	font-size: 2.5em;
    text-align: center;
    margin: 0;
}
.center-article h2 {
	color: #000000;
	font-size: 2em;
    text-align: center;
    margin: 0;
}
.center-article p {
    color: #000000;
    padding-right: 30px;
    padding-left: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    padding-top: 30px;
}

.title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    width: 100%;
}

.columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.column {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

h2 {
    margin-top: 10px;
    font-size: 1.5em;
}

p {
    margin-top: 5px;
    font-size: 1em;
    color: #555;
}

/* Carousel Styles */
.image-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
	background: #f8f8f8;
}

.carousel {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.carousel-images {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item {
    position: absolute;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    width: 100%;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
}

.image-title {
    margin-top: 5px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.carousel-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.carousel-dots span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots span.active {
    background: #333;
}

/* Contact Form Styles */
.right-column {
    width: 30%;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #ccc;
}

button {
    background-color: #bccf7b;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

p a {
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .right-column {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .columns {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 2em;
    }

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        padding-top: 10px;
    }
}

/* Pricing Section Styles from bin-cleaning.css */
/* Pricing
-------------------------*/
.pricing {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 2rem;
}
.card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: auto;
    background-color: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25), 0 5px 5px rgba(0, 0, 0, 0.22);
    padding: 2rem;
    margin: 1rem;
    transition: all 0.2s ease-in;
}

.card-wrapper:hover{
    transform: scale(1.1);
}

.card-header {
    margin: 1rem;
    text-align: center;
}
.card-header h2 {
    color: #000000;
}

.card-wrapper:hover .card-header> h2{
    transform: scale(1.1);
    color: #000000;
    letter-spacing: 2;
}
.card-header >img {
    width: 450px;
    display: block;
    margin: 0 auto;
}

.card-detail {
    width: 100%;
}

.card-detail > p {
    color: #000000;
	padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    border-bottom: 1px solid #d5d5d5;
}

.check {
    color: #000000;
}

.nocheck {
    color: #ec615b;
}

.card-detail > p:hover {
    background-color: #d5d5d5;
}

.card-price {
    display: flex;
    align-items: flex-start;
    margin: 1rem;
}

.card-price > p {
    font-size: 3rem;
    font-weight: 800;
	color: #000000;
}

.card-price > p > sub {
    font-size: 1rem;
}

.card-button {
    padding: 0.6rem 3rem ;
    border: 2px solid #000000;
    background-color: #000000;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 50ms ease-in;
}

.card-button:hover {
    border: 2px solid #000000;
    background-color: transparent;
    color: #000000;
    font-weight: 800;
}

/* Booking Form Styles */
body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f7f7f7;
}

h2 {
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.radio-group {
  margin-bottom: 10px;
}

.radio-group label {
  display: inline-block;
  margin-right: 20px;
}

button {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #bccf7b;
  color: black;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #a9bd6f;
}

.site-footer {
    background-color: #bccf7b; /* light green */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-logo {
    height: 80px;
    max-width: 160px;
}

.footer-text p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}