/*
Theme Name: Aidory Theme
Theme URI: https://aidory.com/
Author: Nasir Khan
Author URI: https://aidory.com/
Description: A professional fundraising theme like GoFundMe.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aidory-theme
Tags: fundraising, charity, donations, responsive, custom-theme
*/

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}

header .logo {
  font-size: 28px;
  font-weight: bold;
  color: #006400;
}

header nav ul {
  display: flex;
  list-style: none;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.hero .stats {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #006400;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 20px 0;
}

/* Campaigns */
.campaigns {
  padding: 20px;
}

.campaign-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 10px;
}

.campaign-card img {
  width: 100%;
  height: auto;
}

.campaign-card .progress {
  background-color: #eee;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.campaign-card .progress-bar {
  height: 6px;
  background-color: #006400;
}

/* Reviews & Success */
section {
  padding: 30px 20px;
}

section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #ddd;
}.aidory-mobile-header {
  width: 100%;
  background: #fff;
  padding: 10px 15px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-dropdown select.language-selector {
  font-size: 14px;
  padding: 4px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.center-logo {
  flex-grow: 1;
  text-align: center;
}

.mobile-logo {
  height: 30px;
  max-width: 120px;
}

.right-menu .hamburger {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}