@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #000957;
  --secondary-color: #344CB7;
  --accent-color: #577BC1;
  --light-color: #1ABC9C;
  --dark-color: #000533;
  --gradient-primary: linear-gradient(135deg, #344CB7 0%, #000957 100%);
  --hover-color: #26388A;
  --background-color: #0a0e27;
  --text-color: #E2E8F0;
  --border-color: rgba(87, 123, 193, 0.3);
  --divider-color: rgba(87, 123, 193, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #F1C40F;
  --main-font: 'Source Sans Pro', sans-serif;
  --alt-font: 'Work Sans', sans-serif;
}

html { scroll-behavior: smooth; }

#nav-toggle:checked ~ .navigation {
    display: block !important;
}

.hero-section {
    min-height: 75vh;
    background: linear-gradient(to right, rgba(0, 9, 87, 0.9), rgba(0, 9, 87, 0.2)), url('./img/bg.jpg') no-repeat center center/cover;
}

.cta-1-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./img/bg.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}

.cta-2-section {
    background: url('./img/bg.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.cta-2-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(45deg, rgba(0, 9, 87, 0.8), rgba(52, 76, 183, 0.8));
}

details summary::-webkit-details-marker { display: none; }
details summary::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; float: right; transition: transform 0.3s; }
details[open] summary::after { transform: rotate(180deg); }