/* General body and background settings */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('images/wp.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* Splash screen styling */
.splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    position: absolute;
    width: 100%;
    animation: fadeIn 2s ease-in-out;
}

.splash-content {
    max-width: 400px;
    margin: 0 auto;
}

.splash-image {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.splash-screen h1 {
    font-size: 2em;
    margin: 20px 0;
}

.splash-screen p {
    font-size: 1.2em;
    margin: 10px 0;
}

/* Fade-in animation for splash screen */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Form container */
.form-container {
    display: none;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    margin: auto;
    margin-top: 50px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form styling */
input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1em;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Button styling */
button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

/* Star rating container */
.stars {
    display: flex;
    gap: 10px;
    cursor: pointer;
    font-size: 30px;
}

.stars span {
    color: #ccc;
}

.stars span.selected {
    color: gold;
}

/* Thank You Popup */
.thank-you-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    animation: fadeInPopup 1s ease-in-out;
}

.popup-content {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: auto;
}

@keyframes fadeInPopup {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Final Content Styling */
.final-content {
    display: none;
    position: absolute; /* Position it at the bottom */
    bottom: 0; /* Align it at the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Offset the element by half its width to center it */
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: add a dark background to make text stand out */
    width: 100%; /* Make it full width */
}

.final-image {
    width: 50%;
    max-width: 500px;
    margin-bottom: 0px;
}

.final-content h2 {
    font-size: 2em;
    color: white;  /* Set the text color to white */
    margin-top: 20px;
}


