/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  background: url('images/GlobeBackground.png') no-repeat center center fixed;
  background-color: #000000;
  color: #f0f0f0;
  padding:0;
}

/* centered heading, logo and slogan */
.centered-header {
  text-align: center;
}

/* glass box effect for text */
.text-container {
  background-color: rgba(0, 0, 0, 0.6);  /* semi-transparent dark gray */
  padding: 1rem;
  border-radius: 5px;
  color: #f0f0f0;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Logo */
.logo {
  max-width: 150px;
  display: block;
  margin: 0 auto 1rem;
}

/* Section Styling */
main section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  background-color: transparent;
  border: none;
  border-radius: 6px;
  box-shadow: none;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Exo', serif;
  color: #0477f9; /* soft glowing green */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

h2 {
  margin-top: 2rem;
  color: #0477f9;
}

.subtitle {
  font-style: italic;
  color: #e4fc82;
  margin-bottom: 3rem;
}

blockquote {
  margin: 2rem 0;
  font-style: italic;
  color: #3b3b3b;
  padding-left: 1rem;
  border-left: 4px solid #ccc;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background-color: #130caf;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin: 1rem 0.5rem 0 0;
  transition: background-color 0.2s ease-in-out;
}

.gradient-text span {
  display: normal;
  letter-spacing: 0rem;
}


.gradient-text {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}



.button:hover {
  background-color: #0179be;
}

.button.secondary {
  background-color: #130caf;
}

.button.secondary:hover {
  background-color: #0179be;
}

/* Form */
.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form button {
  align-self: flex-start;
}

/* Footer */
footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* Funnel Links Container */
.funnel-links {
  margin-top: .5rem;
}
.contact-form-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
