 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;

     width: 100vw;
     height: 100vh;

     overflow: hidden;
 }

 body {
     font-family: "Noto Sans", sans-serif;
     background: #0a0a0a;
     color: #ffffff;
     line-height: 1.6;
 }

 /* Section Styling */
 .section {
     min-height: 100vh;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .section h1 {
     font-size: 6rem;
     font-weight: 300;
     text-align: center;
     letter-spacing: -2px;
     opacity: 0.9;
 }

 .section h2 {
     font-size: 2rem;
     font-weight: 200;
     text-align: center;
     letter-spacing: -2px;
     opacity: 0.9;
     margin-bottom: 30px;
 }

 .section-info {
     font-size: 1.1rem;
     color: #999;
     font-style: italic;
     text-align: center;
     max-width: 600px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Individual Section Colors */
 #home {
     position: absolute;
     top: 0;
     margin: 0 auto;
     min-height: 100vh;
     width: 100%;
     overflow: hidden;
 }

 /* #about {
     background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
 }

 #services {
     background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
 }

 #portfolio {
     background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
 }

 #contact {
     background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
 } */

 #backgroundLayer {
     background: linear-gradient(135deg, #0a0a0a, #0a0a0a, #0f0f0f, #1a1a1a);
     background-size: 200% 200%;
     animation: gradient 15s ease infinite;

     position: absolute;
     top: 0;
     margin: 0;
     padding: 0;
     z-index: 000;

     min-height: 100vh;
 }

 #filterLayer {
     background: linear-gradient(135deg, #cecece, #d3a3a3, #ce8686, #ff6c6c);
     background-size: 200% 200%;
     animation: gradient 15s ease infinite;

     position: absolute;
     top: 0;
     margin: 0;
     padding: 0;
     z-index: 000;

     width: 100%;
     height: 100%;

     opacity: 0;
 }

 @keyframes gradient {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 /* Smooth scroll enhancement */
 @media (prefers-reduced-motion: no-preference) {
     html {
         scroll-behavior: smooth;
     }
 }

 #overlay {
     margin: auto;
     width: 100%;
     padding: 10px;
 }

 #bg-container {
     position: absolute;
     top: 15%;
     margin: 0;
     padding: 0;
     z-index: 000;

     width: 100%;
     height: 100%;
 }

 #soundToggle {
     position: absolute;
     top: 0px;
     margin: 10px;
     padding: 10px;
     z-index: 100;

     font-size: 18px;
     color: #fff;
     background-color: #ffffff00;
     border-color: #ffffff00;
 }

 h1,
 h2 {
     font-family: "Noto Sans", sans-serif;
     font-weight: 100;
     font-size: 18px;
 }

 .nav {
     margin: auto;
     padding: 10px;

     background-color: #ffffff00;
     line-height: 22px;
 }

 .nav {
     display: flex;
     justify-content: center;
 }

 .nav>li {
     display: block;
     margin: 0;
     padding: 0;
 }

 .nav>li>a {
     display: block;
     position: relative;
     padding: 10px 20px;
     font-family: "Noto Sans", sans-serif;
     font-weight: 300;
     font-style: normal;
     text-transform: uppercase;
     color: #fff;
     font-size: 18px;
     text-decoration: none;
     background-color: #ffffff00;
     transition: color .3s ease-in;
 }

 .nav>li>a:hover,
 .nav>li:hover>a {
     color: #ffffff;
     text-shadow: 0px 0px 10px white, 0px 0px 10px white;
 }

 .nav>.dropdown>a {
     padding: 10px 30px 10px 20px;
 }

 .dropdown>a:after {
     content: "";
     position: absolute;
     top: 15px;
     right: 10px;
     width: 7px;
     height: 7px;
     transform: rotate(45deg);
     border-bottom: 1px solid #fff;
     border-right: 1px solid #fff;
 }

 .dropdown>a:hover:after,
 .dropdown:hover>a:after {
     border-color: #ffffff8a;
 }

 .nav ul {
     position: absolute;
     margin: 0;
     padding: 0;
     list-style: none;
     display: block;
 }

 .nav ul li {
     position: absolute;
     top: -9999px;
     height: 0px;
     display: block;
     margin: 0;
     padding: 0;
     transition: height .2s ease-in;
 }

 .dropdown:hover>ul>li {
     height: auto;
     position: relative;
     top: auto;
 }

 .nav ul li a {
     padding: 4px 20px;
     width: 180px;
     display: block;
     position: relative;
     font-family: "Noto Sans", sans-serif;
     color: #fff;
     text-decoration: none;
     font-size: 14px;
     background-color: #ffffff00;
     transition: color .3s ease-in, background .3s ease-in;
 }

 .nav ul li:hover>a,
 .nav ul li a:hover {
     color: #fff;
     background-color: #c03a2b00;
 }

 .nav ul .dropdown:hover ul {
     left: 180px;
     top: 0;
 }

 .nav ul .dropdown a:after {
     width: 6px;
     height: 6px;
     border-bottom: 0;
     border-right: 1px solid #fff;
     border-top: 1px solid #fff;
     top: 12px;
 }

 .nav ul .dropdown:hover>a:after,
 .nav ul .dropdown>a:hover:after {
     border-right: 1px solid #ffffff;
     border-top: 1px solid #ffffff;
 }

 .aboutBox, .articlesBox {

     text-align: center;
     width: 40%;
     height: fit-content;
     position: absolute;
     border-radius: 10px;
     color: white;

     backdrop-filter: blur(10px);
     background-color: #ffffff0e;
     border-style: solid;
     border-color: white;
     border-width: 2px;
     visibility: hidden;

     z-index: 1000;
 }

