/* ====== Головні налаштування ====== */

body {
    margin: 0;
    padding: 0;
    background: #0b0b0e;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ====== Навігаційна панель (header) ====== */

.navbar {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #5910ff;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 22px;
    font-weight: bold;
    color: #caa8ff;
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    color: #d8b2ff;
    font-size: 18px;
    font-weight: bold;
    transition: 0.2s;
}

.navbar nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px #b46aff;
}

/* ====== Головна сторінка (Hero) ====== */

.hero {
    text-align: center;
    padding-top: 150px;
}

.hero h1 {
    font-size: 70px;
    background: linear-gradient(90deg, #9d4dff, #d174ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    margin-top: -10px;
    font-size: 18px;
    color: #cfaaff;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: linear-gradient(90deg, #8e3dff, #c15bff);
    border-radius: 10px;
    color: white;
    font-weight: bold;
    transition: 0.25s;
    box-shadow: 0 0 15px #8c3aff;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #b564ff;
}

/* ====== About Page ====== */

.about {
    padding-top: 140px;
    width: 70%;
    margin: auto;
    font-size: 20px;
    line-height: 1.7;
    text-align: left;
}

.about h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #dba8ff;
}
