@charset "UTF-8";
/* CSS Document */

body, html {
	scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
	background-color: black;
}

.content-before-nav {
    height: 300px; /* Adjust based on your content */
}
.navigation {
	float: left;
	width: 100%;
    color: white;
    padding: 10px 0;
    text-align: center;
    transition: all 1.3s;
	position: relative; /* Ensure this is set for consistency */
	z-index: 2000; /* Ensure the navigation is above other content */
}

.navigation a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}
.sticky {
    background-color: red;; /* Adjust the opacity as needed */
	position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
}
.content section {
    padding: 20px;
    height: 500px; /* For demonstration */
    border: 1px solid #ddd;
}

/*  /////////////////////////////////  HAMBURGER   ///////////////////////////////////////  */

/* Mobile navigation styles */
.hamburger {
    display: none;
    background-color: transparent !important;
    color: white;
    border: none;
    cursor: pointer;
	/* the HAMBURGER is just a GLYPH (&#9776;) */
}
.nav-links a {
    color: white;
    text-decoration: none;
    display: inline-block; /* Change to block for vertical layout on mobile */
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        width: 100%;
    }
    .nav-links a {
        display: block;
        text-align: center;
    }
    .navigation.sticky {
        position: fixed;
    }
}

/* When the nav is active */
.nav-active .nav-links {
    display: block;
}

/*  /////////////////////////////////  HAMBURGER_END    ///////////////////////////////////////  */

/* Adding some color to distinguish the sections */
#hero { background-color: rgba(221,176,205,1.00); }
#home { background-color: lightcoral; }
#about { background-color: lightblue; }
#services { background-color: lightgreen; }
#contact { background-color: lightgoldenrodyellow; }