/* Варіант 4: style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #2C3E50;
  --secondary-color: #C0392B;
  --accent-color: #27AE60;
  --light-color: #FDFEFE;
  --dark-color: #1A252F;
  --background-color: #F4F6F7;
  --text-color: #2C3E50;
  --border-color: rgba(44, 62, 80, 0.1);
  --divider-color: rgba(192, 57, 43, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.05);
  --highlight-color: #F39C12;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Soft UI panels for subtle depth */
.soft-ui-panel {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.soft-ui-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom Header links */
.custom-hover {
    position: relative;
    padding-bottom: 5px;
}

.custom-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.custom-hover:hover::after {
    width: 100%;
}

/* Mobile menu toggle hack */
#toggle-menu:checked ~ .responsive-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding: 1rem;
}