/* Define the website background as an image */
body {
    background-image: url('/images/darkspace.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Header as transparent */
header {
    background-color: transparent;
    padding: 20px;
}

/* Heading 1 text as white, 32pt font, and centered */
h1 {
    color: white;
    font-size: 32pt;
    text-align: center;
}

/* Body text as white, 16pt font, and centered */
p {
    color: white;
    font-size: 16pt;
    text-align: center;
}

/* Navigation bar with transparent boxes and white text */
nav {
    display: flex;
    justify-content: center;
    background-color: transparent;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    border: 1px solid white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer as transparent with 3 columns */
footer {
    background-color: transparent;
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

/* Footer text as white */
h2 {
    color: white;
    font-size: 24pt;
    text-align: center;
}

footer div {
    flex: 1;
    padding: 10px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    padding: 10px;
}

.footer-column img {
    width: 32px;
    height: 32px;
    margin: 5px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Centered dark blue button with white lettering */
button {
    background-color: white;
    color: black;
    border: black;
    padding: 15px 30px;
    font-size: 16pt;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px auto;
    display: block;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #00aeff; /* Slightly darker blue on hover */
}

/* Image with description box underneath */
.image-container {
    text-align: center;
    margin: 20px;
    flex: 1;
}

.image-container img {
    width: 200px; /* Fixed width */
    height: 200px; /* Fixed height */
    border-radius: 10px;
}

.image-container .description {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
    justify-content: center;
}

/* Flexbox container for image rows */
.image-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Two-column layout for image rows */
.image-row .image-container {
    flex: 0 0 45%; /* Adjust the width of each column */
    margin: 10px;
}

/* Box for image rows */
.image-row-container {
    background-color: rgba(0, 9, 51, 0.5); 
    border-radius: 10px;
    padding: 10px;
    margin: 20px auto;
    width: calc(100% - 20px); /* 10px padding from the page margin */
    max-width: 1200px;
}


/* Centered dark blue box for contact form */
.form-container1 {
    background-color: #ffffff; /* Dark blue color */
    border: 1px solid black;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
    text-align: left;
}

.form-container1 label {
    display: block;
    margin-bottom: 10px;
    color: rgb(17, 0, 90);
}

.form-container1 input,
.form-container1 textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container1 button {
    background-color: #ffffff; /* Dark blue color */
    color: rgba(0, 9, 51, 0.5); 
    border: black;
    padding: 15px 30px;
    font-size: 16pt;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: background-color 0.3s;
}

.form-container1 button:hover {
    background-color: #000066; /* Slightly darker blue on hover */
}

/* Text to the right of the image */
.text-right-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;

}

.text-right-container img {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
    width: 200px; /* Fixed width */
    height: 200px; /* Fixed height */
}

.text-right-container .text {
    max-width: 45%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.container {
    display: flex;
    gap: 10px; /* Adjust the gap between columns as needed */
}
.column {
    flex: 1;
    padding: 20px;
   /*  border: 1px solid #ccc; Optional: Add a border to distinguish columns */
}

.page-break {
    page-break-before: always; /* You can also use page-break-after: always; */
    display: none; /* This makes the element invisible */
}

h5 {
    color: white;
    font-size: 8pt;
    text-align: center;
}