/* =========================================================
   DELECON® CITY GOLD FOUNDATION — city-gold-new.css
   Purpose: Replace inline <style> block only (NO HTML change)
   Theme: Luxury Authority Grid + Superlative SEO Page
   ========================================================= */

/* ---------- ROOT / GLOBAL ---------- */
:root{
  --gold:#c5a059;
  --deep:#111;
  --text:#333;
  --muted:#555;
  --line:#eee;
  --soft:#fdfaf4;
  --bg:#ffffff;
  --radius-lg:24px;
  --radius-md:20px;
  --radius-sm:12px;
  --shadow-soft:0 15px 45px rgba(0,0,0,0.15);
  --shadow-card:0 14px 35px rgba(15, 15, 15, 0.08);
  --shadow-hover:0 18px 55px rgba(15, 15, 15, 0.12);
}

/* Smooth premium feel */
html{
  scroll-behavior:smooth;
}

body.delecon-foundation{
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- MASTER AUTHORITY SPACING ---------- */
.wrap, .dcc-sec, .section-gap{
  width:100%;
  max-width:1240px;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:20px !important;
  padding-right:20px !important;
  box-sizing:border-box;
}

@media (min-width:768px){
  .wrap, .dcc-sec, .section-gap{
    padding-left:40px !important;
    padding-right:40px !important;
  }
}

/* Better vertical rhythm */
.dcc-sec{
  margin-top: 18px;
  margin-bottom: 18px;
}

.section-gap{
  margin-top: 26px;
  margin-bottom: 26px;
}

/* ---------- HERO IMAGE ABOVE TITLE ---------- */
.dcc-hero-top{
  width:100%;
  margin-bottom:30px;
  position: relative;
}

.dcc-hero-top img{
  width:100%;
  height:auto;
  border-radius: var(--radius-lg);
  display:block;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197,160,89,0.25);
  transform: translateZ(0);
}

/* Subtle luxury overlay (doesn't alter image) */
.dcc-hero-top::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--radius-lg);
  pointer-events:none;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.00) 45%, rgba(0,0,0,0.10));
}

/* ---------- EYEBROW TEXT ---------- */
.dcc-eyebrow{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(197,160,89,0.12);
  border: 1px solid rgba(197,160,89,0.35);
  box-shadow: 0 10px 25px rgba(197,160,89,0.10);
  margin-bottom: 14px;
}

/* ---------- CARDS & SEO CONTAINERS ---------- */
.dcc-card{
  background:#fff;
  border:1px solid var(--line);
  padding: clamp(25px, 5vw, 50px);
  border-radius: var(--radius-md);
  margin-bottom: 35px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dcc-card:hover{
  transform: translateY(-3px);
  border-color: rgba(197,160,89,0.55);
  box-shadow: var(--shadow-hover);
}

/* Black premium section card: keep sharp luxury */
.dcc-card[style*="background: #111"],
.dcc-card[style*="background:#111"],
.dcc-card[style*="background: #111;"]{
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
  border: 1px solid rgba(197,160,89,0.35) !important;
}

/* SEO text layout */
.seo-rich-text{
  line-height:1.85;
  color:#444;
  font-size:1.05rem;
}

.seo-rich-text h2,
.seo-rich-text h3{
  color: var(--deep);
  margin-top: 30px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.seo-rich-text h2{
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.seo-rich-text h3{
  font-size: clamp(1.12rem, 1.9vw, 1.45rem);
  margin-top: 22px;
}

/* More premium paragraph width */
.seo-rich-text p{
  max-width: 980px;
}

/* Better ul look */
.seo-rich-text ul{
  padding-left: 18px;
  margin-top: 12px;
}

.seo-rich-text ul li{
  margin-bottom: 10px;
}

/* Highlight box = premium gold callout */
.highlight-box{
  border-left: 6px solid var(--gold);
  padding-left: 20px;
  background: var(--soft);
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 25px 0;
  border-radius: 16px;
  border: 1px solid rgba(197,160,89,0.18);
  box-shadow: 0 10px 30px rgba(197,160,89,0.08);
}

/* ---------- LINK GRID (LIGHTEST GOLD SHADE) ---------- */
.link-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.link-grid a{
  background:#fff;
  border:1px solid var(--line);
  padding: 16px 16px;
  border-radius: var(--radius-sm);
  text-decoration:none;
  color:#222;
  transition: 0.25s ease;
  display:block;
  position: relative;
  overflow: hidden;
}

/* ---------- LINK GRID (LIGHT GOLD BUTTONS | NO SHADE) ---------- */
.link-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.link-grid a{
  background: #fffaf0; /* light gold button */
  border: 1px solid rgba(197,160,89,0.35);
  padding: 16px 16px;
  border-radius: var(--radius-sm);
  text-decoration:none;
  color:#111; /* black text */
  transition: 0.25s ease;
  display:block;
  position: relative;
  overflow: hidden;
}

/* REMOVE GOLD SHADE PATCH COMPLETELY */
.link-grid a::after{
  display:none !important;
  content:none !important;
}

.link-grid a:hover{
  border-color: rgba(197,160,89,0.70);
  transform: translateY(-2px);
  box-shadow: 0 14px 45px rgba(15,15,15,0.10);
}

.link-grid a strong{
  display:block;
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: -0.1px;
  margin-bottom: 6px;
  color:#111;
}

.link-grid a span{
  display:block;
  font-size: 0.95rem;
  color:#222;
  font-weight: 600;
}


/* ---------- CTA BUTTON POLISH (your inline styles stay, this enhances) ---------- */
a[style*="Get Started Now"],
a[href="/contact-us.html"][style*="padding:20px 50px"]{
  box-shadow: 0 20px 55px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.16);
  letter-spacing: 0.5px;
}

a[href="/contact-us.html"][style*="padding:20px 50px"]:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 65px rgba(0,0,0,0.30);
}

/* ---------- MAP CARD BEAUTIFY ---------- */
iframe{
  border-radius: 18px;
}

/* ---------- MOBILE POLISH ---------- */
@media (max-width: 520px){
  .seo-rich-text{
    font-size: 1.02rem;
  }

  .dcc-card{
    border-radius: 18px;
  }

  .dcc-hero-top img{
    border-radius: 18px;
  }

  .highlight-box{
    padding-left: 16px;
    border-radius: 14px;
  }
}

/* ---------- ACCESSIBILITY / FOCUS ---------- */
a:focus{
  outline: 2px solid rgba(197,160,89,0.75);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ---------- OPTIONAL: Make headings feel premium ---------- */
h1{
  letter-spacing: -0.4px;
}

strong{
  color: #151515;
}/* ✅ Lighter overlay so face is visible */
.video-play-btn{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;

  /* lighter overlay */
  background: linear-gradient(180deg,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.35)
  );

  display: grid;
  place-items: center;
  z-index: 2;
}

/* ✅ Smaller play icon */
.video-play-icon{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(197,160,89,0.92);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  margin: 0 auto;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

/* ✅ Put "Play Video" text below, small */
.video-play-text{
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.95;
}

/* ✅ Move play button lower so it won’t cover face */
.video-play-btn{
  place-content: end center;
  padding-bottom: 26px;
}