
/* Main stylesheet for AdsAgency-GB */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Inter:wght@300;400;600&display=swap');
:root{ --primary: #0A3A45; --accent: #0A574F; --bg:#fcfcfb; --text:#0b1b1b; }
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter, sans-serif;background:var(--bg);color:var(--text);}
a{color:var(--primary);text-decoration:none}
.header{background:white;border-bottom:1px solid #e8e8e8;box-shadow:0 6px 18px rgba(10,58,69,0.03)}
.container{max-width:1100px;margin:0 auto;padding:24px}
.brand{display:flex;align-items:center;gap:16px}
.brand h1{font-family:Merriweather, serif;margin:0;color:var(--primary);font-size:20px;letter-spacing:0.6px}
.nav{display:flex;gap:18px;align-items:center}
.cta{background:var(--primary);color:white;padding:10px 16px;border-radius:8px;font-weight:600}

/* Hero */
.hero{display:flex;gap:40px;align-items:center;padding:60px 0}
.hero .left{flex:1}
.hero h2{font-family:Merriweather, serif;font-size:40px;margin:0 0 10px;color:var(--primary);}
.hero p{font-size:18px;margin:0 0 18px;color:#334} 
.hero .btn{background:var(--primary);color:white;padding:12px 18px;border-radius:8px;font-weight:600}
.hero .right{flex:1;display:flex;justify-content:center}

/* Cards */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:40px 0}
.card{background:white;padding:20px;border-radius:10px;box-shadow:0 8px 24px rgba(10,58,69,0.06)}
.card h3{font-family:Merriweather, serif;margin:0 0 8px;color:var(--primary)}

/* Footer */
.footer{background:#071f20;color:#bdcfcf;padding:40px 0;margin-top:40px}
.footer a{color:#e7f5f4}

/* Responsive */
@media (max-width:900px){.cards{grid-template-columns:1fr}.hero{flex-direction:column}.nav{display:none}}

/* Utilities */
.center{text-align:center}
.section{padding:40px 0}

/* Haussmannian touches: serif headings, muted palette, spacious margins */
h1,h2,h3,h4{font-family:Merriweather, serif}

/* Simple form */
form input, form textarea{width:100%;padding:12px;border:1px solid #e6e6e6;border-radius:8px;margin-bottom:8px}
form button{background:var(--accent);color:white;padding:12px;border-radius:8px;border:none;font-weight:600}
