/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-transform: 0;
    
}

:root{
    --primary: #336600; 
    --secondary: #99cc66;
    --light: #f5f5f5;
    --dark: #14141f;
    --yellow: #ffcc33;
    --orange: #ff9900;
    --grem: #907c46;
}
.contact-cover {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    top: -50px;
    z-index: -1;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-content {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-icon {
        font-size: 1.5rem;
    }
    .contact-cover{
        height: 90vh;
    }
}


/* Visual Steps for Reservation */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.circle1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    border: 5px solid #6d398b;
    border-top: 5px solid #f4e500;
    animation: spin 2s linear infinite;
}
.circle2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    border: 5px solid #e32322;
    border-top: 5px solid #008e5b;
    animation: spin 2s linear infinite;
}
.circle3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    border: 5px solid #2a71b0;
    border-top: 5px solid #f18e1c;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.circle-text{
    font-size: 2rem;
    color: var(--primary);
}
h5 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

p {
    color: var(--dark);
    margin-bottom: 1rem;
}

.icon-1 {
    color: #6d398b;
}
.icon-2 {
    color:#e32322 ;
}
.icon-3 {
    color: #2a71b0;
}

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

    .circle {
        width: 40px;
        height: 40px;
    }

    h5 {
        font-size: 1rem;
    }

    p {
        font-size: 0.875rem;
    }

    .fa {
        font-size: 1.5rem;
    }
}



/*Animación de persona caminando*/
#gif {
    
    background-size: cover;
    background-position-y: bottom;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 5px 5px 0 0;
}
.walking-person {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.walking-animation1,
.walking-animation2,
.walking-animation3 {
    position: absolute;
    bottom: 0;
    width: 400px;
    animation: walk linear infinite;
    margin-bottom: 0px;
}

.walking-animation1 {
    left: -100px;
    animation-duration: 8s;
}

.walking-animation2 {
    left: -100px;
    animation-duration: 9s;
}

.walking-animation3 {
    left: -100px;
    animation-duration: 10s;
}

@keyframes walk {
    0% {
        left: -200px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    80% {
        left: 100%;
        opacity: 0;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}


/* Reservation Form Styling */
.container-xxl {
    max-width: 1200px;
    margin:30px auto;
    padding:15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: var(--light);
    border-radius: 10px;
    margin-bottom: 10%;
}

h2, h3 {
    color: var(--primary);
}

h4 {
    color: white;
    background-color: var(--primary);
    margin: 5px;
    border-radius: 5px;
}

.text-center {
    text-align: center;
}

.mb-4, .mb-5, .mb-3 {
    margin-bottom: 1.5rem;
}

.progress {
    height: 1.5rem;
    background-color: var(--light);
}

.progress-bar {
    background-color: var(--primary);
}

.form-label {
    font-weight: bold;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid var(--dark);
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}

.form-check-input {
    margin-top: 0.3rem;
}

.form-check-label {
    margin-left: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 0.75rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark);
    color: white;
}
.btn-primary:hover::after{
    content: "👈";
    margin-left: 10px;
}
.row-reservation {
    
    margin: 20px;
    
    padding: 20px;

}


@media (max-width: 768px) {
    .container-xxl {
        padding: 10px;
        margin: 20px auto;
        width: 90%;
    }

    .form-group-date {
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 991px) {
    .container-xxl {
        padding: 0 10px;
    }

    .form-group-date {
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
    }

    .row-reservation {
        margin: 10px;
        padding: 15px;
    }
}


