/**
 * Base Styles - Football IQ Score
 * Foundation styles for all pages
 */

/* ===================================
   CSS RESET
   =================================== */

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

/* ===================================
   BODY DEFAULTS
   =================================== */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #111;
    color: #fff;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

/* ===================================
   CONTAINER SYSTEM
   =================================== */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: normal;
}

p {
    margin: 0 0 1rem 0;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Prevent underlines on button-style links */
a[class*="btn"]:hover,
a[class*="button"]:hover,
button:hover {
    text-decoration: none !important;
}

/* ===================================
   MAIN CONTENT WRAPPER
   =================================== */

main {
    position: relative;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Hide visually but keep accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
