/*!
Theme Name: Belle
Author: Compar
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: belle
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Belle is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* style.css (append below theme header) */
:root{
  --bg:#F6F4F2;
  --surface:#EEE7E1;
  --text:#1C1C1C;
  --muted:#8E8A87;
  --line:#D9D2CC;
  --accent:#E6DDD6;
  --accent-dark:#CFC4BC;

  --font-serif:"Cormorant Garamond","Playfair Display",Georgia,serif;
  --font-sans:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;

  --radius-sm:8px;
  --radius-md:12px;
  --container:1100px;

  --space-3:16px;
  --space-4:24px;
  --space-5:32px;
  --space-6:48px;
  --space-7:72px;
  --space-8:96px;

  --border:1px solid var(--line);
}

html,body{background:var(--bg);color:var(--text);}
body{font-family:var(--font-sans);font-size:16px;line-height:1.7;margin:0;}

h1,h2,h3{font-family:var(--font-serif);line-height:1.15;margin:0 0 var(--space-3);}
h1{font-size:clamp(40px,5vw,56px);}
h2{font-size:clamp(28px,3vw,40px);}
p{margin:0 0 var(--space-4);}
.muted{color:var(--muted);}
.micro{color:var(--muted);font-size:14px;margin-top:var(--space-4);}

.container{max-width:var(--container);margin:0 auto;padding:0 var(--space-4);}
.section{padding:var(--space-8) 0;}
@media (max-width:768px){.section{padding:var(--space-6) 0;}}

.site-header{position:sticky;top:0;background:rgba(246,244,242,0.8);backdrop-filter:blur(10px);border-bottom:var(--border);}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 0;}
.logo{font-family:var(--font-serif);font-size:22px;text-decoration:none;color:var(--text);}

.nav-list{list-style:none;display:flex;gap:22px;margin:0;padding:0;}
.nav-list a{text-decoration:none;color:var(--text);border-bottom:1px solid transparent;}
.nav-list a:hover{border-bottom-color:var(--accent-dark);}

.btn-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:var(--space-4);}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 26px;border-radius:var(--radius-sm);
  border:var(--border);background:transparent;color:var(--text);
  text-decoration:none;transition:background .15s ease,border-color .15s ease,transform .15s ease;
}
.btn:hover{background:var(--accent);border-color:var(--accent-dark);transform:translateY(-1px);}
.btn-primary{background:var(--accent);border-color:var(--accent-dark);}
.btn-primary:hover{background:var(--accent-dark);}

.grid{display:grid;gap:var(--space-4);}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr));}
@media (max-width:900px){.grid-3{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:600px){.grid-3{grid-template-columns:1fr;}}

.card{
  background:var(--surface);
  border:var(--border);
  border-radius:var(--radius-md);
  padding:var(--space-5);
}
.card-title{font-family:var(--font-serif);font-size:22px;margin:0 0 12px;}
.card-text{color:var(--muted);margin:0 0 16px;}

.site-footer{border-top:var(--border);padding:var(--space-7) 0 var(--space-5);}
.footer-grid{display:grid;gap:var(--space-5);grid-template-columns:repeat(3,minmax(0,1fr));}
@media (max-width:800px){.footer-grid{grid-template-columns:1fr;}}
.footer-title{font-family:var(--font-serif);margin:0 0 12px;}
.footer-list{list-style:none;margin:0;padding:0;display:grid;gap:10px;}
.footer-list a{text-decoration:none;color:var(--muted);}
.footer-list a:hover{color:var(--text);}

.footer-bottom{padding-top:var(--space-5);color:var(--muted);font-size:14px;}