/* FreshByte Vending - Custom Styles */

/* Base Typography */
body {
    font-family: 'Poppins', sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Offset for fixed nav when clicking anchor links */
section[id] {
    scroll-margin-top: 50px;
}

/* Hero Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #2D3E36 0%, #3d5a4a 100%);
}

/* Wave Section Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

