/* Custom font for classiness */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0d111c; /* Very dark blue/black */
}

.gradient-text {
    /* UPDATED Text gradient using the new colors */
    background: linear-gradient(90deg, #ec7222, #65b147); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-bg {
    background-image: url('../assets/hero-background/hero-background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gradient-text-green {
    background: linear-gradient(90deg, #7dd32d, #65b147);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gradient-text-orange {
    background: linear-gradient(90deg, #f0904f, #ec7222);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
