body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
}

.hero-bg {
    background-image: url('https://placehold.co/1920x1080/1a1a1a/e0e0e0?text=AVIJOZI+2025');
    background-size: cover;
    background-position: center;
}

.text-gradient {
    background: linear-gradient(90deg, #FF6B6B, #F6E05E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(90deg, #EF4444, #F97316);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.cd {
    backdrop-filter: blur(25px);
    opacity: 0.7;
}


/* General body styles for a clean page */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}


/* Styles for the main navbar container */

.navbar {
    display: flex;
    /* Enables Flexbox */
    justify-content: space-between;
    /* Pushes logo to one end and links to the other */
    align-items: center;
    /* Vertically centers items */
    --tw-bg-opacity: 1;
    background-color: #1f2124;
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Styles for the logo */

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    /* Removes the underline from the link */
}


/* Styles for the list of links */

.nav-links {
    list-style: none;
    /* Removes the bullet points */
    margin: 0;
    padding: 0;
    display: flex;
    /* Aligns the list items horizontally */
    gap: 20px;
    /* Adds space between each link */
}


/* Styles for the individual links */

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
}