/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* === BODY === */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
}

/* === TITLE === */
h1 {
    font-size: 2rem;
    margin-bottom: 100px;
    text-align: center;
    font-family: 'Comic Sans MS', cursive;
}

/* === CONTAINER === */
.container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 30px;
    width: 100%;
    max-width: 600px;
}

/* === FORM STEPS === */
.form-step {
    display: none;
    flex-direction: column;
    gap: 15px;
    animation: fade 0.3s ease-in-out;
}

.form-step.active {
    display: flex;
}

@keyframes fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === LABELS & TEXT === */
label {
    font-weight: 500;
    margin-top: 10px;
    font-family: 'times new roman', serif;
}
p {
    font-family: 'Courier New', Courier, monospace;
}
h3 {
    font-family: Garamond, serif;
    font-size: 2.3rem;
    margin-bottom: 15px;
    text-align: center;
}
h4 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.2rem;
}

p, h3, h4 {
    margin-bottom: 10px;
    line-height: 1.5;
}

.required {
    color: red;
    font-weight: bold;
    margin-left: 2px;
}


/* === INPUTS === */
input[type="text"],
input[type="tel"]
{
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
}
select {
  appearance: none; /* Remove default arrow */
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px 40px 10px 12px; /* right padding keeps space for arrow */
  font-size: 1rem;
  font-family: 'Courier New', Courier, monospace;
  background-image: url("data:image/svg+xml,%3Csvg fill='black' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  color: #fff;
  background-position: right 20px center; /* ← move this number higher to shift left */
  background-size: 16px;
  cursor: pointer;
  transition: border 0.2s ease-in-out;
}
#roomNoContainer {
  margin-top: 10px;
}

#roomNo{
    margin-top: 15px;
}

select option {
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', Courier, monospace;
}

/* === RADIO & CHECKBOX === */
input[type="radio"],
input[type="checkbox"] {
    transform: scale(1.1);
    align-self: start;
    cursor: pointer;
}

.radio-group,
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label,
.checkbox-group label {
    margin-top: -4.5px;
    white-space: nowrap;
    margin-left: -14px;
}




/* === BUTTONS === */
button,
input[type="submit"] {
    margin-top: 2px;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.button-group {
    display: flex;
    justify-content: flex-end;
    gap: 380px;
    margin-top: 20px;
}



/* === RESPONSIVE === */
@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 20px;
    }

    input[type="text"],
    input[type="tel"],
    select {
        font-size: 0.95rem;
    }
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 1rem;
  z-index: 999;
}


.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 30px;
  width: 100%;
  max-width: 600px;
}

.popup-content h2 {
  margin-bottom: 1rem;
  color: #0a7f56;
}

.popup-content button {
  margin-top: 1.5rem;
  padding: 0.5rem 1.2rem;
  background-color: #0a7f56;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.popup-content button:hover {
  background-color: #075e40;
}

.hidden {
  display: none;
}
