/* -------------------------------------------------------------
   PHOENIX LOCAL MARKETING - COMPONENTS STYLESHEET
   ------------------------------------------------------------- */

/* 1. Double-Bezel (Doppelrand) Nested Card Architecture */
.bezel-shell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px;
  border-radius: 2rem; /* 32px */
  transition: border-color var(--duration-custom) var(--ease-custom), background-color var(--duration-custom) var(--ease-custom);
}

.bezel-shell:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 106, 0, 0.3); /* Soft glow with primary accent */
}

.bezel-core {
  background: var(--dark-surface);
  border-radius: calc(2rem - 8px); /* concentric inner radius */
  padding: 2.5rem;
  height: 100%;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

/* 2. Nested CTA & "Island" Button Architecture */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  padding: 0.5rem 0.5rem 0.5rem 2rem; /* Generous left padding, tight right padding */
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 300ms var(--ease-custom), background-color 300ms var(--ease-custom);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 1.5rem;
  width: max-content;
}

.btn-premium.w-full {
  width: 100% !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7b1a, #ffbe1a);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-active-scale:active {
  transform: scale(0.96);
}

/* Trailing Icon for Button-in-Button */
.btn-icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-custom) var(--ease-custom), background-color var(--duration-custom) var(--ease-custom);
}

.btn-premium:hover .btn-icon-circle {
  transform: translate(1px, -1px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.btn-primary .btn-icon-circle {
  background: rgba(0, 0, 0, 0.2);
}

.btn-primary:hover .btn-icon-circle {
  background: rgba(0, 0, 0, 0.3);
}

/* 3. Floating Island Navbar */
.island-nav-wrapper {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 90%;
  max-width: 1200px;
}

.island-nav {
  background: rgba(11, 11, 11, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

/* Navbar Nav Link items */
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 300ms var(--ease-custom);
  position: relative;
  padding: 0.5rem 1rem;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 8px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 9999px;
  transition: transform 300ms var(--ease-custom);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* 4. Eyebrow Badge Pill */
.eyebrow-badge {
  display: inline-block;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.2);
  color: var(--primary);
  font-family: var(--font-sans);
  font-[10px];
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

/* 5. Custom Form Controls */
.premium-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 300ms var(--ease-custom), box-shadow 300ms var(--ease-custom), background-color 300ms var(--ease-custom);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.premium-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15), inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.premium-input::placeholder {
  color: var(--gray-600);
}

.premium-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
