/*======================================
Theme Name: Child Theme
Theme URI: https://interfacebeam.com/
Description: Interface Beam theme
Version: 1.0
Author: Interface Beam.
Author URI: https://interfacebeam.com/
Template: Divi
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */
/* Overall form */
.wpcf7 form {
  max-width: 500px;
  margin: 0 auto; 
  color: #443322;
  background: #fff;
}

/* Headline */
.wpcf7 form h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #443322;
}

/* Grid for first and last name */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.wpcf7 p {
	padding-bottom: 0;
	color: #5B5035;
	font-size: 18px;
}
/* Text inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 4px; 
  font-size: 18px;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid #ccbbaa;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f9f5f3;
    color: #A78370;
}

/* Textarea */
.wpcf7 textarea {
  height: 120px;
  resize: vertical;
}

/* Radio buttons */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #A78370;
}

.radio-group input[type="radio"] {
  margin-right: 6px;
}

/* Submit button */
.submit-btn {
  background-color: #b89374;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  display: block;
  margin: 0 auto 0;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
	-webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.submit-btn:hover {
    background-color: #5b5035 ;
	color: #fff;
}
.radio-group label   {
  position:relative;
}
.radio-group label input  {
 display:none;
}
.radio-group label input + .wpcf7-list-item-label
{
  padding-left: 35px;
  line-height: 32px;
}
.radio-group label input + .wpcf7-list-item-label:before {display:inline-block;width: 17px;height: 17px;border-radius:15px;position:absolute;top: 7px;left: 4px;}
.radio-group label input + .wpcf7-list-item-label:after {
    display:inline-block;
    width: 19px;
    border: 1px solid #a87e60;
    height: 19px;
    border-radius:15px;
    padding:2px;
    position:absolute;
    top: 3px;
    left:0;
}
.radio-group label input:checked + .wpcf7-list-item-label:before {  
  background: #a87e60;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: normal;
    display: block;
    margin-top: -16px;
    margin-bottom: 10px;
}

.background-zoom {
  background-image: url('your-image.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  height: 100vh; /* or any height */
  animation: zoomInOut 30s ease-in-out infinite;
}

/* Zoom animation */
@keyframes zoomInOut {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@media (max-width: 980px) {
.radio-group label input + .wpcf7-list-item-label:before {
    display: inline-block;
    width: 15px;
    height: 15px; 
    top: 5px;
    left: 4px;
}
.radio-group label input + .wpcf7-list-item-label:after {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    padding: 2px; 
    top: 2px;
    left: 1px;
}

.radio-group label input + .wpcf7-list-item-label {
    font-size: 16px;
}
}
.radio-group .wpcf7-not-valid-tip {
	padding-left: 19px;
    padding-top: 10px;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
    background: #46b450;
    border: 0;
	margin-top: 0;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
    background: #dc3232;
    border: 0;
	margin-top: 0;
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
    background: #dc3232;
    border: 0;
	margin-top: 0;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900;
    background: #ffb900;
    border: 0;
	margin-top: 0;
}


