body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.gradient-background {
    background: linear-gradient(135deg, #8b174d 60%, #c796ac 100%);
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.map-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 1;
    filter: contrast(1.2) brightness(1.5);
}

.content-wrapper {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.number-box {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    height: 200px;
    width: 25vw;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(2px);
}

.number {
    font-size: 100px;
    font-weight: 300;
    color: #8b174d;
}

.container {
    width: 100%;
}

.numbers-container {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.message-container {
    min-height: 20vh;
    display: flex;
    align-items: start;
}

/* Make sure boxes stay side by side on mobile */
@media (max-width: 768px) {
    .row {
        /* flex-wrap: nowrap;
        overflow-x: auto; */
    }
    .col-4 {
        flex: 0 0 auto;
    }
    .number-box {
        max-width: 120px;
    }
}

.message {
    font-size: 24px;
    text-align: center;
    margin-top: 2rem;
    color: #c796ac;
    position: relative;
    z-index: 3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.waiting-list-link {
    color: #fff;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.4s ease;
    background: transparent;
    border-radius: 4px;
}

.waiting-list-link::before,
.waiting-list-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    transition: width 0.4s ease, height 0.4s ease;
    opacity: 0;
    border-radius: 4px;
}

.waiting-list-link::before {
    top: -1px;
    right: -1px;
    border-top-right-radius: 4px;
    border-top: 1px solid #c796ac;
    border-right: 1px solid #c796ac;
}

.waiting-list-link::after {
    bottom: -1px;
    left: -1px;
    border-bottom-left-radius: 4px;
    border-bottom: 1px solid #c796ac;
    border-left: 1px solid #c796ac;
}

.waiting-list-link:hover {
    background: rgba(199, 150, 172, 0.15);
}

.waiting-list-link:hover::before,
.waiting-list-link:hover::after {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    opacity: 1;
}

/* Contact Form Styles */
.form-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.form-title {
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(199, 150, 172, 0.3);
    color: #fff;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    color: #fff;
    margin-bottom: 0.5rem;
}

.invalid-feedback {
    color: rgba(255, 255, 255, 0.8);
}

.btn-submit {
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 8px 24px;
    transition: all 0.4s ease;
    position: relative;
    font-weight: 500;
    border-radius: 4px;
}

.btn-submit::before,
.btn-submit::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    transition: width 0.4s ease, height 0.4s ease;
    opacity: 0;
    border-radius: 4px;
}

.btn-submit::before {
    top: -1px;
    right: -1px;
    border-top-right-radius: 4px;
    border-top: 1px solid #c796ac;
    border-right: 1px solid #c796ac;
}

.btn-submit::after {
    bottom: -1px;
    left: -1px;
    border-bottom-left-radius: 4px;
    border-bottom: 1px solid #c796ac;
    border-left: 1px solid #c796ac;
}

.btn-submit:hover {
    background: rgba(199, 150, 172, 0.15);
}

.btn-submit:hover::before,
.btn-submit:hover::after {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    opacity: 1;
}

.form-control.is-invalid {
    border-color: rgba(255, 255, 255, 0.8);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ffffff'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffffff' stroke='none'/%3e%3c/svg%3e");
    padding-right: calc(1.5em + 0.75rem);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid {
    border-color: rgba(255, 255, 255, 0.8);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23ffffff' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    padding-right: calc(1.5em + 0.75rem);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.form-control.is-valid:focus {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/* Add a new class for the 404 page container */
.container-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.validation-summary-errors {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 2rem;
}

.validation-summary-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.validation-summary-errors li {
    color: #8b174d;
    font-size: 14px;
    padding-left: 24px;
    position: relative;
}

.validation-summary-errors li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #8b174d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.header-logo {
    height: auto;
    width: 100%;
    max-width: 400px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .header-logo {
        max-width: 300px;
        margin: 30px 0;
    }
}

.site-footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    left: 0;
}

.site-footer p {
    color: white;
    text-align: center;
    font-size: 10px;
    margin: 0;
} 