/* NASA Harvest-inspired Theme */

/* Global Reset */
body {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.body > * {
  background-image: none;
}

/* Header Styling */
.account-masthead {
  background-image: none;
  background-color: black; 
}

.masthead {
  background-image: none;
  background-color: #ffffff;
  padding: 0 !important;
}

.masthead .main-navbar ul li a {
  background-color: transparent;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  border-radius: 0;
}

.masthead .main-navbar ul li a:hover {
  background-color: #007dc5;
  color: rgba(255, 255, 255);
  text-decoration: none;
}

.masthead .site-search {
  margin: 0;
}

.navbar {
  padding: 0;
}

.masthead .navbar-toggle {
  background-color: transparent;
  border: none;
}

.masthead .navbar-toggle:hover {
  background-color: transparent;
}

.masthead .navbar .logo img {
  max-height: 5rem;
  width: auto;
  margin: 8px 0;
}

@media (max-width: 768px) {
  .masthead .logo img {
    max-height: 40px;
  }
}

.fa-sign-out {
  color: #bfd7de;
}


/* Homepage Styling */
.homepage {
  background-image: none;
  background-color: #fff;
}

.homepage > * {
  background-image: none;
}

.homepage .container {
  padding: 0;
  max-width: 100%;
  width: 100%;
}

/* Custom Hero Banner */
.hero-banner {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  padding: 0;
  margin-bottom: 60px;
  height: 500px;
}

.hero-banner .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
}

.hero-banner .hero-text {
  flex: 1;
  padding: 80px 50px;
  color: black;
}



.hero-banner .subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero-banner h1 {
  color: white;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* Section Styling */
.section-heading {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 60px;
}

/* Featured Section */
.featured-section {
  margin-bottom: 60px;
  padding: 0 30px;
}

.feature-box {
  background-color: white;
  padding: 30px 25px;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: #ffffff;
  margin-bottom: 20px;
}

.feature-box h3 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 400;
}

.feature-box p {
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Search Section */
.search-section {
  margin-bottom: 50px;
  padding: 0 30px;

}

.search-box {
  background-color: #007dc5;
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.search-box h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: white;
  font-weight: 400;
}

.search-box .btn {
  background-color: #007dc5;
  border: 0;
  padding: 10px 20px;
  color: white;
  margin-left: 10px;
  margin-top: 5px;
}

.tag-list {
  margin-top: 20px;
}

.tag-list h4 {
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  font-weight: 400;
}

.tag {
  display: inline-block;
  margin: 5px 5px 5px 0;
  padding: 6px 12px;
  background-color: #f5f5f5;
  color: #333;
  border-radius: 0;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s ease;
}

.tag:hover {
  background-color: #007dc5;
  color: white;
  text-decoration: none;
}

/* Input and Button Styling */
.form-control {
  border: 1px solid #ddd;
  box-shadow: none;
  height: 46px;
  border-radius: 0;
}

.form-control:focus {
  border-color: #007dc5;
  box-shadow: none;
}

.btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #007dc5;
  border: 0;
  padding: 10px 20px;
}

.btn-primary:hover, 
.btn-primary:focus {
  background-color: #007dc5;
}

.btn-success {
  background-color: #26A65B;
  border: 0;
  padding: 8px 16px;
}

.btn-success:hover, 
.btn-success:focus {
  background-color: #1E894A;
}

.btn-info {
  background-color: #3498DB;
  border: 0;
}

.btn-info:hover, 
.btn-info:focus {
  background-color: #2980B9;
}

/* Stats Section */
.stats-section {
  background-color: white;
  padding: 40px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.stats-section h2 {
  color: #007dc5;
  margin-bottom: 40px;
  font-weight: 300;
}

.stat-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: white;
  color: #007dc5;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  border: 8px solid #f5f5f5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-circle:hover {
  border-color: #e6e6e6;
  transform: scale(1.05);
}

.stat-label {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Contribute Section */
.contribute-section {
  margin-bottom: 60px;
  padding: 0 30px;
}

.contribute-box {
  background-color: #f9f9f9;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: none;
}

.contribute-box h3 {
  color: #007dc5;
  margin-bottom: 15px;
  font-weight: 400;
}

.contribute-box p {
  color: #555;
  margin-bottom: 25px;
  font-size: 16px;
}

/* Featured Group Box */
.featured-group-box {
  background-color: white;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border: none;
}

.featured-group-box h3 {
  margin-top: 0;
  color: #333;
  font-weight: 400;
}

.featured-group-box .media-object {
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.row h2 {
  color: #007dc5;
  margin-bottom: 20px;
  font-weight: 300;
}

/* Footer */
.site-footer {
  background-image: none;
  background-color: #005382;
  color: white;
  padding: 40px 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
  color: white;
}

/* Custom NASA Harvest Header Override */
.masthead .logo {
  position: relative;
  z-index: 100;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-banner {
    height: 400px;
  }
  
  .hero-banner h1 {
    font-size: 36px;
  }
  
  .hero-banner .subtitle {
    font-size: 16px;
  }
  
  .feature-box {
    height: auto;
    min-height: 280px;
  }
  
  .hero-banner .hero-text {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 350px;
  }
  
  .hero-banner .hero-content {
    flex-direction: column;
  }
  
  .hero-banner .hero-text {
    padding: 40px 20px;
  }
  
  .hero-banner h1 {
    font-size: 28px;
  }
  
  .section-heading h2 {
    font-size: 28px;
  }
  
  .stat-circle {
    width: 120px;
    height: 120px;
    border-width: 6px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .contribute-box,
  .featured-group-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    height: 300px;
  }
  
  .hero-banner h1 {
    font-size: 24px;
  }
  
  .hero-banner .subtitle {
    font-size: 14px;
  }
  
  .section-heading h2 {
    font-size: 24px;
  }
  
  .search-box {
    padding: 20px;
  }
  
  .feature-box {
    padding: 20px 15px;
    min-height: 260px;
  }
  
  .stats-section {
    padding: 30px 0;
  }
  
  .stat-circle {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }
}

.umd-banner {
  background-color: #e21833 !important;
  width: 100%;
  max-width: 100% !important;
  margin: 0;
  text-align: center;
  text-decoration: none;
}

.umd-title {
  color: #fff;
  display: inline-block;
  font-family: Crimson, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  padding: 10px 0 10px 0;
  text-align: center;
  text-decoration: none;
}

.umd-title:hover {
    text-decoration: none;
    color: white;
}

.umd-hero-logo {
    position: absolute;
    width: 500px;
    margin-right: 40px;
    margin-bottom: 40px;
    right: 0;
    bottom: 0;
}