/* 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: #0B0E14;
    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: rgba(0, 7, 0, 0.725);
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #0f0;
}

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

nav a:hover {
    color: #0f0;
}

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

/* The Logo Styling */
.hero-logo {
    width: 768px; /* Adjust size as needed */
    height: auto;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.3)); /* Optional: Makes logo pop */
    transition: transform 0.3s ease;
  }

.hero-logo:hover {
    transform: scale(1.05); /* Subtle hover effect */
  }

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

.hero p {
    font-size: 18px;
    color: #94A3B8;
}

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

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

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

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

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

.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 7, 0, 0.725);
    color: #94A3B8;
    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: #00FF00;
}
.navbar {
    display: flex;
    justify-content: start;
    align-items: center;
    background: #111111;
    padding: 10px 20px;
    border-bottom: 1px solid #222;
}
.nav_left {
  display: flex;
  align-items: center; /* Vertically centers the logo and links */
  justify-content: space-between; /* Pushes logo to left and links to right */
  padding: 10px 20px;
}

.logo-img {
  height: 50px; /* Set a fixed height */
  width: auto;  /* Maintains aspect ratio */
  display: block;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}
.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: #00FF00;
}

.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;
    }
}
