/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
/*    outline: 2px solid red;    Hack to see conent outside of page */
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    font-family: Arial, sans-serif;
}

.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
/*    color: #FFF;     */
    color: #cfcdc6;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FFF;
}

/* Page Content */
.content {
    padding: 0px;
    font-family: Arial, sans-serif;
    font-size: 5px;
}

.content h1 {
  font-size: 10rem;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
    
/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* When scrolled */
.sticky-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    font-family: Arial, sans-serif;
}


/* Google Font - Icons */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 100,
  'GRAD' 0,
  'opsz' 40;
  vertical-align: text-bottom;
}

/* This has been removed as it conflicts with the scroll-trigger 'start' location on browser re-size
html {
  scroll-behavior: smooth;
}
*/

