/* HEADER */

header {
    position: relative;
    z-index: 10;
}

.headerpic{
	float: right;
}

/* HERO */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
	
	position: relative;
    min-height: 100vh;
}

.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	
	background-image: url("images/southside.jpeg"); /* Replace with your image file path */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center; /* Centers the image */
	
	z-index: -1;
	pointer-events: none;
}

.site-content {
    position: relative;
    z-index: 1;
}

.hero{
    background:url("images/hero.jpg") center/cover no-repeat;
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:40px;
	color: white;
	text-shadow: 2px 2px 5px black;
}

.hero p{
	color: white;
	text-shadow: 2px 2px 5px black;
}

.hero button{
    padding:12px 25px;
    border:none;
    background:white;
    color:black;
    font-size:16px;
    cursor:pointer;
}

/* CONTENT */
.section{
    padding:60px 20px;
    text-align:center;
	color: white;
}

.section h2{
	color: white;
	text-shadow: 2px 2px 5px black;
}

.section p{
	color: white;
	text-shadow: 2px 2px 5px black;
}

.dark{
    background:#203d4a;
    color:white;
}

/* CONTACT */
form{
    max-width:500px;
    margin:auto;
}

input, textarea{
    width:100%;
	box-sizing: border-box;
    padding:10px;
    margin:10px 0;
}

button{
    padding:10px 20px;
}

/* FOOTER */
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
}

/* ============================= */
/* SOUTHside NAVIGATION           */
/* ============================= */

.southside-navbar {
    background: #1b333d;
    padding: 0;
    position: relative;
    z-index: 10;	
}

.southside-logo {
    width: 150px;
    height: auto;
	display: block;
}

.southside-navbar .navbar-brand {
    position: relative;
    z-index: 11;
}

.southside-navbar .container-fluid {
    position: relative;
    z-index: 10;
}

.southside-navbar .nav-link {
    color: white;
    padding: 15px 20px;
}

.southside-navbar .nav-link:hover,
.southside-navbar .nav-link:focus {
    color: white;
    background: #2c4c5b;
}

.southside-navbar .dropdown-menu {
    background: #1b333d;
    border: none;
    border-radius: 0;
}

.southside-navbar .dropdown-item {
    color: white;
    padding: 10px 15px;
}

.southside-navbar .dropdown-item:hover,
.southside-navbar .dropdown-item:focus {
    color: white;
    background: #2c4c5b;
}

.southside-navbar .navbar-toggler {
    border-color: rgba(255,255,255,.5);
}

.southside-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.southside-navbar .navbar-toggler-icon {
    filter: invert(1);
}