/* Landing Selector — ELM × EL MAHATTA  */
:root{
  --bg:#0a0a0b;
  --fg:#f5f5f6;
  --muted:#a0a3a8;
  --line:#1b1b1d;
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: Helvetica, Arial, sans-serif;
  line-height:1.6;
}

a {
  text-decoration: none;
}


.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height:100vh;
}

.col{
  display:grid;
  place-items:center;
  padding:0vw;
  border-right:1px solid var(--line);
}

.col:last-child{
  border-right:none;
}

.card{
  text-align:center;
  max-width:520px;
  padding:3rem 2rem;
  border-radius:16px;
  background:transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.card p {
  text-decoration: none;
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  background:#131316;
}

.logo-moutanakil{
  height: 180px;
  margin:0 auto 1rem;
  display:block;
  filter:grayscale(1);
   transition: filter 0.4s ease, transform 0.3s ease;
}

.logo{
  height: 180px;
  margin:0 auto 1rem;
  display:block;
  filter:grayscale(1);
   transition: filter 0.4s ease, transform 0.3s ease;
}

.card:hover .logo {
  filter: grayscale(0);
  transform: scale(1.15);
}

h1{
  font-family:Arial, Helvetica, sans-serif;
  letter-spacing:.08em;
  font-size:clamp(1.4rem, 3vw + .5rem, 2rem);
  margin:.25rem 0 .5rem;
}

p{
  color:var(--muted);
  margin:0 0 1rem;
}

.btn{
  display:inline-block;
  border:1px solid var(--muted);
  padding:8px 24px;
  border-radius:1px;
  color:var(--muted);
  text-decoration:none;
  background: var(--line);
}
.btn:hover{
  background:var(--fg);
  color:var(--bg);
  border-color:var(--bg);
  cursor:pointer;
}

.tag{
  display:inline-block;
  padding:4px 8px;
  margin-top:.25rem;
  color:var(--muted);
  font-size:.85rem;
}



@media (max-width:900px){
  .split{ grid-template-columns:1fr; }
  .col{ border-right:none; border-bottom:1px solid var(--line); }
  .col:last-child{ border-bottom:none; }
}

footer{
  position:fixed;
  inset:auto 0 0 0;
  text-align:center;
  color:var(--muted);
  border-top:1px solid var(--line);
  background:rgba(10,10,12,.6);
  padding:.6rem;
}
