/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.site-header {
  background: #000;
  color: #fff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO VIDEO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero-overlay h1 {
  font-size: 2.5em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.cta-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 4px;
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
  text-align: center;
}

.feature-item {
  flex: 1;
  margin: 0 10px;
  background: #fafafa;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

/* ATM Locator Section */
.atm-locator-centered {
  background-color: #1d1d1d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.atm-locator-centered h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.atm-locator-centered p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.locator-button {
  background: #ffc107;
  color: #000;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.button-4 {
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
  padding: 25px 42px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Feature Tag */
.feature-tag {
  padding: 10px 20px;
  margin: 5px;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  background: #fafafa;
  border-radius: 999px;
  border: 2px solid #3cce49;
  white-space: nowrap;
}

.button-primary {
  display: inline-block;
  background-color: #3cce49;
  color: #fff;
  padding: 40px 80px;
  border-radius: 60px;
  font-size: 20rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-primary:hover {
  background-color: #2cbf3e;
}

/* Feature Highlight Section Boxed */
.feature-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1d1d1d;
  color: #fff;
  border-radius: 12px;
  padding: 60px 30px;
  margin: 60px auto;
  max-width: 1000px;
  text-align: center;
}

.feature-highlight-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
}

.feature-highlight-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* THIS is what centers .features-container inside */
}


.section-label {
  font-size: 1.2rem;
  color: #3cce49;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-highlight-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.feature-highlight-button {
  margin-top: 20px;
}

/* Footer */
.site-footer {
  background: #111;
  color: #ddd;
  padding: 40px 0;
  font-size: 0.9em;
}

.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.site-footer h4 {
  margin-bottom: 10px;
  color: #fff;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Seed validation styles */
.seed-validation-error {
    margin-top: 5px;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.seed-validation-error.valid {
    background-color: #d4edda;
    color: #155724


