* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: white;
}

/* ---------- VIDEO DE FONDO ---------- */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ajusta el video al tamaño de la pantalla */
    z-index: -2;
    /* detrás de todo */
}

/* ---------- CAPA SEMITRANSPARENTE ---------- */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.108);
    /* ajusta el nivel de opacidad aquí */
    z-index: -1;
    /* encima del video, pero debajo del contenido */
}

/* ---------- NAVEGACIÓN ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    background: rgba(234, 234, 234, 0.25);
    backdrop-filter: blur(10px);
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;

}

nav a:hover {
    border-bottom: 3px solid white;
}

/* ---------- CONTENIDO CENTRAL ---------- */
.content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    max-width: 600px;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s;
}

.btn-primary:hover {
    background: white;
    color: black;

}

.gallery {
    padding-top: 4rem;
    min-height: 100vh;
}

.grid {
    display: grid;
    background-color: white;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.grid-item {
    position: relative;
    overflow: hidden;
    width: 450px;
    height: min-content;
}

.grid-item .card-header {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 90%;
    top: -100px;
    transition: all 0.3s;
}

.grid-item:hover .card-header {
    top: 10px;
}

.grid-item .card-left-info {
    position: absolute;
    left: -500px;
    background: rgba(234, 234, 234, 0.25);
    backdrop-filter: blur(10px);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 50%;
    height: 100%;
    transition: all 0.5s;
}

.grid-item:hover .card-left-info {
    left: 0px;
}

.grid-item .card-footer {
    position: absolute;
    bottom: -40px;
    display: flex;
    justify-content: end;
    width: 90%;
    transition: all 0.3s;
}

.grid-item:hover .card-footer {
    bottom: 10px;
}

.blur-btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    width: 5rem;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s;
}

.blur-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.grid-item img {
    width: 450px;
    border-radius: 30px;
}

.grid-item button.like-btn {
    width: 3rem;
    height: 3rem;
    background: none;
    padding: .5rem;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    transition: all 0.5s;
}

.grid-item button.like-btn:hover {
    background: rgba(101, 101, 101, 0.779);
}

.color-black {
    color: black;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

h2.gallery-title {
    display: inline;
    font-size: 3rem;
    text-align: start;
    margin-bottom: 2rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    font-weight: bold;
    border-radius: 15px;
    border: rgb(127, 127, 127) 1px solid;
    gap: .25rem;
    color: black;
    padding: 0.75rem 1rem;
}

.bg-white {
    background-color: white;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.col {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
}

.justify-between {
    justify-content: space-between;
}

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

.color-white {
    color: white;
}

.gap-1\/2 {
    gap: .5rem;
}

.Disponible {
    color: green;
}

.Reservado {
    color: orange;
}

.Vendido {
    color: red;
}

.mt-2 {
    margin-top: 2rem;
}