/*
 * File: style/main.css
 * Author: Charlie Trumm (charlie@trummcode.nz)
 *
 * This file imports all other stylesheets
 * used throughout the website.
 */


/*
 * Import global css that is applied
 * everywhere (such as body styling).
 */
@import url("./global.css");

/*
 * Styling for home section with image slideshow and intro text.
 */
@import url("./section-home/main.css");

/*
 * Styling for the menu bar along the top.
 */
@import url("./top-bar/main.css");

/*
 * The main content section of the site, not
 * including the home section (home section
 * is separate so that the global section
 * formatting is not applied to it as this
 * would not work with the slideshow
 * very well).
 */
@import url("./lower-sections/main.css");

/*
 * Footer styling.
 */
@import url("./footer/main.css");


/*
 * Global information that is used
 * in many different stylesheets.
 */
:root {
  --navbar-height: 7rem;
  --company-bg-color: rgb(179, 120, 64);
  --link-color: #ff6600;
}
