/* --- Bee Designs Custom Styles --- */

:root {
    --primary-yellow: #FFC107;
    --dark-charcoal: #1A1A1A;
    --slate-gray: #4A4A4A;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --transition: all 0.3s ease-in-out;
}

/* Global Smooth Scroll */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-charcoal);
    line-height: 1.6;
}

/* Glassmorphism Header */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Button Animations */
.btn-premium {
    background-color: var(--primary-yellow);
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-premium:hover {
    background-color: var(--dark-charcoal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.service-card {
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-yellow);
}

/* Custom Honeycomb Background Overlay */
.honeycomb-overlay {
    position: relative;
}

.honeycomb-overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../images/bee-icon.png'); /* Using your icon as subtle watermark */
    background-size: 100px;
    opacity: 0.03;
    z-index: -1;
}

/* Security Badge Style */
.security-tag {
    display: inline-flex;
    align-items: center;
    background: #e6fffa;
    color: #2d3748;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #b2f5ea;
}