/* Custom Styles for Calmaroma */

/* Ensure the body takes full height for sticky footer effect */
html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto; /* Allow main content to grow and shrink, but not smaller than its content */
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Adjust hero section image to cover */
.hero-background {
    background-size: cover;
    background-position: center;
}

