/* =========================================================
   YourName Dev Child — custom.css
   Loaded on top of Twenty Twenty-Five + theme.json globals.
   ========================================================= */

/* ---------- HEADER ---------- */
.site-header-block{
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 14px 32px;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header-block .wp-block-site-title a{
  color: var(--wp--preset--color--text-light);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-header-block .wp-block-site-title a span.accent{
  background: linear-gradient(90deg, var(--wp--preset--color--amber), var(--wp--preset--color--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Navigation block */
.primary-nav-block{
  --wp--custom--nav-gap: 4px;
}
.primary-nav-block .wp-block-navigation-item > a{
  color: var(--wp--preset--color--text-light) !important;
  font-weight: 500;
  border-radius: 999px;
  padding: 8px 14px !important;
  transition: background .2s ease, color .2s ease;
}

/* "world" grouping via submenu-style classNames set per-link in the editor */
.primary-nav-block .nav-dev > a:hover{
  background: rgba(16,185,129,0.18);
  color: #6ee7b7 !important;
}
.primary-nav-block .nav-travel > a:hover{
  background: rgba(245,158,11,0.20);
  color: #fcd34d !important;
}

/* Mobile overlay menu (core Navigation block handles the toggle itself) */
.primary-nav-block .wp-block-navigation__responsive-container.is-menu-open{
  background: var(--wp--preset--color--slate-900) !important;
}

.btn-contact .wp-block-button__link{
  background: var(--wp--preset--color--emerald) !important;
  color: #052e21 !important;
  font-weight: 700;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}
.btn-contact .wp-block-button__link:hover{
  background: var(--wp--preset--color--emerald-dark) !important;
}

/* ---------- HERO ---------- */
.hero-block{
  padding: 96px 32px 80px;
  text-align: center;
  background: var(--wp--preset--color--bg-light);
}
.hero-block h1{
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero-block .accent-dev{ color: var(--wp--preset--color--emerald); }
.hero-block .accent-travel{ color: var(--wp--preset--color--amber); }
.hero-block p.lead{
  max-width: 640px;
  margin: 0 auto 12px;
  color: var(--wp--preset--color--slate-600);
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn-secondary .wp-block-button__link{
  background: #fff !important;
  color: var(--wp--preset--color--amber-dark) !important;
  border: 2px solid var(--wp--preset--color--amber) !important;
  border-radius: 999px !important;
  font-weight: 700;
  padding: 12px 26px !important;
}
.btn-secondary .wp-block-button__link:hover{
  background: var(--wp--preset--color--amber) !important;
  color: #3b2205 !important;
}

/* ---------- SECTION HEADS ---------- */
.section-head{ text-align: center; max-width: 620px; margin: 0 auto 40px; }
.eyebrow{
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow-dev{ background: rgba(16,185,129,0.12); color: var(--wp--preset--color--emerald-dark); }
.eyebrow-travel{ background: rgba(245,158,11,0.14); color: var(--wp--preset--color--amber-dark); }

/* ---------- SMALL BUSINESS CARDS ---------- */
.card-block{
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card-block:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  border-color: rgba(16,185,129,0.4);
}
.card-icon{
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(16,185,129,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ---------- APPS SECTION ---------- */
.apps-section-block{
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  border-radius: 28px;
  padding: 56px 32px;
}
.app-card-block{
  background: var(--wp--preset--color--slate-900);
  color: var(--wp--preset--color--text-light);
  border-radius: 18px;
  overflow: hidden;
}
.app-mockup{
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem;
  background: linear-gradient(135deg, var(--wp--preset--color--amber) 0%, var(--wp--preset--color--emerald) 100%);
}
.app-card-block .app-body{ padding: 20px; }
.app-tag{
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  margin-right: 6px;
  display: inline-block;
}

/* ---------- FOOTER ---------- */
.site-footer-block{
  background: var(--wp--preset--color--slate-900);
  color: #94a3b8;
  padding: 56px 32px 0;
}
.site-footer-block h4{
  color: var(--wp--preset--color--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.site-footer-block a{ color: #94a3b8; }
.site-footer-block a:hover{ color: var(--wp--preset--color--emerald); }

.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 8px;
}
.footer-social a:hover{
  background: var(--wp--preset--color--emerald);
  color: #052e21 !important;
}

.newsletter-form-wrap input[type="email"]{
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--wp--preset--color--text-light);
  margin-right: 8px;
}
.newsletter-form-wrap button{
  background: var(--wp--preset--color--emerald);
  color: #052e21;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom-block{
  text-align: center;
  padding: 22px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}
.footer-bottom-block a{ color: var(--wp--preset--color--amber); }
