/*
Title: Climate Action
Author: Catalina Vrinceanu & Daniel Pincu
Date: 2024
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ... */
  
  body {
    background-color: #fefefe;
    margin: 0;
    position: relative;
    overflow-x: hidden;
    font-family: 'Oswald', sans-serif;
  }

  p {
    
    padding-bottom: 2em;
    
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

  
  /* Pagination styles */
.pagination {
  text-align: center;
  margin: 20px 0;
}

.pagination a {
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  margin: 0 2px;
  display: inline-block;
}

.pagination a:hover {
  background-color: #f4f4f4;
}

.pagination .current {
  padding: 8px 16px;
  margin: 0 2px;
  background-color: #333;
  color: #fff;
  border: 1px solid #333;
  display: inline-block;
}


/* Comments pagination styles */
.comments-pagination {
  text-align: center;
  margin: 20px 0;
}

.comments-pagination a {
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  margin: 0 2px;
  display: inline-block;
}

.comments-pagination a:hover {
  background-color: #f4f4f4;
}

.comments-pagination .current {
  padding: 8px 16px;
  margin: 0 2px;
  background-color: #333;
  color: #fff;
  border: 1px solid #333;
  display: inline-block;
}

.comment-form {
margin-top: 10px;
background-color: #f7f7f7; /* Light grey background */
padding: 20px;
border-radius: 10px; /* Rounded corners */
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.comment-form textarea {
width: 100%; /* Full width */
padding: 15px;
margin-bottom: 10px; /* Space below the textarea */
border: 1px solid #ccc; /* Light grey border */
border-radius: 5px; /* Rounded corners */
font-size: 16px; /* Increase font size */
box-sizing: border-box;
height: 150px; /* Fixed height */
}

.comment-form input[type="submit"] {
background-color: #68D5C0; /* WordPress blue */
color: #fff; /* White text */
padding: 10px 20px;
border: none; /* Remove default border */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor on hover */
font-size: 16px; /* Increase font size */
transition: background-color 0.3s ease; /* Smooth hover transition */
}

.comment-form input[type="submit"]:hover {
background-color: #005177; /* Darker blue on hover */
}


#reply-title {
font-size: 20px;
}

.comment-reply-link {
background-color: #68D5C0; /* WordPress blue */
color: #fff; /* White text */
padding: 1px 30px;
border: none; /* Remove default border */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor on hover */
font-size: 16px; /* Increase font size */
transition: background-color 0.3s ease; /* Smooth hover transition */
}

#cancel-comment-reply-link {
background-color: #68D5C0; /* WordPress blue */
color: #fff; /* White text */
padding: 1px 30px;
border: none; /* Remove default border */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor on hover */
font-size: 16px; /* Increase font size */
transition: background-color 0.3s ease; /* Smooth hover transition */
}




p {
padding-bottom: 1.5em !important;
padding-top: .5em !important;
line-height: 1.6 !important;
color:  !important;

} 













/* General Form Styling */
.wpcf7-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background-color: #E3F2FD; /* Light blue for a clean, eco-friendly look */
  border: 1px solid #A7C7E7; /* Soft blue border for a gentle touch */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 128, 0, 0.1); /* Subtle green shadow */
  font-family: 'Arial', sans-serif;
}

/* Form Field Styling */
.wpcf7-form p {
  padding: 0;
}

.wpcf7-form label {
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  color: #0D3B66; /* Darker blue to add contrast and readability */
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #4CAF50; /* Green border for eco touch */
  border-radius: 8px;
  box-sizing: border-box;
  margin-top: 8px;
  background-color: #F9FBFD; /* Light neutral background for input fields */
}

.wpcf7-form input[type="radio"],
.wpcf7-form input[type="checkbox"] {
  margin-right: 8px;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #88B2B7; /* Soft muted color for placeholder text */
}

/* Button Styling */
.wpcf7-form input[type="submit"] {
  background-color: #4CAF50; /* Bright green to symbolize action and sustainability */
  color: #fff;
  padding: 10px 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 128, 0, 0.2); /* Soft green shadow for button */
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #388E3C; /* Darker green for hover effect */
}

/* File Upload Styling */
.wpcf7-form input[type="file"] {
  border: none;
  padding: 0;
  font-size: 16px;
  color: #4CAF50; /* Green color for the file upload text */
}

/* Media Queries for Responsiveness */
@media (max-width: 600px) {
  .wpcf7-form {
      padding: 20px;
  }

  .wpcf7-form input[type="submit"] {
      width: 100%;
  }
}

/* Additional Styling for a Climate Action Theme */
.wpcf7-form {
  border-left: 10px solid #4CAF50; /* Green accent on the left side of the form */
  background-image: url('path/to/environmental-pattern.png'); /* Optional background image for a nature feel */
  background-size: cover;
  background-position: center;
  background-blend-mode: lighten;
}

.wpcf7-form input[type="submit"] {
  font-weight: bold;
  letter-spacing: 0.5px;
}

.wpcf7-form label:before {
  content: "🌿 "; /* Add a leaf icon before labels for a natural touch */
  font-size: 18px;
}

.wpcf7-form input[type="checkbox"] + label {
  color: #2E7D32; /* Green for checkbox labels */
}
.btn {
  margin-top: 20px !important;
  width: 100%; !important;
  background-color: green !important; 
  color: white !important;            
  padding: 10px 20px !important;      
  border: none !important;            
  border-radius: 5px !important;      
  cursor: pointer !important;         
  font-size: 16px !important;       
  box-shadow: none !important;        
  transition: background-color 0.3s ease !important; 
}

.btn:hover {
  background-color: #689148 !important;  
}
