/*
 * Reset and Base Styles
 * 
 * @package Viva_Magenta_V1
 */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Body Styles */
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  margin: 0;
  padding: 0;
  padding-top: var(--header-height);
  min-height: 100vh;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Lists */
ul {
  list-style: none;
}

/* Remove WordPress default spacing */
.wp-site-blocks {
  padding-top: 0;
  padding-bottom: 0;
}

.wp-block-group {
  margin-top: 0;
  margin-bottom: 0;
}

.entry-content {
  margin-top: 0;
}

.site-content {
  padding-top: 0;
  padding-bottom: 0;
}

/* Main container cleanup */
#page,
.site {
  margin-bottom: 0;
  padding-bottom: 0;
  overflow-x: hidden;
}

main,
.site-main {
  overflow-x: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

/* Prevent last child margins */
*:last-child {
  margin-bottom: 0;
}
