*{
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: white;
}

html {
    height: 100%;
}

body {
    
    height: 100%;
    width: 100%;
    background: url(images/grey-bonsay.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* NAVBAR SIMPLU */
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;

    display: flex;
    justify-content: center;
    z-index: 100;
    background: transparent; /* fără blur */
}

/* Container */
.nav-container {
    width: 90%;
    max-width: 1100px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    height: 40px;
}
.logo-box {
    display: flex;
    align-items: center;     /* centrează vertical imaginea și textul */
    justify-content: center; /* centrează întregul grup în container */
    gap: 10px;               /* distanța dintre logo și text */
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Link-uri */
.nav-links {
    display: flex;
    gap: 14px;
}

/* ✦ Fiecare link = un mini-card transparent ✦ */
.glass-link {
    padding: 8px 16px;
    border-radius: 14px;
    
    background-color: rgba(153, 164, 218, 0.04);
    backdrop-filter: blur(2px);
    border-top: 1px solid #e4e2ed12;
    border-bottom: 1px solid#e4e2ed12;

    text-decoration: none;
    color: white;
    font-weight: bold;

    transition: 0.3s ease;
}

/* ✦ Hover identic cu cardul tău ✦ */
.glass-link:hover {
    background-color: rgba(62, 84, 195, 0.025);
    backdrop-filter: blur(0px);
    cursor: pointer;
}


.glass-container {
    width: 200px;
    height: 400px;
    padding: 30px 50px;
    border-radius: 20px;
    background-color: rgba(62, 84, 195, 0.022);
    backdrop-filter: blur(5px);
    border-top: solid 1px #e4e2ed97;
    border-bottom: solid 1px #e4e2ed97;
    
      

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.glass-container:hover {
    cursor: pointer;
    
    width: 200px;
    height: 400px;
    padding: 30px 50px;
    border-radius: 20px;
    background-color: rgba(62, 84, 195, 0.025);
    backdrop-filter: blur(0px);
    border-top: solid 1px #e4e2ed97;
    border-bottom: solid 1px #e4e2ed97;
    
      

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}