@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #8E44AD;
  --secondary-color: #9B59B6;
  --accent-color: #3498DB;
  --light-color: #F3EBFF;
  --dark-color: #5B2C6F;
  --gradient-primary: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
  --hover-color: #7D3C98;
  --background-color: #FFFFFF;
  --text-color: #2C3E50;
  --border-color: rgba(142, 68, 173, 0.2);
  --divider-color: rgba(142, 68, 173, 0.1);
  --shadow-color: rgba(142, 68, 173, 0.1);
  --highlight-color: #FFEB00;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }
#menu-toggle:checked ~ .navigation { display: flex !important; }

.hero-section {
    min-height: 80vh;
    background: linear-gradient(to right, rgba(91, 44, 111, 0.9), rgba(91, 44, 111, 0.3)), url('./img/bg.jpg') no-repeat right center/cover;
}

.cta-1-section, .cta-2-section {
    background: url('./img/bg.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.cta-1-section::before, .cta-2-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; float: right; font-size: 1.5em; line-height: 0.5; }
details[open] summary::after { content: '-'; }