/* 20240606 - styles.css */
/* CSS for styling */

body, html {
    height: 100%;
    margin: 0;
	padding: 0 20px;
    font-family: Arial, sans-serif;
	font-size: 16px;
	background-color: #f0f0f0; /* Background color for visibility */
}

.header {
    height: 75px;
    background-color: #333;
    color: yellow;
    padding: 0 10px;
    s-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure header stays on top of other content */
}

.logo {
    max-width: 75px;
    height: auto;
    margin-right: 20px;
}

.button {
  border: none;
  color: #FFD700;
  background-color: #333;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button:hover {
	text-decoration: underline;
}

/* Small screens (phones) */
@media (max-width: 599px) {
    .button {
        font-size: 12px;
        padding: 0 5px;
    }
}

/* Medium screens (tablets, 600px and up) */
@media (min-width: 600px) and (max-width: 991px) {
    .button {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* Large screens (desktops, 992px and up) */
@media (min-width: 992px) {
    .button {
        font-size: 18px;
        padding: 0 15px;
    }
}

/* Extra large screens (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .responsive-button {
        font-size: 20px;
        padding: 0 20px;
    }
}

.center {
	padding:20px;
	border: 2px solid black;
	height: 400px;
	text-align: center;
}

.collage-container {
	position: relative;
	width: 100%;
	height: calc(100vh - 50px); /* Full height minus header height */
	display: flex;
	flex-wrap: wrap;
}

.collage {
	flex: 1 1 50%;
	background-size: cover;
	background-position: center;
}

.text-overlay {
	background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
	color: white;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-align: center;
	max-width: 90%; /* Prevent it from being too wide on larger screens */
/*  z-index: 1; */
}

.text-overlay h2 {
    margin-top: 0;
}

.text-overlay p {
    margin-bottom: 0;
}

.footer {
	background-color: #333;
	color: #FFD700;
	font-size: 16px;
	text-align: center;
	padding: 10px 0;
	position: fixed;
	bottom: 0;
	width: 100%;
}

.btn {
	color: #FFD700;
	text-decoration: none;
	border: none;
	background-color: #333;
	padding: 5px 5px;
	font-size: 16px;
	cursor: pointer;
	display: inline-block;
}

.btn:hover {
	text-decoration: underline;
}

.iframe-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 50%;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 2px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.iframe-container iframe {
	width: 100%;
	height: 100%;
}

.close-btn {
	position: absolute;
	top: 0;
	right: 0;
	color: black;
	border: none;
	cursor: pointer;
}