/* Варіант 2: style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #0F1021;
  --secondary-color: #20B2AA;
  --accent-color: #E01171;
  --light-color: #FEFAE0;
  --dark-color: #000000;
  --gradient-primary: linear-gradient(135deg, #0F1021 0%, #20B2AA 100%);
  --hover-color: #1a1c38;
  --background-color: #121212;
  --text-color: #FEFAE0;
  --border-color: rgba(32, 178, 170, 0.3);
  --divider-color: rgba(224, 17, 113, 0.4);
  --shadow-color: rgba(32, 178, 170, 0.15);
  --highlight-color: #FFD23F;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', sans-serif;
}

body {
    font-family: var(--alt-font);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    margin: 0;
}

/* Neuromorphism Dark Theme Styles */
.neuro-card {
    background: #1a1a2e;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.6), -5px -5px 15px rgba(40,40,60,0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.neuro-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.faq-item:hover {
    background-color: #22223b;
}

/* Header & Menu */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hover-underline:hover {
    text-decoration: underline;
    color: var(--highlight-color) !important;
}

/* CTA Buttons */
.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
}

.cta-button:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* Mobile Navigation Hack */
@media (max-width: 768px) {
    .navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #1a1a2e;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    }
    .hamburger {
        display: block;
        cursor: pointer;
    }
    #nav-toggle:checked ~ .navigation {
        display: block;
    }
    .navigation ul {
        flex-direction: column;
        gap: 20px;
    }
}