.aboutBox h1 {
    font-size: 2rem;
}

.articlesBox h1 {
    font-size: 2rem;
}

.articlesBox a {
    color: white;
}

.aboutBox p {
    font-size: 1rem;
}







 /* Responsive Design */
 @media (max-width: 768px) {

     .section h1 {
         font-size: 3.5rem;
         padding: 0 20px;
     }

     .section h2 {
         font-size: 1.5rem;
         padding: 0 20px;
     }

     .nav {
         margin: auto;
         padding: 10px;
         background-color: #ffffff00;
         line-height: 22px;
         display: flex;
         flex-direction: column;
         /* Make navbar vertical */
         align-items: normal;
         justify-content: flex-start;
     }

     .nav>li {
         display: block;
         margin: 0;
         padding: 0;
         position: relative;
         width: 30vw;

         left: 6%;
     }

     .nav>li>a {
         display: block;
         position: relative;
         padding: 10px 20px;
         font-family: "Noto Sans", sans-serif;
         font-weight: 300;
         font-style: normal;
         text-transform: uppercase;
         color: #fff;
         font-size: 14px;
         text-decoration: none;
         background-color: #ffffff00;
         transition: color .3s ease-in;
         width: 100%;
         text-align: left;
     }

     .nav>li>a:hover,
     .nav>li:hover>a {
         color: #ffffff;
         text-shadow: 0px 0px 10px white, 0px 0px 10px white;
     }

     .nav>.dropdown {
         width: 30vw;
     }

     .nav>.dropdown>a {
         padding: 10px 30px 10px 20px;
     }

     .dropdown>a:after {
         content: "";
         position: absolute;
         top: 0.8rem;
         right: 0px;
         width: 7px;
         height: 7px;
         transform: rotate(-45deg);
         border-bottom: 1px solid #fff;
         border-right: 1px solid #fff;
     }

     .dropdown>a:hover:after,
     .dropdown:hover>a:after {
         border-color: #ffffff8a;
     }

     .nav ul {
         position: absolute;
         top: 0;
         left: 100%;
         margin: 0;
         padding: 0;
         list-style: none;
         display: block;
         z-index: 10;
         background: none;
     }

     .nav ul li {
         position: relative;
         display: block;
         margin: 0;
         padding: 0;
         height: 0;
         overflow: hidden;
         transition: height .2s ease-in;
         width: 30vw;
     }

     .dropdown:hover>ul>li {
         height: auto;
         overflow: visible;
     }

     .nav ul li a {
         padding: 4px 20px;
         width: 30%;
         display: block;
         position: relative;
         font-family: "Noto Sans", sans-serif;
         color: #fff;
         text-decoration: none;
         font-size: 0.8rem;
         background-color: #ffffff00;
         transition: color .3s ease-in, background .3s ease-in;
     }

     .nav ul li:hover>a,
     .nav ul li a:hover {
         color: #fff;
         background-color: #c03a2b00;
     }

     .nav ul .dropdown:hover ul {
         left: 100%;
         top: 0;
     }

     .nav ul .dropdown a:after {
         width: 6px;
         height: 6px;
         border-bottom: 0;
         border-right: 1px solid #fff;
         border-top: 1px solid #fff;
         top: 12px;
         right: -100px;
         transform: rotate(45deg);
     }

     .nav ul .dropdown:hover>a:after,
     .nav ul .dropdown>a:hover:after {
         border-right: 1px solid #ffffff;
         border-top: 1px solid #ffffff;
     }
 }

 @media (max-width: 480px) {
     .section h1 {
         font-size: 2.5rem;
     }

     .nav {
         margin: auto;
         padding: 10px;
         background-color: #ffffff00;
         line-height: 22px;
         display: flex;
         flex-direction: column;
         /* Make navbar vertical */
         align-items: normal;
         justify-content: flex-start;
     }

     .nav>li {
         display: block;
         margin: 0;
         padding: 0;
         position: relative;
         width: 30vw;

         left: 6%;
     }

     .nav>li>a {
         display: block;
         position: relative;
         padding: 10px 20px;
         font-family: "Noto Sans", sans-serif;
         font-weight: 300;
         font-style: normal;
         text-transform: uppercase;
         color: #fff;
         font-size: 14px;
         text-decoration: none;
         background-color: #ffffff00;
         transition: color .3s ease-in;
         width: 100%;
         text-align: left;
     }

     .nav>li>a:hover,
     .nav>li:hover>a {
         color: #ffffff;
         text-shadow: 0px 0px 10px white, 0px 0px 10px white;
     }

     .nav>.dropdown {
         width: 30vw;
     }

     .nav>.dropdown>a {
         padding: 10px 30px 10px 20px;
     }

     .dropdown>a:after {
         content: "";
         position: absolute;
         top: 0.8rem;
         right: 0px;
         width: 7px;
         height: 7px;
         transform: rotate(-45deg);
         border-bottom: 1px solid #fff;
         border-right: 1px solid #fff;
     }

     .dropdown>a:hover:after,
     .dropdown:hover>a:after {
         border-color: #ffffff8a;
     }

     .nav ul {
         position: absolute;
         top: 0;
         left: 100%;
         margin: 0;
         padding: 0;
         list-style: none;
         display: block;
         z-index: 10;
         background: none;
     }

     .nav ul li {
         position: relative;
         display: block;
         margin: 0;
         padding: 0;
         height: 0;
         overflow: hidden;
         transition: height .2s ease-in;
         width: 30vw;
     }

     .dropdown:hover>ul>li {
         height: auto;
         overflow: visible;
     }

     .nav ul li a {
         padding: 4px 20px;
         width: 30%;
         display: block;
         position: relative;
         font-family: "Noto Sans", sans-serif;
         color: #fff;
         text-decoration: none;
         font-size: 0.8rem;
         background-color: #ffffff00;
         transition: color .3s ease-in, background .3s ease-in;
     }

     .nav ul li:hover>a,
     .nav ul li a:hover {
         color: #fff;
         background-color: #c03a2b00;
     }

     .nav ul .dropdown:hover ul {
         left: 100%;
         top: 0;
     }

     .nav ul .dropdown a:after {
         width: 6px;
         height: 6px;
         border-bottom: 0;
         border-right: 1px solid #fff;
         border-top: 1px solid #fff;
         top: 12px;
         right: -100px;
         transform: rotate(45deg);
     }

     .nav ul .dropdown:hover>a:after,
     .nav ul .dropdown>a:hover:after {
         border-right: 1px solid #ffffff;
         border-top: 1px solid #ffffff;
     }
 }