/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #3f5df2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main{
  padding: min(5em, 7%);
  color: white;
}

main p{
  margin-top: .35em;
}

.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem); /* Adds a small edge padding */
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}



/* Navbar Layout */
.navbar {
    background-color: #f4511e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: relative;
    z-index: 1000;
}

.logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 0.8;
}

/* Hero Content Styling */
.hero-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.svg-wrapper {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-hero {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

/* Responsive Structural Breakpoints */

/* Orientation Rules for Hero SVGs */
@media (orientation: landscape) {
    .landscape-svg { display: block; }
    .portrait-svg { display: none; }
}

@media (orientation: portrait) {
    .landscape-svg { display: none; }
    .portrait-svg { display: block; }
}

/* Mobile Sidebar Menu Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background-color: #f4511e;
        flex-direction: column;
        padding: 80px 30px;
        gap: 25px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
 	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
 
    }

    .nav-links.active {
        right: 0;
    }
}
