/* Global Styles */
body {
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.subheading {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.emoji-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.emoji {
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.emoji:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

a {
    text-decoration: none;
}

/* Review Links */
.review-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.review-links a {
    background-color: #f0b323 !important; /* Force solid background */
    color: #fff !important; /* Ensure text is white */
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: none !important; /* Force no box-shadow */
    opacity: 1 !important; /* Ensure full opacity */
    font-weight: bold;
    border: none;
}

.review-links a:hover {
    background-color: #e09e1e !important; /* Ensure hover color is solid */
    transform: translateY(-3px);
}

/* Form Styling */
form {
    text-align: left;
    margin: 0 auto;
    max-width: 400px;
}

form label {
    font-size: 16px;
    color: #333;
    display: block; /* Ensure label takes up a full line */
    margin-bottom: 10px; /* Add space between label and input */
}

form select,
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px; /* Add space between the elements */
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form select {
    background-color: #fff;
    font-size: 16px;
}

form textarea {
    min-height: 150px;
}

form select:focus,
form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    outline: none;
}

form input[type="submit"] {
    background-color: #f0b323 !important; /* Force solid background */
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: none !important;
    opacity: 1 !important;
    font-weight: bold;
}

form input[type="submit"]:hover {
    background-color: #e09e1e;
    transform: translateY(-3px);
}

/* Home Button */
.home-button {
    background-color: #f0b323 !important; /* Force solid background */
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: none !important;
    opacity: 1 !important;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.home-button:hover {
    background-color: #e09e1e;
    transform: translateY(-3px);
}


.contact-link {
    color: #f0b323;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e09e1e;
}
