/* Top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
body {
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
    background: #061E29;
    color: #fff;
  
    /* Set the image URL */
    background-image: url('/images/backgrounddark.png');

    /* Ensure the image covers the entire viewport without repeating */
    background-size: cover; 
    
    /* Keep the image fixed in place as the user scrolls */
    background-attachment: fixed; 
    
    /* Center the image */
    background-position: center center; 
    
    /* Optional: Hide scrollbars if content is short, to prevent showing empty space */
    height: 100vh;
    margin: 0;
}

header {
    background: #3338A0;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #222;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #00e1ff;
}

.hero {
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #3C6390;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    border-left: 5px solid #00e1ff;
    padding-left: 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #1A2A80;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: .3s;
}

.card:hover {
    border-color: #00e1ff;
    transform: translateY(-5px);
}

.footer {
    text-align: center;
    padding: 20px;
    background: #3338A0;
    color: #777;
    margin-top: 40px;
}

.button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    color: #000;
    background: #dbe5f0;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.button:hover {
    background: #00c2df;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111111;
    padding: 15px 20px;
    border-bottom: 1px solid #222;
}

.nav-left a,
.nav-right a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 500;
    font-size: 16px;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #00e1ff;
}

.nav-right .lang-flag {
    font-size: 22px;
    margin-left: 10px;
    transition: transform 0.2s;
}

.nav-right .lang-flag:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-left a, .nav-right a {
        margin: 5px 0;
    }
}
