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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  background-image: url('attached_assets/stock_images/night_sky_stars_milk_8a893d12.jpg');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.subliminal-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('attached_assets/Ubiquiii_Cropped_Eye_Entity_Photo_1765645111038.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.20;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.site-title {
  font-family: 'Arial', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5rem;
  text-transform: uppercase;
}

.launching-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.mission-title {
  font-family: 'Arial', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 3rem;
  text-transform: uppercase;
}

.mission-text {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.5rem auto 0 auto;
  max-width: 700px;
  line-height: 1.8;
  text-align: center;
}

.announcement-banner {
  margin: 2rem auto 2rem auto;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  max-width: 600px;
}

.announcement-text {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}

.announcement-banner-buttons {
  margin: 1.5rem auto 0 auto;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  max-width: 480px;
}

/* Action Buttons Section */
.action-buttons-section {
  background-color: #000000;
  padding: 4rem 2rem 3rem 2rem;
  position: relative;
}

.buttons-container {
  display: flex;
  justify-content: center;
  gap: 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.action-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #ffffff;
  color: #000000;
  background-color: #ffffff;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
  width: 220px;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.action-button:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
  display: inline-block;
  width: 220px;
}

.language-button {
  width: 220px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  line-height: 1.6;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 2px solid #000000;
  min-width: 100%;
  z-index: 10;
  margin-top: 0.5rem;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.8rem 1.5rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-item:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Hamburger Menu */
.hamburger-menu {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 52px;
  width: 65px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 7px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.hamburger-menu:hover .hamburger-line {
  background-color: #cccccc;
}

.hamburger-dropdown {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 1.5rem;
  margin-top: 0.5rem;
  z-index: 10;
  width: 400px;
}

.hamburger-menu-content.show {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

.social-link {
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}

.social-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.social-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
}

.social-icon-large {
  width: 100%;
  height: 90px;
  object-fit: contain;
  border-radius: 8px;
}

.social-link-wide {
  grid-column: span 2;
}

.nonprofit-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.blogs-button-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.blogs-button {
  display: block;
  transition: transform 0.3s, opacity 0.2s;
}

.blogs-button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.blogs-button-img {
  width: 280px;
  height: auto;
  border-radius: 10px;
  border: 2px solid #ffffff;
}

.ranch-hero-container {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.ranch-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(135deg, #0a0a14 0%, #111128 50%, #0a0a14 100%);
  border: 2px solid #c9a84c;
  border-radius: 12px;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  max-width: 340px;
  width: 90%;
}

.ranch-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.55);
  border-color: #ffd700;
}

.ranch-logo {
  width: 260px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.ranch-tagline {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #c9a84c;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  text-align: center;
}

.ranch-click-here {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #c9a84c !important;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
  text-align: center;
  text-decoration: none;
}

.follow-button-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.visitor-counter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.visitor-count {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1;
}

.visitor-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.daily-musings-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.daily-musings-button {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid #ffd700;
  color: #ffffff;
  background: linear-gradient(135deg, #8B6914 0%, #DAA520 50%, #ffd700 100%);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.daily-musings-button:hover {
  background: linear-gradient(135deg, #ffd700 0%, #DAA520 50%, #8B6914 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}


/* Contact Section */
/* Follow Us Section */
.follow-section {
  background-color: #0a0a0a;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.follow-title {
  font-family: 'Arial', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.follow-subtitle {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.subscribe-form {
  max-width: 450px;
  margin: 0 auto 2rem auto;
}

.subscribe-input-group {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.subscribe-input-group input {
  flex: 1;
  max-width: 280px;
  padding: 0.8rem 1rem;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.subscribe-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-input-group input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.1);
}

.subscribe-button {
  padding: 0.8rem 1.5rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.subscribe-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.subscribe-message {
  margin-top: 1rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.subscribe-message.success {
  color: #4ade80;
}

.subscribe-message.error {
  color: #f87171;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact-section {
  background-color: #000000;
  padding: 4rem 2rem;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
}

.divider {
  width: 50px;
  height: 2px;
  background-color: #666666;
  margin: 0 auto 1.5rem auto;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #000000;
  font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #888888;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  align-self: center;
  margin-top: 1rem;
}

.submit-button:hover {
  background-color: #dddddd;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #000000;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #222222;
}

footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

footer .footer-legal {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: auto;
    padding: 3rem 1.5rem 4rem 1.5rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .site-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    letter-spacing: 0.3em;
  }

  .launching-text {
    font-size: 2rem;
  }

  .mission-title {
    font-size: 1.2rem;
    margin-top: 2rem;
  }

  .mission-text {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 0.5rem;
    line-height: 1.7;
  }

  .announcement-banner {
    margin: 1.5rem auto 0 auto;
    padding: 0.8rem 1.5rem;
    max-width: 90%;
  }

  .announcement-text {
    font-size: 0.9rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-section {
    padding: 3rem 1.5rem;
  }

  .follow-section {
    padding: 3rem 1.5rem;
  }

  .follow-title {
    font-size: 1.5rem;
  }

  .subscribe-input-group {
    flex-direction: column;
    align-items: center;
  }

  .subscribe-input-group input {
    max-width: 100%;
    width: 100%;
  }

  .subscribe-button {
    width: 100%;
    max-width: 280px;
  }

  .stats-container {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .action-buttons-section {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .buttons-container {
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .action-button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }

  .hamburger-dropdown {
    position: static;
    transform: none;
    margin-top: 0.5rem;
  }

  .blogs-button-container {
    margin-top: 1.5rem;
  }

  .blogs-button-img {
    width: 240px;
  }

  .daily-musings-container {
    margin-top: 1.5rem;
  }

  .daily-musings-button {
    min-width: 260px;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
  }

}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem 3.5rem 1rem;
  }

  .site-title {
    font-size: 1.3rem;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
  }

  .launching-text {
    font-size: 1.6rem;
  }

  .mission-title {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }

  .mission-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .buttons-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .action-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }

  .language-dropdown {
    width: 100%;
  }

  .language-button {
    width: 100%;
  }

  .hamburger-menu {
    height: 40px;
    width: 50px;
  }

  .hamburger-line {
    height: 5px;
  }

  .blogs-button-container {
    margin-top: 1.5rem;
  }

  .blogs-button-img {
    width: 220px;
  }

  .daily-musings-container {
    margin-top: 1.5rem;
  }

  .daily-musings-button {
    min-width: 220px;
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
  }

}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background-color: #000000;
  border: 2px solid #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.modal-close:hover {
  opacity: 0.7;
}

.modal-title {
  font-family: 'Arial', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modal-divider {
  width: 60px;
  height: 2px;
  background-color: #ffffff;
  margin: 0 auto 2rem auto;
}

.modal-body {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  text-align: center;
}

.modal-body p {
  margin-bottom: 1.5rem;
}

.modal-emphasis {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.modal-list {
  font-weight: 600;
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 2;
}

.modal-tagline {
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  margin-top: 1rem;
}

.modal-subtitle {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* White background modal variant */
.modal-content-light {
  background-color: #ffffff;
  border: 2px solid #333333;
}

.modal-content-light .modal-close {
  color: #333333;
}

.modal-content-light .modal-title {
  color: #000000;
}

.modal-content-light .modal-divider {
  background-color: #333333;
}

.modal-content-light .modal-body {
  color: #333333;
}

.modal-content-light .modal-body p {
  color: #333333;
}

.modal-content-light .modal-subtitle {
  color: #000000;
}

.ein-number {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  color: #1a1a1a;
}

.modal-content-light .support-choice-button {
  border-color: #333333;
  color: #333333;
}

.modal-content-light .support-choice-button:hover {
  background-color: #333333;
  color: #ffffff;
}

.no-facebook-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Support Modal Styles */
.support-modal-content {
  text-align: center;
}

.support-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.support-choice-button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 250px;
}

.support-choice-button:hover {
  background-color: #ffffff;
  color: #000000;
}

@media (max-width: 768px) {
  .support-choice-button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .modal-body {
    font-size: 1rem;
  }

  .modal-list {
    font-size: 1.1rem;
  }

  .modal-tagline {
    font-size: 1.1rem;
  }
}

/* Large Desktop - show more of the background landscape */
@media (min-width: 1200px) {
  .hero {
    min-height: 90vh;
    background-size: cover;
    background-position: center 40%;
  }

  .subliminal-layer {
    background-position: center 40%;
  }
}

/* Flags Image */
.flag-container {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 2rem auto;
  text-align: center;
  overflow: hidden;
}

.flags-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .flag-container {
    max-width: 260px;
  }
  .flags-image {
    max-width: 260px;
  }
  
  .star {
    font-size: 5px;
  }
}
