/*
Theme Name: Veqlt
Theme URI: https://www.veq.lt
Author: veq
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: veqlt
*/

:root{
  --bg:#0a0a0a;
  --white:#f5f5f5;
  --muted:#8a8a8a;
  --border:#242424;
  --flame1:#ff5b1f;
  --flame2:#ff2d55;
  --flame3:#ffb020;
}

html, body{
  height:100%;
}

.site-wrapper{
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
}

.site-main{
  flex:1 0 auto;
}

body{
  background:var(--bg);
  color:var(--white);
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{
  color:inherit;
  text-decoration:none;
}

.preview-badge{
  position:fixed;
  top:12px;
  right:12px;
  background:#fff;
  color:#111;
  font-size:12px;
  font-weight:600;
  padding:6px 12px;
  border-radius:20px;
  z-index:99;
  opacity:.85;
}

.site-footer{
  background:var(--bg);
  padding-top:70px;
  position:relative;
  overflow:hidden;
}

.footer-top{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  padding-bottom:36px;
}

.footer-top-left h2{
  font-size:56px;
  margin:0 0 12px;
  font-weight:500;
}

.footer-top-left p{
  color:var(--muted);
  max-width:480px;
  margin:0;
  font-size:16px;
  line-height:1.5;
}

.footer-top .email a{
  font-size:38px;
  border-bottom:1px solid var(--white);
  padding-bottom:6px;
}

.email a:hover {
	color:#ff5b1f;
}

.footer-divider{
  border:none;
  border-top:1px solid var(--border);
  margin:0;
}

.footer-columns{
  padding:40px 0 90px;
}

.footer-col h4{
  font-size:14px;
  margin:0 0 18px;
  color:var(--white);
  font-weight:600;
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:var(--muted);
  font-size:14px;
  transition:color .2s;
}

.footer-col ul li a:hover{
  color:var(--white);
}

.site-footer{
  flex-shrink:0;
}

.footer-flame{
  position:relative;
  min-height:45vh;
  min-height:45dvh;
  padding-top:clamp(60px, 12vh, 160px);
  padding-bottom:clamp(24px, 4vh, 48px);
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}

.footer-flame::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:100%;
  background:
    radial-gradient(60% 90% at 20% 100%, var(--flame1) 0%, transparent 60%),
    radial-gradient(50% 80% at 55% 100%, var(--flame2) 0%, transparent 65%),
    radial-gradient(55% 85% at 85% 100%, var(--flame3) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(10,10,10,.4) 40%, var(--bg) 92%);
  filter:blur(6px) saturate(1.3);
  opacity:.9;
  z-index:0;
}

.footer-flame__inner{
  position:relative;
  z-index:1;
}

.footer-flame .brand{
  font-size:clamp(70px,11vw,150px);
  font-weight:800;
  letter-spacing:-2px;
  line-height:1;
  margin:0;
  color:#fff;
}

.footer-flame .brand sup{
  font-size:.25em;
  vertical-align:super;
  font-weight:700;
}

.footer-flame__bottom{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  margin-top:40px;
  font-size:13px;
  color:var(--muted);
}

.footer-widget{
  color:var(--muted);
  font-size:14px;
}

@media(max-width:900px){
  .footer-top-left h2{font-size:38px;}
  .footer-top .email a{font-size:26px;}
  .footer-flame .brand{font-size:16vw;}
}

@media(max-width:600px){
  .footer-flame__bottom{flex-direction:column;align-items:flex-start;gap:8px;}
}
