@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* --- основні налаштування сторінки ---*/
:root {
    --primary-color: #6a4c93;
    --light-bg: #d9bfe6;
}
* {
   margin: 0px; 
   padding: 0px;
}
body {    
    background-color: rgb(255, 255, 255);
    font-family: 'Nunito', sans-serif1;
    line-height: 1.6;
    color: #333;
}
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;    
    color: var(--primary-color);
}
ul {
    list-style: none;
}
a {
    text-decoration: none;    
}

/* --- Хедер --- */
header {        
    background-color: rgb(255, 255, 255);
    position:fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 15px 0px;
    box-shadow: 0px 2px 10px rgba(0,0,0, 0.2);
    z-index: 100;    
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-content ul {
    display: flex;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 50px;
    margin-right: 10px;
}
nav ul li {
    margin-left: 25px;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}
nav ul a {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 20px;
}
nav ul a:hover {
    background-color: var(--light-bg);
}

main {
    margin-top: 80px;
}

/* --- hero --- */
.hero {
    position: relative;
    background-color: #f0f8ff;
    overflow: hidden;
    padding: 100px 0 50px 0;
}