/*
Theme Name: Hello Elementor Child
Theme URI: https://yourwebsite.com/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://yourwebsite.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add custom CSS below */

/* ===============================
   Transparent Header (Default)
================================= */

.custom-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: all 0.3s ease;
}

/* ===============================
   Sticky State After Scroll
================================= */

.custom-header.header-scrolled {
    position: fixed;
    background: var( --e-global-color-0ddaa89 )!important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.removeHeadingMargin .elementor-icon-box-title {
    margin-top: 0px !important;
}


/* ===============================
   Contact Form 7
================================= */

.cf7-custom-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.cf7-custom-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.cf7-subtext {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 30px;
}

.cf7-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cf7-field {
  margin-bottom: 20px;
}

.cf7-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cf7-custom-form input,
.cf7-custom-form select,
.cf7-custom-form textarea {
  width: 100%;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 10px 14px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cf7-custom-form textarea {
  height: 120px;
  resize: vertical;
}

.cf7-custom-form input:focus,
.cf7-custom-form select:focus,
.cf7-custom-form textarea:focus {
  border-color: #3b3b7d;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59,59,125,0.15);
}

.cf7-submit input[type="submit"] {
  width: 100%;
  height: 46px;
  background: #2f6f45;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf7-submit input[type="submit"]:hover {
  background: #255a37;
}

/* Fully Responsive */
@media (max-width: 768px) {
  .cf7-grid-2 {
    grid-template-columns: 1fr;
  }

  .cf7-custom-form {
    padding: 25px;
  }
}
