/* Базові стилі */
:root{
  --bg-dark:#0a1a2f;
  --accent:#2ED0FF;
  --muted:#aac4d6;
  --glass: rgba(255,255,255,0.06);
  --max-width:1200px;
}
 
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg-dark);
  color: #fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}
 
/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 28px;
  background: linear-gradient(
    to bottom,
    rgba(28,44,57,0.6),
    rgba(28,44,57,0.15)
  );
  backdrop-filter: blur(6px);
  z-index:40;
}
.logo{
  font-weight:600;
  letter-spacing:0.6px;
}
.main-nav a{
  color: var(--accent);
  text-decoration:none;
  margin-left:22px;
  font-size:0.95rem;
  opacity:0.92;
}
.main-nav a:hover{opacity:1; text-decoration:underline}
 
/* HERO (використовує локальне зображення як фон) */
.hero{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background-image: url('/mnt/data/5269520759179120547.jpg');
  background-size:cover;
  background-position:center;
  position:relative;
  padding-top:70px; /* для header */
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(20,28,35,0.45),
    rgba(20,28,35,0.65)
    );
  z-index:0;
}
.hero-overlay{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:var(--max-width);
  padding:40px 20px;
}
.hero h1{
  font-size: clamp(28px, 5vw, 48px);
  margin:0 0 10px 0;
  font-weight:700;
}
.lead{
  margin:0 0 22px 0;
  font-size:1.05rem;
  color: #eaf8ff;
}
.btn{
  display:inline-block;
  padding:12px 26px;
  border-radius:28px;
  border:2px solid var(--accent);
  text-decoration:none;
  color:#fff;
  font-weight:600;
  background:rgba(255, 255, 255, 0.04);
  transition: all .22s ease;
}
.btn:hover{
  background:#fff;
  color:var(--bg-dark);
  transform:translateY(-2px);
}
 
/* INFO */
.info{
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:space-between;
  max-width:var(--max-width);
  margin:60px auto;
  padding:40px 20px;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius:12px;
}
.info-text{flex:1}
.info-text h2{margin-top:0}
.info-figure{width:500px; text-align:center; margin:0}
.info-figure img{width:60%; border-radius:8px; display:block}
.info-figure{
  width:500px;
  margin:0;
  display:flex;             
  flex-direction:column;
  align-items:center;        
  text-align:center;
}

.info-text h2{
  margin-top:0;
  font-size: 1.9rem;     
}

.info-text li{
  font-size: 1.30rem;    
}


.info-figure img{
  width:60%;
  max-width:420px;
  border-radius:12px;
  display:block;
}

/* VIDEO BLOCK */
/* VIDEO BLOCK */
.blue-center {
    width: 100%;
    height: 300px;      
    background: #24C8FF;
    margin-bottom: 40px; 
}

.video-center {
    width: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;
}

.video-center video {
    width: 80%;          
    max-width: 1200px;   
    border-radius: 10px;
}
.clean-link {
    text-decoration: none;     
    color: inherit;          
    cursor: pointer;          
}

.clean-link:visited,
.clean-link:hover,
.clean-link:active {
    text-decoration: none;
    color: inherit;
}



.caption{color: var(--muted); margin-top:px}
 
/* BTS CARDS */
.bts{max-width:var(--max-width); margin:40px auto; padding:0 20px 60px}
.bts h3{margin-bottom:18px; text-align:left}
.cards{display:flex; gap:18px; flex-wrap:wrap}
.card{
  background: var(--glass);
  padding:18px;
  border-radius:10px;
  min-width:200px;
  flex:1;
  color: #e6f7ff;
}
 
/* FOOTER */
.site-footer{
  padding:34px 20px;
  text-align:center;
  background: #1C2C39;
  color: var(--muted);
  margin-top:40px;
}
 
/* RESPONSIVE */
@media (max-width:900px){
  .info{flex-direction:column; text-align:center}
  .info-figure{width:80%}
  .main-nav{display:none}
}
 
.moodboard{
  max-width: var(--max-width);
  margin: 60px auto;
  padding: 0 20px;
}
 
.moodboard-wrap img{
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}