/* === GLOBAL STYLING === */ /* Removes padding and margin from the entire HTML document */

html {
    padding: 0px; 
    margin: 0px;
}

/* Basic styling for the body: sets font, background, text color, line spacing */

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14pt;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.5;
    padding: 0px;
    margin: 0px;
}
/* === LAYOUT CONTAINERS === */

/* Main container styling, ensuring full width and no additional padding/margins */

div#container {
    width: 100%;
    margin: 0px;
    background-color: #fff;
    padding: 0px;
}
/* Header styling with background image */
header {
    height: 300px;
    background-image: url('../Photos/Landscape\ 4.gif');
    background-size: cover;
    position: relative;
}
/* Flex layout for content to handle navigation and main content side by side */
div#content {
    display: flex;
    flex-direction: row;
    margin: 0px;
}
/* Common padding for layout elements */ 
header, footer, nav, section { 
    padding: 20px; 
}
/* === TYPOGRAPHY === */

/* Styling for main title inside header */
header h1 {
    background-color: white;
    color: black;
    font-size: 70pt; 
    font-weight: bold;
    margin: 0 auto;
    padding: 2px;
    width: 50%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}
/* Styling for secondary title */
h2 {
    font-size: 36pt;
    color: #2a2a2a;
    text-align: center;
}

/* Styling for tertiary title */
h3 {
    text-align: center;
}

/* Specific styling for h3 inside the main section */
section#main h3 {
    font-size: 20pt;
    color: #555;
}

/* Default paragraph styling */
p {
    text-align: center;
    max-width: 1300px;
    display: block;
    margin: 1px auto;
}
/* === NAVIGATION === */

/* Basic styling for navigation bar */
nav {
    background-color: #2a2a2a;
    min-width: 180px;
    margin: 0px;
}
/* Navigation links styling */
nav a {
    display: block;
    margin: 10px 0;
    padding: 8px;
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: 14pt;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}
/* Hover effect for navigation links */
nav a:hover {
    background-color: #555;
}

/* Styling for the currently active page link */
nav a.currentpage {
    background-color: #444;
}
/* === CONTENT SECTION === */

/* Styling for main content area */
section#main {
    padding: 20px 40px;
    width: 100%;
}
/* Link styles in main content area */
section#main a {
    font-weight: bold;
    color: #007ACC;
    text-decoration: underline;
}

/* Hover effect for links inside the main section */
section#main a:hover {
    color: #005B99;
}
/* Styling for an informational box or sidebar content */
section#information {
    background-color: #ececec;
    max-width: 450px;
    font-size: 12pt;
}
/* === MEDIA ELEMENTS === */

/* Common styling for iframe, video, and img, mainly for presentation and spacing */
iframe, video, img {
    display: block;
    margin: 10px auto; /* Note: iframe and video have another margin below. Only the latter will apply. */
    width: 900px; 
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

/* Specific styling for images */
img {
    margin: 40px auto;
}
/* === TABLE STYLING === */

/* Centered table with limited width */
table {
    max-width: 550px;
    display: block;
    margin: 20px auto;
    text-align: center;
}

/* Cell spacing for table */
td {
    margin: 5px 20px;
    padding: 5px 20px;
}
/* === FOOTER === */

/* Styling for the footer at the bottom of the page */
footer {
    background-color: #555;
    font-size: 10pt;
    text-align: center;
    color: #ccc;
    margin: 0px;
}
