/* styles.css */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;

    height: 100%;
    overflow: hidden;

}

    /* Video como fondo */
    .video-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        z-index: -1;
    }

    .video-container video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100vw;
        min-height: 100vh;
        width: auto;
        height: auto;
        object-fit: cover;
        object-position: center center;
    }


.header-container {
    background-color: #4CAF50;
    color: white;
    padding: 16px 32px;
    width: 100%;
}

.header-title {
    text-align: center;
    text-shadow: 1px 1px 0 #444;
    margin: 0;
    padding: 16px 0;
}

.modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 20px;
}

/* Estilos para otros formularios (mantenidos) */
.form-container {
    background-image: url('../imagenplato.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

form {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* max-width: 400px; */
}

h2 {
    text-align: center;
}

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

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    opacity: 0.8;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Por defecto, muestra el título largo */
.desktop-title {
  display: block;
}

.mobile-title {
  display: none;
}

/* Para pantallas pequeñas (móviles), invierte las vistas */
@media (max-width: 768px) {
  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }
}