:root {
  --accent-color: #1F2613;
  --hover-color: #f5f3e7;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--accent-color);
}

html {
  scroll-behavior: smooth;
}

/* Top Navigation */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-weight: 600;
}

.top-nav .nav-left,
.top-nav .nav-right a {
  color: #ffffff;
  text-decoration: none;
}

.top-nav .nav-right a:hover {
  text-decoration: underline;
}

.logo-framed {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: bold;
  border: 2px solid hsla(102, 18%, 19%, 1);
  border-radius: 3px;
  padding: 0.25rem 0.75rem;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: all 0.3s ease;
}

.logo-framed:hover {
  border-color: #b7ffd4bb;
  color: #b7ffd4bb;
}

/* User area */
.user-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #b7ffd4bb;
}

.logout-button {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: 2px solid hsla(102, 18%, 19%, 1);
  border-radius: 3px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logout-button:hover {
  color: #b7ffd4bb;
  border-color: #b7ffd4bb;
}

/* Hero Section */
.hero {
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
}
.pachypass-hero-circle {
  width: 320px;
  height: 320px;
  background-color: rgba(31, 38, 19, 0.8); /* Dark greenish translucent */
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  margin: 2rem auto;
}

.pachypass-hero-logo {
  max-width: 80%;
  height: auto;
  filter: brightness(1.1) contrast(1.1);
  animation: fadeInLogo 1.5s ease-in-out;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.tagline {
  position: relative;
  height: 4.5rem;
  margin-top: 1rem;
}

.subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: #e0e0e0;
}

/* Auth & How-It-Works Shared Container */
.auth-container,
.how-it-works-content,
.tier {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  color: white;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.auth-container {
  max-width: 420px;
  margin: 0 auto;
}
.auth-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.auth-greeting h1 {
  font-size: 1.8rem;
  font-family: Georgia, serif;
}

.auth-passinfo p {
  font-size: 1rem;
  margin: 0;
  text-align: right;
  color: white;
}

.how-it-works-content {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}
.section-header {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  max-width: 500px;
  margin: 2rem auto;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  color: white;
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

/* Auth Elements */
.auth-container h1 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#auth-toggle {
  display: flex;
  justify-content: center; /* <-- Center them */
  gap: 1rem;
  margin-bottom: 1rem;
}


#auth-toggle button {
  flex: 1;
  margin: 0 5px;
  padding: 0.6rem 1rem;
  background-color: #393F2D;
  color: white;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#auth-toggle button:hover {
  background-color: #4F5A3C;
  border-color: #b7ffd4bb;
  color: #b7ffd4bb;
}

/* Form Styles */
#auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#auth-form input,
#auth-form button[type="submit"],
#connectWalletBtn {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#auth-form input:focus {
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 0 3px rgba(161, 90, 61, 0.2);
}

#auth-form button[type="submit"],
#connectWalletBtn {
  background-color: #A15A3D;
  color: white;
  border: none;
  cursor: pointer;
}

#auth-form button[type="submit"]:hover,
#connectWalletBtn:hover {
  background-color: #c66c3c;
}

.tier-content-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.tier-left, .tier-center, .tier-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tier-left {
  flex: 1;
  align-items: flex-start;
  text-align: left;
}

.tier-center {
  flex: 2;
}

.tier-right {
  flex: 1;
  align-items: center;
  justify-content: center;
}

.tier-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.tier-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.tier-price {
  font-size: 1.2rem;
  font-weight: normal;
  color: #b7ffd4bb;
}

.tier-center ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  text-align: left;
}

.tier-center ul li {
  margin-bottom: 0.5rem;
}

/* Pricing Tiers - Grid Layout */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.tier-left, .tier-center, .tier-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .tier-content-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tier-left, .tier-center, .tier-right {
    width: 100%;
    align-items: center;
  }

  .tier-left {
    order: 1;
  }

  .tier-right {
    order: 2;
    margin-top: 1rem;
  }

  .tier-center {
    order: 3;
  }

  .tier-center ul {
    text-align: center;
    padding-left: 0;
  }
  .pricing-tiers {
  display: none;
}

}



/* Footer */
.footer {
  text-align: center;
  font-size: 0.875rem;
  color: #777;
  padding: 2rem;
}

.footer a {
  color: #1F61A3;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .rotate {
    font-size: 2.5rem;
  }
}
.pachypass-hero-logo {
  max-width: 400px;
  width: 90%;
  height: auto;
  filter: brightness(1.1) contrast(1.1);
  animation: fadeInLogo 1.5s ease-in-out;
}

/* Smooth fade-in animation for logo */
@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
