/* checkbox styling */
#form-checkbox {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin: 0 5px 0 0;
    cursor: pointer;
    accent-color: #19d1ff;

    /* modern browsers support */
}

.form-check-input:checked {
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
}

.form-check-input,
.form-check-label {
    transition: all 0.2s ease;
}

/* Link style inside label */
.form-check-label a {
    color: var(--bs-warning);
    text-decoration: underline;
}

.form-check-label a:hover {
    text-decoration: none;
}

/* popup for form */
.popup-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: var(--bs-primary);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.popup-content button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: white;
    color: var(--bs-primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* img team */
.img-team {
    object-fit: cover;
    width: 300px;
    height: 300px;
}

.reviews-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Form logic */
.contact-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-box {
    background-color: var(--bs-dark);
    border: 3px solid var(--bs-light);
    padding: 40px;
    border-radius: 8px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.contact-box h2 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 28px;
}

.contact-box p {
    font-size: 14px;
    color: #d8e1f3;
    margin-bottom: 30px;
}

form input,
form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid  var(--bs-light);
    color: white;
    padding: 12px;
    margin-bottom: 20px;
    outline: none;
}

form input::placeholder,
form textarea::placeholder {
    color: var(--bs-light);
}

form input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #2a2f8700 inset !important;

    /* your background color */
    -webkit-text-fill-color: white !important;

    /* your text color */
    transition: background-color 9999s ease-in-out 0s;

    /* hack to block reset */
}

form button {
    display: flex;
    margin: 0px auto 0px auto;
    align-items: center;
    background-color: transparent;
    color: var(--bs-light);
    border: 2px solid var(--bs-light);
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

form button:hover {
    background-color: var(--bs-light);
    color: var(--bs-primary);
}

/* text-shadow */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.atmosphere-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.atmosphere-button {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--bs-light);
    transform: translate(-50%,-50%);
}

.atmosphere-image {
    height: 400px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel-item {
    height: 200px;
}

.custom-price {
    background-color: var(--bs-dark);
    border-radius: 20px;
    overflow: hidden;
    color: var(--bs-light);
}

.services-custom {
    border-radius: 20px;
    box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.3);
    background-color: var(--bs-primary);
    color: var(--bs-light);
    transition: transform 0.5s ease;
    transition: background-color 0.5s ease;
}

.services-custom .services-prices {
    cursor: pointer;
    font-size: 20px;
    color: var(--bs-light);
}

.hero-poster {
    background-image: url('https://images.pexels.com/photos/866370/pexels-photo-866370.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1/0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-custom {
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    height: 400px;
    overflow: hidden;
    box-shadow: 5px 5px 15px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.card-custom:hover {
    transform: scale(1.01);
}

.card-custom-text {
    background-color: rgba(var(--bs-primary-rgb), 0.5);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    width: 100%;
    padding: 10px;
}

.toggler-btn-custom {
    all: unset;
    display: none;
    padding: 4px 7px 4px 7px;
    border-radius: 5px;
    border: 1px solid var(--bs-light);
}

.toggler-btn-custom svg {
    color: var(--bs-light);
}

@media (max-width: 1200px) {
    .atmosphere-img-1 {
        display: none;
    }
}

@media (max-width: 991px) {
    .toggler-btn-custom {
        display: inline-block;
    }
}

@media (max-width: 720px) {
    .atmosphere-img-2 {
        display: none;
    }
}






