@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #2C3E50;
  --secondary-color: #34495E;
  --accent-color: #E74C3C;
  --light-color: #ECF0F1;
  --dark-color: #1a252f;
  --gradient-primary: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  --hover-color: #34495E;
  --background-color: #FAFAFA;
  --text-color: #333333;
  --border-color: rgba(44, 62, 80, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.1);
  --highlight-color: #FFD700;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
#menu-toggle:checked ~ .navigation { display: block !important; }

.hero-section {
    min-height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./img/bg.jpg') no-repeat center center/cover;
}

.cta-1-section, .cta-2-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/bg.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
details[open] summary ~ * { animation: sweep .5s ease-in-out; }
@keyframes sweep { 0%    {opacity: 0; margin-top: -10px} 100%  {opacity: 1; margin-top: 0px} }