
/*
Theme Name: CloudHost Pro
Author: XcellHost
Description: Modern cloud hosting SaaS WordPress theme
Version: 1.0
*/

:root{
 --primary:#2563eb;
 --dark:#0f172a;
 --light:#f8fafc;
}

body{
 margin:0;
 font-family:Inter,Arial,sans-serif;
 color:#1e293b;
}

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

.header{
 background:#fff;
 border-bottom:1px solid #e5e7eb;
 padding:18px 0;
 position:sticky;
 top:0;
}

.nav{
 display:flex;
 justify-content:space-between;
 align-items:center;
}

.logo{
 font-size:26px;
 font-weight:700;
 color:var(--primary);
}

.menu a{
 margin:0 14px;
 text-decoration:none;
 color:#334155;
}

.hero{
 background:linear-gradient(135deg,#eff6ff,#ffffff);
 padding:90px 0;
 text-align:center;
}

.hero h1{
 font-size:52px;
 color:var(--dark);
}

.btn{
 display:inline-block;
 background:var(--primary);
 color:white;
 padding:14px 30px;
 border-radius:8px;
 text-decoration:none;
}

.cards{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
 gap:25px;
 padding:60px 0;
}

.card{
 padding:30px;
 border-radius:16px;
 box-shadow:0 10px 30px #0001;
 background:white;
}

footer{
 background:#0f172a;
 color:white;
 padding:40px 0;
}
