@import url('signer.css');

@font-face {
  font-family: 'SF Pro';
  src: local('SF Pro'), local('SFPro'), local('SF Pro Display'), local('SFProDisplay');
  font-style: normal;
  font-weight: 400;
}

/* Add your custom styles for generic pages below */

body, .navbar-title, .main-content {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

body {
  /* Optionally override background for generic pages */
  /* background: #f5f5f5; */
  position: relative;
  min-height: 100vh;
}

body, html {
  height: 100%;
}

/* Example: Style for a generic main content area */
.main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.089);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 #00000022;
  padding: 2rem;
  max-width: 800px;
  width: 90vw;
  color: #ffffff;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Hamburger menu styles from signer.css */
.hamburger-menu {
  background: none;
  border: none;
  color: #e0caff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem 0.8rem 0.4rem 0.2rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 0;
}

/* Remove old nav-container and nav-icon styles, and adapt for new nav structure */

nav {
  width: 100vw;
  background: rgba(56, 102, 65, 0.85); /* deep green */
  box-shadow: 0 2px 16px 0 #386641cc;
  padding: 0.5rem 0;
  position: fixed;
  top: 0; left: 0;
  z-index: 10;
}

.nav-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0 2rem;
}

.hamburger-menu {
  order: 0;
}

.navbar-title {
  order: 10;
  font-weight: bold;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-left: 0;
}

.logo-container {
  order: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  margin: 0 auto;
}

.navbar-logo {
  display: block;
  margin: 0 auto;
  height: 40px;
  max-width: 120px;
}

.dropdown-menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 260px;
  max-width: 90vw;
  background: rgba(40,40,40,0.97);
  color: #fff;
  border-radius: 12px 12px 16px 16px;
  box-shadow: 0 8px 32px 0 #000a;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0.5rem;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  text-align: left;
}
.dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
}
.dropdown-menu a {
  color: #fff;
  text-decoration: none;
  padding: 0.7em 1.2em;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
  margin: 0.1em 0.5em;
  width: auto;
  display: block;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: #a7c957;
  color: #223f00;
  font-weight: 600;
}

@media (max-width: 900px) {
  .dropdown-menu {
    width: 100vw;
    max-width: none;
    left: 0;
    transform: none;
    border-radius: 0 0 16px 16px;
  }
  .dropdown-menu a {
    font-size: 1.2rem;
  }
}

.mini-container {
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  margin: 1.2rem 0;
  box-shadow: 0 2px 12px 0 #0004;
  font-size: 1.08rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.install-options {
  display: flex;
  justify-content: flex-start;
  gap: 2.5rem;
  margin-top: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
  overflow-x: auto;
  white-space: nowrap;
  max-width: 945px;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.install-options::-webkit-scrollbar {
  display: none;
}

.install-container {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 2.2rem 1.7rem 2rem 1.7rem;
  text-align: center;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.install-logo {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  background: #fff2;
}

.install-container h2 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.7rem 0 0.8rem 0;
  letter-spacing: 0.01em;
}

.install-btn {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

.install-btn:hover {
  background: #3730a3;
  transform: translateY(-2px) scale(1.04);
}

.install-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

@media (max-width: 900px) {
  .install-options {
    max-width: 100vw;
    padding: 1.5rem 0.5rem;
    gap: 1.2rem;
  }
  .install-container {
    width: 80vw;
    min-width: 220px;
    max-width: 320px;
  }
}

.install-options-wrapper {
  position: relative;
  width: 100%;
  max-width: 945px;
  margin: 0 auto 32px auto;
}

.custom-scrollbar {
  position: relative;
  height: 12px;
  width: 100%;
  background: rgba(40,40,60,0.10);
  border-radius: 8px;
  margin-top: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  cursor: pointer;
}

.custom-thumb {
  position: absolute;
  height: 100%;
  background: rgba(105, 105, 105, 0.603);
  border-radius: 8px;
  min-width: 60px;
  width: 80px;
  left: 0;
  top: 0;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(255,255,255,0.18);
}

.custom-thumb:hover, .custom-thumb.active {
  background: rgba(255,255,255,1);
}

.leaves-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.leaf {
  position: absolute;
  width: 32px; height: 32px;
  pointer-events: none;
  will-change: transform;
} 