/*
Theme Name: Bajema Consultancy
Template: eco-renewable-energy
Description: Child theme for Eco Renewable Energy, customized for Bajema Consultancy
Version: 1.0.0
Author: Your Name
Text Domain: bajema-consultancy
*/

/* Add your custom CSS below this line */

/* Import parent theme styles - this should be first */
@import url('../eco-renewable-energy/style.css');

/* Your custom styles go below */

/* Contact Form 7 customisations */

.form-group {
    margin-bottom: 1.5rem;
  }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }  
  
input.form-control,
textarea.form-control {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #3a3a3a;
    border-radius: 8px;
    transition: 0.3s ease;
  }
  
input.form-control:focus,
textarea.form-control:focus {
    outline: none;
    border-color: #3a3a3a;
    box-shadow: 0 0 10px #3a3a3a;
}
  
.btn.btn-primary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
.btn.btn-primary:hover {
    background-color: #ffffff;
    color: #000;
    box-shadow: 0 0 15px #ffffff;
}

@media (min-width: 1024px) {
textarea.form-control {
      min-width: 800px;
      margin-left: auto;
      margin-right: auto;
      display: block;
    }
  }