:root{
  --c-red:#FF5F5F;
  --c-yellow:#FBAF00;
  --c-sun:#FFD639;
  --c-blue:#007CBE;
  --c-green:#00AF54;

  --text:#0f172a;
  --muted:#475569;
  --bg:#ffffff;
  --surface:#f8fafc;
}

*{box-sizing:border-box}

html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, rgba(255,95,95,0.06), rgba(255,255,255,1) 35%);
}

a{color:inherit; text-decoration:none}

/* Navbar */
.site-navbar{
  position:sticky;
  top:0;
  z-index:1030;
  backdrop-filter:saturate(140%) blur(10px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.navbar-brand-logo{
  display:flex;
  align-items:center;
  gap:.75rem;
  font-weight:800;
}

.navbar-brand-logo img{
  height:40px;
  width:auto;
  border-radius:12px;
  background:#fff;
}

.nav-link{
  font-weight:600;
  color:#0f172a !important;
  padding:.5rem .75rem !important;
  border-radius:10px;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.nav-link:hover,
.nav-link:focus-visible{
  background: rgba(0,124,190,0.12);
  color: var(--c-blue) !important;
  outline:none;
}

.cta-btn{
  font-weight:800;
  background: linear-gradient(135deg, var(--c-blue), #0a88d5);
  border:0;
  border-radius: 14px;
  padding:.7rem 1rem;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.cta-btn:hover,
.cta-btn:focus-visible{
  background: linear-gradient(135deg, var(--c-green), #10c861);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,175,84,0.18);
}

/* Buttons */
.btn-accent{
  background: var(--c-blue);
  color:#fff;
  border:0;
  border-radius: 14px;
  padding: .65rem 1rem;
  font-weight:800;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-accent:hover,
.btn-accent:focus-visible{
  background: var(--c-green);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,175,84,0.18);
  color:#fff;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
}

.hero .hero-bg{
  position:absolute;
  inset:-80px -80px auto -80px;
  height: 420px;
  background: radial-gradient(circle at 30% 25%, rgba(251,175,0,0.25), transparent 55%),
              radial-gradient(circle at 70% 20%, rgba(255,95,95,0.22), transparent 55%),
              radial-gradient(circle at 60% 65%, rgba(255,214,57,0.30), transparent 55%);
  pointer-events:none;
}

.hero .hero-card{
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,23,42,0.08);
}

.hero .hero-image{
  border-radius: 26px;
  border: 1px solid rgba(15,23,42,0.08);
  overflow:hidden;
  background:#fff;
}

.hero .hero-image img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero .hero-image-full{
  position:relative;
  height: 420px;
}

.hero-image-caption{
  position:absolute;
  left:18px;
  bottom:18px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.45rem .8rem;
  background: rgba(255,95,95,0.10);
  border: 1px solid rgba(255,95,95,0.22);
  border-radius: 999px;
  color:#b42318;
  font-weight:800;
  letter-spacing:.2px;
}

/* Sections */
.section-title{
  font-weight:900;
  letter-spacing:-0.02em;
}

.section-accent-bar{
  width: 74px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-red), var(--c-yellow), var(--c-sun));
}

.card-soft{
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 20px;
  background: rgba(248,250,252,0.7);
}

.list-check li{
  position:relative;
  padding-left: 1.7rem;
  margin:.55rem 0;
  color: var(--muted);
  font-weight:600;
}

.list-check li::before{
  content:"";
  position:absolute;
  left:0;
  top:.35rem;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(0,124,190,0.14);
  border: 1px solid rgba(0,124,190,0.25);
}

.list-check li::after{
  content:"";
  position:absolute;
  left: .42rem;
  top:.58rem;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--c-green);
  border-bottom: 2px solid var(--c-green);
  transform: rotate(-45deg);
}

/* Footer */
.footer{
  background: linear-gradient(180deg, rgba(255,95,95,0.08), rgba(255,255,255,0.9));
  border-top: 1px solid rgba(15,23,42,0.08);
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item{
  grid-column: span 4;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,0.08);
  background:#fff;
  position:relative;
}

@media (max-width: 992px){
  .gallery-item{grid-column: span 6;}
}
@media (max-width: 576px){
  .gallery-item{grid-column: span 12;}
}

.gallery-item img{
  width:100%;
  height: 220px;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  transition: transform .25s ease;
}

.gallery-item:hover img{
  transform: scale(1.08);
}

.gallery-item .overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding: .9rem .9rem .8rem;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.55));
}

.gallery-item .overlay .caption{
  color:#fff;
  font-weight:900;
}

.badge-accent{
  background: rgba(0,124,190,0.12);
  color: var(--c-blue);
  border: 1px solid rgba(0,124,190,0.22);
  font-weight:800;
}

kbd.kbd-accent{
  background: rgba(0,124,190,0.12);
  color: var(--c-blue);
  border-radius: 8px;
  padding: .15rem .45rem;
  border:1px solid rgba(0,124,190,0.22);
}

