@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

:root {
  --primary-color: #E74C3C;
  --secondary-color: #C0392B;
  --accent-color: #F1C40F;
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #F1C40F 0%, #E74C3C 100%);
  --hover-color: #C0392B;
  --background-color: #F2F2F2;
  --text-color: #4B5563;
  --border-color: rgba(231, 76, 60, 0.2);
  --divider-color: rgba(192, 57, 43, 0.1);
  --shadow-color: rgba(192, 57, 43, 0.1);
  --highlight-color: #27AE60;
  --main-font: 'Playfair Display', sans-serif;
  --alt-font: 'Poppins', serif;
}

body {
  background: url('../img/pattern.png') repeat, var(--background-color);
  background-size: 200px;
  background-attachment: fixed;
}

header .navigation {
  display: none;
}

header input:checked~.navigation {
  display: flex;
}

.text-underline:hover {
  text-decoration: underline;
  color: var(--highlight-color);
}

section .container div:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

button:hover {
  background: var(--hover-color);
  transition: background 0.3s ease;
}