﻿<style >
/* NAVBAR BACKGROUND - About Page Gradient */
.leaf-navbar {
    background: linear-gradient( 135deg, #8B5CF6 0%, #6D28D9 40%, #111827 100% );
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    font-family: 'Outfit', sans-serif;
}

/* NAV LINKS */
.leaf-link {
    color: #9B7BFF !important;
    font-weight: 500;
    margin-right: 12px;
    position: relative;
    transition: 0.3s ease;
}

    .leaf-link:hover {
        color: #F97316 !important;
        transform: translateY(-2px);
    }

/* DROPDOWN */
.leaf-dropdown {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* PRIMARY BUTTON */
.btn-leaf-primary {
    background-color: #F97316;
    border: none;
    color: #fff;
    border-radius: 25px;
    padding: 6px 18px;
    font-weight: 500;
    transition: 0.3s;
}

    .btn-leaf-primary:hover {
        background-color: #ea580c;
        transform: translateY(-2px);
    }

/* OUTLINE BUTTON */
.btn-leaf-outline {
    border: 1px solid #ffffff;
    color: #F97316;
    border-radius: 25px;
    padding: 6px 18px;
    transition: 0.3s;
}

    .btn-leaf-outline:hover {
        background: #ffffff;
        color: #6D28D9;
    }

/* CART BUTTON */
.btn-leaf-cart {
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    color: white;
    padding: 6px 12px;
    border: none;
    transition: 0.3s;
}

    .btn-leaf-cart:hover {
        background: #F97316;
        color: white;
    }

/* FIX CONTENT OVERLAP */
main {
    margin-top: 95px;
}

</style >
