
/*
Theme Name: Gago StaYoung
Author: ChatGPT
Version: 2.0
Description: Luxury Elementor-compatible biotech WordPress theme.
Text Domain: gago-stayoung
*/

:root{
  --gold:#d4a24c;
  --bg:#050505;
  --card:#0b0b12;
  --text:#ffffff;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,sans-serif;
}

header{
  background:#000;
  border-bottom:1px solid #222;
  position:sticky;
  top:0;
  z-index:999;
}

.container{
  width:90%;
  max-width:1400px;
  margin:auto;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  color:var(--gold);
  font-size:32px;
  font-weight:bold;
}

nav a{
  color:#fff;
  text-decoration:none;
  margin-left:20px;
  font-size:14px;
}

.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#050505,#111827);
  padding:80px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.hero h1{
  font-size:72px;
  line-height:1.1;
  color:var(--gold);
  margin-bottom:20px;
}

.hero p{
  color:#ccc;
  line-height:1.8;
  font-size:18px;
}

.btn{
  display:inline-block;
  margin-top:30px;
  background:var(--gold);
  color:#000;
  padding:15px 30px;
  border-radius:12px;
  text-decoration:none;
  font-weight:bold;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin:80px 0;
}

.card{
  background:var(--card);
  border:1px solid #222;
  border-radius:20px;
  padding:30px;
}

.card h3{
  color:var(--gold);
}

footer{
  border-top:1px solid #222;
  padding:50px 0;
  text-align:center;
  color:#999;
  margin-top:80px;
}

@media(max-width:900px){
  .hero-grid,
  .card-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:42px;
  }

  nav{
    display:none;
  }
}
