/*
Theme Name: ADYTAL Agency
Theme URI: https://adytal.com
Author: ADYTAL Marketing Agency
Description: Modern dark SaaS style digital marketing agency WordPress theme.
Version: 1.0
Text Domain: adytal
*/

:root{
  --bg:#0b0b14;
  --card:rgba(255,255,255,0.08);
  --text:#ffffff;
  --accent:#ffb300;
  --gradient:linear-gradient(135deg,#ff9900,#ffcc00);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

a{
  color:var(--accent);
  text-decoration:none;
}

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

header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(0,0,0,0.8);
  backdrop-filter:blur(10px);
}

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

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  text-align:center;
  background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.8)),
  url('https://images.unsplash.com/photo-1551434678-e076c223a692?q=80&w=1600') center/cover;
}

.hero-content h1{
  font-size:60px;
  margin-bottom:20px;
}

.hero-content p{
  max-width:700px;
  margin:auto;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:50px;
  background:var(--gradient);
  color:#000;
  font-weight:bold;
  margin:10px;
}

.section{
  padding:100px 0;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card{
  background:var(--card);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(15px);
  padding:30px;
  border-radius:20px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

footer{
  background:#050505;
  padding:40px 0;
  text-align:center;
}

@media(max-width:768px){
  .hero-content h1{
    font-size:38px;
  }
}
