html, body {
    height: 100%;          /* Force full browser height */
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;      /* PREVENT SCROLLING */
    background-color: gainsboro;
    font-family: Optima, Arial, sans-serif;
    font-size: 10pt;
	
}


.header-container {
    height: 15vh;          /* 15% of Viewport Height */
    width: 100%;
    position: relative;
    z-index: 1000;
    /* Ensure content doesn't bleed out if screen is very short */
    background-color: gainsboro;
}





.hamburger {
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    color: black;
    position: absolute;    /* Pin to top left */
    top: 10px;
    left: 10px;
    z-index: 2001;		
}

/* Logo Positioning */
.logo-container {
    position: absolute;
	top: 50%;
    transform: translateY(-50%); /* Center logo vertically in header */
    right: 20px;
    height: 90%; /* Max height within header */
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 100%;           /* Scale logo relative to header height */
    width: auto;           /* Maintain aspect ratio */
     
}

.menu {
    display: none;          /* Hidden by default */
    position: absolute;
    top: 60px;              /* Attach exactly to the bottom of the header */
    left: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 3000;          /* High Z-Index to sit on top of the image */
    width: 200px;           /* Set a standard width for the dropdown */
}

/* Logic for Javascript toggle: Ensure your JS adds class 'active' or changes display */
.menu.show {
    display: block;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
	
	
}

.menu li {
    border-bottom: 1px solid #eee;
	position: relative;

}



.menu > ul > li {
	
    border-bottom: 1px solid #eee;
}

.menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-size: 11pt;        /* Ensure readable text size */
}
	 


.menu a {
    cursor: pointer;
}


.menu a:hover {
    background-color: #f0f0f0;
}

.menu ul ul {
    display:none;
    position: absolute;
    left: 100%; /* Position to the right */
    top: 0;
    background-color: #fff;
    border: 1px solid #ccc;
	min-width: 150px;
}




.menu li:hover > ul {

    display: block; /* Show submenu on hover or when active*/
}






.center {
    justify-content: center;
    text-align: center;
    
}

.center a{
	color: darkgoldenrod;
}

.p1 {
    column-count: 1;
    justify-content: space-around;
    margin-left: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}
.image-section {
 height: 75vh;          /* 75% of Viewport Height */
    width: 100%;
    position: relative;    /* Needed for centering child */
    text-align: center;    /* Center horizontally */

}

.image-section img {
 max-width: 95%; /* Prevent touching edges */
	max-height:95% /* Prevent touching header/footer */
	width:auto;
	height: auto;
/* VERTICAL CENTERING HACK (Non-Flexbox) */
    position: relative;
    top: 50%;
    transform: translateY(-50%); /* Moves image up by half its own height */
    
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Optional: Adds depth */
}





.arrow {
  width: 0; 
	height: 0; 
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
  
  position: absolute;
	margin: 10px;
}

.arrow-right {
	border-left: 15px solid #000;
  right: 0;
}

.arrow-left {
	border-right: 15px solid #000; 
  left: 0;
	
}



.header {
  text-align: center;
}



@media (min-width: 768px) {
    .p1 {
        column-count: 1;
        width: 70%;
        align-content:  center;
        margin-left: 100px;
    }
    
   .image-section {
  display: flex;
    justify-content: center;
  align-items: center;
  flex-grow: 1;

}

	.menu ul {
        position: relative; /* Reset position for mobile */
    }
	
	/* --- FOOTER (Bottom 10%) --- */
footer {
  height: 10vh;          /* 10% of Viewport Height */
    width: 100%;
    position: fixed;    /* Pin to bottom */
    bottom: 0;
    left: 0;
	z-index: 2000;
	background-color: : gainsboro;
    
   /* Flexbox for easy alignment of icons and text */
    display: flex;
    justify-content: flex-end; /* Align to right */
    align-items: center;       /* Center vertically */
    padding-right: 20px;
    box-sizing: border-box;
}

.footer-icons {
    display: flex;
    align-items: center;
}

.footer-icons a {
    margin-left: 10px;
    display: inline-block;
}
	.footer-icons img {
    height: 30px; /* Force icon size */
    display: block;
}


.copyright {
    margin-left: 15px;
    font-size: 9pt;
    text-transform: uppercase;
    white-space: nowrap; /* Prevent text wrapping */
}

    /* --- MEDIA QUERIES --- */
/* Cleaned up syntax errors */

@media (min-width: 768px) {
    /* Adjust specific sizing for desktops if needed */
    .p1 {
        column-count: 2; /* Example fix */
    }
}

@media only screen and (max-width: 600px) {
    .logo-img {
        height: 60%; /* Smaller logo on phones */
    }
    
    .footer-icons img {
        height: 25px;
    }
    
    .copyright {
        font-size: 8pt;
    }
}
        

	
