/* Construction Page External Styles */
:root {
  --bg: #0b0b0b;           /* deep black */
  --panel: #111213;        /* card surface */
  --muted: #9ca3af;        /* gray-400 */
  --text: #f5f7fb;         /* off white */
  --gold: #d4af37;         /* brand accent */
  --gold-600: #c1992e;
  --gold-700: #a88223;
  --ring: rgba(212, 175, 55, .35);
  --success: #16a34a;
  --danger: #dc2626;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0; 
  min-height: 100vh;
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif; 
  color: var(--text); 
  background-color: var(--bg); /* Fallback color */
  position: relative;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}

/* Background image scaled larger to prevent any gaps */
.background-image {
  position: fixed;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  width: 120vw;
  height: 120vh;
  background-color: #000000; /* Black background */
  background-image: url('./20250812_2110_Joyful Family Car Ride_simple_compose_01k2gfhecpfvb8gpsqmf3kk5jg.png');
  background-size: cover; /* Cover and overflow if needed */
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -2;
}

/* Removed test-background - not needed */

/* Darker overlay to reduce brightness */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* 50% dark overlay */
  z-index: -1;
  pointer-events: none;
}

/* Hero section - fills available space */
.hero-section {
  position: relative;
  flex: 1; /* Take up all available space */
  display: flex;
  flex-direction: column;
}

/* Remove the hero overlay since we have body overlay now */

/* Grid overlay removed - no more thatch pattern */

/* Content positioning */
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1; /* Take up available space */
}

/* Modern Header with Glassmorphism - Exactly from master page */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--gold);
  z-index: 1000;
  transition: all 0.3s ease;
  height: 76px; /* Increased by 5% from 72px */
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), #FFA500);
  color: #000;
  padding: 13px 25px; /* Increased by 5% from 12px 24px */
  border-radius: 22px; /* Increased by 5% from 21px */
  text-decoration: none;
  font-weight: 700;
  font-size: 89%; /* Increased by 5% from 85% */
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-cta-header {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 76px; /* Adjusted to match new header height */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(25px);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding: 18px 0; /* Increased by 5% from 17px */
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.mobile-nav-links li {
  text-align: center;
  margin: 10px 0;
}

.mobile-nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  display: block;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.mobile-cta {
  text-align: center;
  padding: 0 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-cta-header {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: #000;
    padding: 9px 18px; /* Increased by 5% from 9px 17px */
    border-radius: 18px; /* Increased by 5% from 17px */
    text-decoration: none;
    font-weight: 700;
    font-size: 13px; /* Increased by 5% from 12px */
  }
}

/* Adjust content for fixed header */
.hero-content {
  padding-top: 76px; /* Adjusted to match new header height */
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: conic-gradient(from 210deg at 50% 50%, var(--gold), var(--gold-700), var(--gold));
  box-shadow: 0 0 0 1px rgba(212, 175, 55, .25), 0 10px 30px rgba(212, 175, 55, .2);
}

.brand-title {
  font-weight: 800;
  letter-spacing: .3px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(180deg, var(--gold), var(--gold-600));
  color: #111;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(212, 175, 55, .35);
  border: 1px solid rgba(0, 0, 0, .2);
  transition: transform 0.2s;
}

.cta:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  padding: 72px 24px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, .25);
  background: rgba(212, 175, 55, .07);
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .3px;
}

h1 {
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.08;
  margin: 14px 0 10px;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.gold-text {
  color: var(--gold);
}

.lead {
  color: #d1d5db;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  margin: 0 0 18px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 18px 0 28px;
}

.list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d6d3c9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.list .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .18);
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 20px 40px rgba(0, 0, 0, .6);
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 13px;
  color: #e5e7eb;
  display: block;
  margin-bottom: 6px;
}

input, textarea, select {
  width: 100%;
  padding: 14px 14px;
  background: rgba(17, 18, 19, .9);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 14px;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--ring);
}

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

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 620px) {
  .row {
    grid-template-columns: 1fr;
  }
}

.submit {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .2);
  background: linear-gradient(180deg, var(--gold), var(--gold-600));
  color: #111;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s;
  font-family: inherit;
  font-size: 15px;
}

.submit:active {
  transform: translateY(1px);
}

.disclaimer {
  margin: 8px 0 0;
  color: #9aa3ad;
  font-size: 12px;
}

.foot {
  padding: 12px 24px; /* Reduced top/bottom padding by 50% (24px * 0.5 = 12px) */
  text-align: center;
  color: #b3b3b3;
  font-size: 14px;
  border-top: 1px solid var(--gold);
  background: rgba(0, 0, 0, .95);
  position: relative;
  z-index: 3;
  margin-top: auto; /* This pushes the footer to the bottom */
}

.mono {
  font-variant-ligatures: none;
  font-feature-settings: "tnum" 1, "ss01" 1;
}

.footer-disclaimer {
  margin-top: 8px;
  font-size: 13px;
}

.support-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.support-links a {
  color: var(--gold);
  text-underline-offset: 4px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.support-links-centered {
  text-align: center;
  margin-top: 20px;
}

.support-links-centered a {
  color: var(--gold);
  text-underline-offset: 4px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}