/* global.css */

/* Apply box-sizing globally */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Reset & Base */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fdfdfd;
}

/* Layout Containers */
.container {
  max-width: 1170px;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-wrapper {
  position: relative;
  min-height: calc(100vh - 160px); /* subtract header + footer */
  padding-top: 0;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
.page-wrapper img {
  width: auto;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Logo or Video Showcase Layout */
.logo {
  height: calc(100vh - 160px); /* 100px header + 60px footer */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header & Footer Layout */
header, .footer {
  position: fixed;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1000;
}

header {
  top: 0;
  left: 0;
  right: 0;
  height:60px;
  padding: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer {
  bottom: 0;
}

.slideshow-wrapper {
  margin-top: 0;
  padding-top: 0; /* estimate total header height including padding */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slideshow-container {
  padding-top: 0;
}
.mySlides img {
  margin: 0;
  padding: 0;
  display: block;
}

/* Background Variants */
.bg-scroll {
  background-image: url('background.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

/* Typography */
h1, h2, h3 {
  font-weight: bold;
  color: #061324;
  margin-top: 0;
}

p {
  margin-bottom: 1em;
}

a {
  color: #e8491d;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

/* Utility Classes */
.center {
  text-align: center;
}

.hidden {
  display: none;
}

.shadow {
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Footer Buffer */
.footer-buffer {
  height: 60px;
}