@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --bg-color: #FAFAFA;
    --text-main: #212121;
    --text-muted: #555555;
    --accent-pink: #D8B4B8; /* Оттенок цветов с визитки */
    --accent-green: #6B8E6B; /* Оттенок зелени с визитки */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; color: var(--text-main); }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:hover { color: var(--accent-green); }

/* Header & Nav */
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background-color: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.logo { font-family: var(--font-heading); font-size: 28px; font-weight: 600; letter-spacing: 2px; }
.logo span { color: var(--accent-pink); }
nav ul { list-style: none; display: flex; gap: 30px; }
nav ul li a { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* Hero Section */
.hero { height: 60vh; min-height: 400px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)), url('../assets/img/hero-bg.jpg') center/cover; padding: 0 20px; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: var(--text-muted); max-width: 600px; }
.btn { padding: 15px 30px; background-color: var(--accent-pink); color: #fff; text-transform: uppercase; font-size: 12px; letter-spacing: 2px; border: none; cursor: pointer; transition: background 0.3s; }
.btn:hover { background-color: var(--accent-green); }

/* Sections & Grids */
section { padding: 80px 5%; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.service-card { background: #fff; padding: 40px; text-align: center; border: 1px solid #f0f0f0; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }

/* Footer */
footer { background-color: #fff; padding: 40px 5%; text-align: center; border-top: 1px solid #eee; margin-top: 40px; }
.footer-info { margin-bottom: 20px; color: var(--text-muted); }

/* Mobile Menu */
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }
@media (max-width: 768px) {
    nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; padding: 20px 0; text-align: center; border-bottom: 1px solid #eee; }
    nav ul.active { display: flex; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 2rem; }
}