@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Палітра Blue/Orange */
  --primary-color: #2980B9;
  --secondary-color: #34495E;
  --accent-color: #E67E22;
  --light-color: #F4F6F7;
  --dark-color: #1A252F;
  --gradient-primary: linear-gradient(135deg, #2980B9 0%, #2C3E50 100%);
  --hover-color: #3498DB;
  --background-color: #ECF0F1;
  --text-color: #2C3E50;
  --border-color: rgba(41, 128, 185, 0.3);
  --divider-color: rgba(44, 62, 80, 0.2);
  --shadow-color: rgba(44, 62, 80, 0.2);
  --highlight-color: #F39C12;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Roboto', sans-serif;
}

body { font-family: var(--alt-font); background-color: var(--background-color); color: var(--text-color); margin: 0; line-height: 1.6; }
h1, h2, h3, h4 { font-family: var(--main-font); font-weight: 700; }
section:not(.hero-section) { padding-top: 10dvh; padding-bottom: 10dvh; }
.container { max-width: 1200px; margin: 0 auto; }

/* Neumorphism / Material Card Style */
.feature-card {
    background: #ffffff;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 4px 6px var(--shadow-color), 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.3s ease-in-out;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px var(--shadow-color);
}

/* Header & Mobile Menu */
header { background: var(--dark-color); color: white; padding: 15px 0; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.nav-links a:hover { color: var(--accent-color); }

#menu-btn { display: none; }
.menu-icon { display: none; cursor: pointer; font-size: 1.5rem; }

@media (max-width: 768px) {
    .menu-icon { display: block; }
    .nav-links {
        display: none; width: 100%; position: absolute; top: 70px; left: 0; background: var(--dark-color);
        flex-direction: column; text-align: center; padding: 20px 0; z-index: 999;
    }
    #menu-btn:checked ~ .nav-links { display: flex; }
}

/* Specific elements */
.cta-button {
    background: var(--accent-color);
    color: white;
    padding: 15px 35px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    transition: background 0.3s;
}
.cta-button:hover { background: #d35400; }