/* Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --dark-bg: #1a1a1a; /* Main background for body and sections */
    --dark-gradient-start: #0d0d0d; /* Start of body background gradient */
    --dark-gradient-end: #1a1a1a; /* End of body background gradient */
    --light-text-primary: #ffffff; /* Main text color */
    --light-text-secondary: #cccccc; /* Secondary text color */
    --accent-purple: #a78bfa; /* Accent color for hovers */
    --button-bg: #5b21b6; /* Button background color */
    --button-hover-bg: #7c3aed; /* Button hover background color */
}

/* Base Body Styles */
body {
    font-family: "Inter", sans-serif; /* Modern sans-serif font */
    background: linear-gradient(
        145deg,
        var(--dark-gradient-start),
        var(--dark-gradient-end)
    );
    color: var(--light-text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent; /* Transparent header background */
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    filter: none; /* Ensure original logo color is preserved */
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-purple);
}

/* CTA Button Styles (general for site) */
.cta-button {
    display: inline-block;
    background-color: var(--button-bg);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: var(--button-hover-bg);
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-links {
        margin-top: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 35px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 360px) and (max-width: 763px) {
    .banner-top {
        font-size: 0.5rem;
    }
}

/* Medium devices (tables, 768px and up) */
@media (min-width: 768px) {
    .banner-top {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 578px) and (max-width: 764px) and (orientation: portrait) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .banner-top {
        font-size: 1.2rem;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}
