/* ──────────────────────────────────────────────
   SHARED STYLES — All Pages (Features, Contact, Info, About)
   Theme: papayawhip / cream · PT Sans · glassmorphism
   ────────────────────────────────────────────── */

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-family: 'PT Sans', sans-serif;
}

body {
  background-color: #fffaf4;
  color: #2c1810;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: #a65f31; text-decoration: none; transition: color 0.2s; }
a:hover { color: #076585; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: #2c1810; }
h1 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 0.5rem; }
h2 { font-size: clamp(1.35rem, 2.5vw, 2rem); margin: 2rem 0 0.75rem; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); margin: 1.5rem 0 0.5rem; }
p { margin-bottom: 1rem; max-width: 65ch; }

/* ── NAVBAR PLACEHOLDER ── */
.nav-placeholder {
  width: 100%;
  height: 83px;
  border: none;
  background: rgba(255, 239, 213, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(166, 95, 49, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.glass-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 83px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  box-sizing: border-box;
 /* Ensures it sits above text and blur spots */
  z-index: 9999;         /* ✅ Above everything */
  
  
  /* Semi-transparent cream tint to match your aesthetic */
  
  
  background: #076585;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #fff, #076585);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #fff, #076585); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  /* The blur effect behind the nav bar */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  
  /* Subtle bottom border to separate it from the grid lines */
  
  box-shadow: 0px 5px 59px #a65f31;
}

/* --- Logo Styling --- */
.nav-logo {
  height: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  border: none;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  font-family: sans-serif;
  color: lightcoral;
  text-shadow: 6px -2px 33px white;
  height: 100%;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-logo a:hover {color: cornflowerblue;}
.nav-logo a:active {
  
  transform: scale(0.7)
}

.nav-logo span {
  color: chartreuse; /* Matches your soft teal spot accent color */
  font-size: 50px;
  text-shadow: 0px -3px 21px white;
  
  position: relative;
  bottom: 21%;
  height: 60%;
  display: flex;
}

/* --- Navigation Links --- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 5px;
  margin: 0;
  padding: 0;
  border: none;
  margin-right: -5.25%;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.nav-links li {
  height: 100%;
  padding: 0;
  display: inline-block; 
  justify-content: center;
  align-items: center;
  
}
.nav-links a {
  padding-bottom: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
  color: darkslategrey;
  padding-right: 14px; padding-left: 14px;
  text-shadow: 0px 0px 5px rgb(255, 255, 255, 0.03);
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  font-family: sans-serif;
  letter-spacing: 2px;
  border: 0.2px solid rgb(0, 0, 0, 0.001);
  border-radius: 20px;
  -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover {
  color:  grey; /* Darkens on hover/active state */
  
  font-size: 28px;
}
.nav-links a:active{
  background-color: rgb(0, 0, 0, 0.1);
  text-decoration: none;
  transform: scale(0.6);
  color: brown;
}

/* ── AD PLACEHOLDERS ── */
.ad-placeholder {
  border: none;
  background: rgba(255, 250, 244, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(166, 95, 49, 0.45);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.ad-placeholder:hover {
  border-color: rgba(166, 95, 49, 0.6);
  background: rgba(255, 250, 244, 0.7);
}

/* Ad sizes */
.ad-468x60  { width: 468px;  height: 60px;  }
.ad-300x250 { width: 300px;  height: 250px; }
.ad-700x20  { width: 700px;  height: 20px;  }
.ad-160x600 { width: 160px;  height: 600px; }
.ad-160x300 { width: 160px;  height: 300px; }

/* ── GLASSMORPHISM CARD ── */
.glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(166, 95, 49, 0.08);
  padding: 1.75rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #076585, #5ca8c4);
  color: #fff;
  box-shadow: 0 4px 14px rgba(7, 101, 133, 0.3);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(166, 95, 49, 0.4);
  color: #a65f31;
}

/* ── FORMS ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5c3e1c;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(166, 95, 49, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  font-family: 'PT Sans', sans-serif;
  font-size: 0.95rem;
  color: #2c1810;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #076585;
  box-shadow: 0 0 0 3px rgba(7, 101, 133, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
.page-footer {
  border-top: 1px solid rgba(166, 95, 49, 0.12);
  padding: 2rem 5%;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(44, 24, 16, 0.55);
  background: rgba(255, 239, 213, 0.25);
}

/* ── GRID LAYOUT HELPERS ── */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}



.main-content { min-width: 0; }
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

/* ── HERO ── */
.page-hero {
  text-align: center;
  padding: 2.5rem 5% 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero h1 { color: #2c1810; }
.page-hero p {
  color: rgba(44, 24, 16, 0.7);
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 auto 0.75rem;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature-card {
  composes: glass-card;
  padding: 1.5rem;
  text-align: center;
}
.feature-card h3 {
  color: #076585;
  margin-bottom: 0.5rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: rgba(7, 101, 133, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #076585;
  font-size: 1.4rem;
}

/* ── TAG / BADGE ── */
.tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-teal { background: rgba(162, 230, 219, 0.4); color: #0a5a4a; }
.tag-orange { background: rgba(255, 184, 135, 0.4); color: #8b4513; }

/* ── RESPONSIVE ── */
