/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    height: 100%;
    font-family: 'Times', serif;
}
.background-image {
    background-image: url('https://live.staticflickr.com/8745/16937902440_2d99cef70e_o_d.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Submenu Styles */
.desktop.landingPage .submenu {
    display: none; /* Initially hide the submenu */
    background-color: hsla(0, 0%, 0%, 0.45);
    position: absolute;
    left:0px;
    top:35px; /* Position below the parent menu item */
    width: 100%;
    text-align: center;
    z-index: 1000;
}
.desktop.selected .submenu {
    display: none; /* Initially hide the submenu */
    background-color: hsla(0, 0%, 0%,.45);
    position: absolute;
    left:0px;
    margin-top:25px;
     /* Position below the parent menu item */
    width:403px;
    text-align: center;
    z-index: 1000;
}
.mobile.landingPage .submenu {
    display: none; /* Initially hide the submenu */
    background-color: hsla(0, 0%, 0%, 0.85);
    width: 100%;
    text-align: center;
    z-index: 1000;
}
.mobile.selected .submenu {
    display: none; /* Initially hide the submenu */
    background-color: hsla(0, 0%, 0%, 0.85);
    width: 100%;
    text-align: center;
    z-index: 1000;
}
.submenu a {
    display: block;
    padding: 10px;
    font-size: 1.15rem;
    text-decoration: none;
}
.submenu a:hover {
    background-color: hsla(0, 0%, 0%, 0.9);
    text-decoration: line-through;
}
/*Landing Page Styles*/
.content-container.landingPage {
    position: relative;
    top: -10vw;
    text-align: center;
}
.logo-icon {cursor: pointer;}
.landingPage .logo-icon {position: relative;margin-bottom:50px;width:200px;opacity: .75;}
.title.landingPage {
    background-color: rgba(255, 255, 255, 0.45); /* 45% opacity white background */
    font-size: 3vw;
    padding: 0 0 0 2.5vw;
    letter-spacing: 2.5vw;
    font-weight: bold;
    color: black;
}
.menu.landingPage {margin-top:5px;text-align: center;}
.menu.landingPage a {color: white;}
.menu.desktop.landingPage {background-color: hsla(0, 0%, 0%, 0.45);
    padding:5px 0px 5px 4vw;
    display: flex;
    justify-content: center;
    position: relative;
}
.menu.mobile.landingPage a{
    padding:5px 0px;
    margin:5px 0px;
    display: grid;
}
.menu a.button.line-through {
    text-decoration: line-through;
}
.menu.desktop a.button.line-through::after {
    text-decoration: none; /* Explicitly remove text-decoration from the ::after */
}
.menu a.button {
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1.2rem; /* Ensures vertical alignment */
}
.menu.mobile a.button {padding:7.5px 0px;
background-color: hsla(0, 0%, 0%, 0.45);}
.menu.desktop a.button::after {
    content: "|"; /* Insert the vertical bar */
    padding: 0 25px; /* Use padding for consistent spacing */
    color: white; /* Color of the bar */
     text-decoration: none;
}
.menu.desktop a.button:last-child::after {
    content: none;
}
@media (min-aspect-ratio: 1/1){
    .menu.mobile.landingPage {display:none;}
}
@media (max-aspect-ratio: 1/1) {
    .title.landingPage {
    background-color: rgba(255, 255, 255, 0.45); /* 45% opacity white background */
    font-size:5vw;
    word-break:keep-all;
    padding: 0 0 0 2.5vw;
    letter-spacing: 2vw;
    font-weight: bold;
    color: black;
}
    .menu.desktop.landingPage {
                width:100%;
                max-width:450px;
                padding:5px 0px 5px 0;
                display:none;
                left: 50%;
                transform: translate(-50%, 0);
            }
            }
/*selected Pages*/
.content-container-selected {
    width:100%;
    display:grid;
    position: absolute;
    top: 0px;
}
.selected .logo-icon {
    left:0px;margin:0px 0px 0px 0px;width:50px;}
.title.selected {
    display:flex;
    padding:5px 0px 0px 10px;
    position:relative;
    background-color: rgba(255, 255, 255, .75); /* 45% opacity white background */
    height:60px;
}
.selected h1 {
    text-transform: uppercase;
    line-height:1.1;
    margin:0px 0 0 10px;
    letter-spacing: 2px;
    font-weight:100;
    color: black;
    font-size: 23px;
}
.selected .block {background-color:black;width:2.5px;height:50px;margin:0 0 0 10px;}
.selected .burgerButton {
    cursor:pointer;
    width:50px;
    right:0px;
    margin:-2.25px 10px 0px 0;
    position: absolute;
    display:grid;}
.selected .burgerButton  span{
    background-color:black;
    height:5px;
    margin:10px 0 0 0;
}
.selected .burgerButton:hover span {
    background-color:rgba(0, 0, 0, .5);}
.menu.selected {text-align: center;}
.menu.mobile.selected a {color: white;cursor:pointer;}
.menu.desktop.selected a {color: black;}
.menu.desktop.selected .submenu a {color: white;}
.menu.desktop.selected {
    z-index:1000;
    padding:0px 0px 0px 0vw;
    justify-content: right;
    right:0px;
    bottom:20px;
    position: absolute;
}
.menu.desktop.selected .barUNDRmnu{
    position:absolute; 
    right:10px;
    width:402px;
    height:2.5px;
    background-color: black;display: grid;}
.menu.mobile.selected {
    position:absolute;
  	z-index:1000;
    top:60px;
    left:0px;
    width:100%;
    padding:5px 0px 5px 0px;
    display: none;
    gap:2px;
    
}
.menu .button.line-through {
    text-decoration: line-through;
}
.menu a.button {
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1.2rem; /* Ensures vertical alignment */
}
.menu.mobile a.button {padding:7.5px 0px;
background-color: hsla(0, 0%, 0%, 0.45);}
.menu.desktop a.button::after {
    content: "|"; /* Insert the vertical bar */
    padding: 0 5px; /* Use padding for consistent spacing */
    color: black; /* Color of the bar */
}
.menu.desktop a.button:last-child::after {
    content: ""; /* Remove the bar after the last link */
}
.menu a.button:hover {
    text-decoration: line-through; /* Adds underline on hover */
}
.page-content {
	background-color: rgba(255, 255, 255, .75);
  	top:75px;
	padding:10px;
  	position:absolute;
	width:100%; /* Centers inline elements like the heading */
  	max-width:550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Centers block elements like <p> */
}
.page-content h1 {
    text-align: left;
    display: inline-block;
    font-size: 24px;
    margin: 10px 0;
    position: relative;
    padding: 5px 0; /* Adjust padding to control spacing */
}

.page-content h1::before,
.page-content h1::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100vw; /* Ensures full screen width */
    height: 5px;
    background-color: black;
}

.page-content h1::before {
    top: 0px; /* Moves the top bar closer */
}

.page-content h1::after {
    bottom:0px; /* Moves the bottom bar closer */
}

.page-content p {
  	text-align:left;max-width:500px;}
.page-content p br {display: block;
    content: "";
    margin-top:10px;}
.page-content hr {
  display: block;
  width:100%;
  border: none;
    height: 2px;
    background-color: black;
	margin:10px 0px;}
@media (min-aspect-ratio: 1/1){
    .menu.mobile.selected, .selected .burgerButton {display:none!important;}
}
@media (max-aspect-ratio: 1/1) {
    .menu.desktop.selected {
                display:none;
            }
.page-content h1 {
    width: 100%;
}

.page-content h1::before,
.page-content h1::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%; /* Ensures full width of .page-content */
    height: 5px;
    background-color: black;
}
            }