/* Custom styles for Contact Page - SeaWest */
/* This file overrides form input colors specifically for the contact page */

/* Override form input text color to use secondary color */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="file"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="search"],
input[type="tel"],
textarea,
select {
    color: var(--secondary-color, #53624e) !important;
}

/* Ensure Contact Form 7 inputs also use secondary color */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
    color: var(--secondary-color, #53624e) !important;
}

/* Ensure placeholders are visible with secondary color */
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="tel"]::placeholder,
input[type="search"]::placeholder,
textarea::placeholder {
    color: rgba(83, 98, 78, 0.6) !important; /* secondary color with opacity */
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form input[type="url"]::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(83, 98, 78, 0.6) !important; /* secondary color with opacity */
}
