    :root {
      --licorice: #131313;
      --mahogany: #22d3ee;
      --festival: #a855f7;
      --sonic-silver: #757575;
      --wwwmazmazikacomblack: #000000;
      --wwwmazmazikacomstratos: #000033;
    }
	
	
	html {
    margin-top: 5rem;
    padding: 0;
    overflow-x: hidden;
}


@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
	
    src: url('../webfonts/fa-solid-900.woff2') format('woff2'),
         
}

.fa-solid {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
	font-style: normal;
}

.fa-bars:before {
    content: "\f0c9"; /* Unicode for bars icon */
}

.fa-xmark:before {
    content: "\f00d"; /* Unicode for xmark icon */
}


    body {
      margin: 0;
	  padding: 0;
      background: var(--wwwmazmazikacomblack);
      font-family: 'Poppins', sans-serif;
	  overflow-x: hidden;
    }

    .vocal-remover-container {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }



	


    .title {
      background-color: white;
      border: 4px solid var(--wwwmazmazikacomblack);
      border-radius: 33px;
      padding: .1rem;
      text-align: center;
      box-shadow: -8px 8px 16px #00000040, 8px 8px 16px #00000040;
      margin-bottom: 2rem;
	  
    }


.title h1 {
    padding: 5px 25px 5px 25px;
}

    .description {
      background-color: var(--festival);
      border: 4px solid var(--wwwmazmazikacomblack);
      border-radius: 33px;
      padding: .1rem;
      text-align: center;
      box-shadow: -8px 8px 16px #00000040, 8px 8px 16px #00000040;
      margin-bottom: 2rem;
    }

    .ad-space {
    background-color: var(--festival);
    border: 4px solid var(--wwwmazmazikacomblack);
    border-radius: 33px;
    text-align: center; /* Center text within the ad if needed */
    align: center;
    box-shadow: -8px 8px 16px #00000040, 8px 8px 16px #00000040;
    padding: .1rem;
    margin-bottom: 2rem;
    min-height: 200px; /* Or min-height if you want it to expand */
    width: 100%;
    
    
      
    }






.footer {
    padding: 1rem 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    width: 100%;
    box-sizing: border-box; /* Ensures padding is included in width */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box; /* Ensures padding is included in width */
}

.footer h1 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    color: #666;
    transition: color 0.2s ease;
    line-height: 0;
}

.social-link:hover {
    color: #000;
}

.social-icon {
    width: 20px;
    height: 20px;
}








    .navbar {
      background-color: var(--festival);
    padding: 1rem;
    display: block;
    
    /* Fix position issues */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Ensures full-width */
    
    /* Optional Enhancements */
    z-index: 1000; /* Keeps navbar above other elements */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	  
    }

    .navbar-links {
      display: flex;
      justify-content: space-between;
      max-width: 90%;
	  margin: 0 auto;
      gap: 0.1rem;
    }
	
	    .navbar-link {
      color: white;
      text-decoration: none;
    }


.menu-button {
            position: fixed;
            top: 30px;
            left: 3px;
            background: none;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 34px;
            color: white;
            z-index: 9999;
        }
        .fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 9999;
        }
        .fullscreen-menu a {
            color: white;
            text-decoration: none;
            font-size: 34px;
            margin: 15px;
        }
        .fullscreen-menu a:hover {
            color: gray;
        }
        .fullscreen-menu.active {
            display: flex;
        }
        .close-button {
            position: absolute;
            top: 30px;
            left: 3px;
            background: none;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 34px;
            color: white;
            z-index: 9999;
        }
        @media (min-width: 775px), (min-width: 1200px), (min-width: 1900px) {
            .menu-button, .fullscreen-menu {
                display: none !important;
            }
		}

    .navbar-link {
      font-size: 1rem;
    }

  
  
  /* Media Queries */
	
		@media screen and (min-width: 320px) {
		
	    .content {
      flex: 1;
      padding: 1rem;
      margin: 0 auto;
      max-width: 80%;
	  overflow-x: hidden;
    }
	
	  .description {
    box-shadow: none;
    /* Optionally, adjust the border or padding to keep a clean look */
  }

	
	     .description p {
        font-size: 16px;
        line-height: 1.6;
	    padding: 0px 20px 0px 20px;
      }


	
  
  .loading-content {
    padding: 15px;
  }
  
  .loading-text {
    font-size: 16px;
  }
  
  .loading-image {
    width: 150px;
    height: 150px;
  }
  
      .footer-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer {
        padding: 0.75rem 0;
    }

    .navbar {
          display: none;
    }

.title {
    min-height: 150px;  
}

.title h1 {
    font-size: 2rem !important; /* Adjust font size as needed */
}




}


    @media screen and (min-width: 775px) {
	
	    .content {
      flex: 1;
      padding: 1rem;
     
      margin: 0 auto;
      max-width: 80%;
	  overflow-x: hidden;
    }
	
	    .description p {
        font-size: 24px;
        line-height: 1.6;
	    padding: 0px 40px 0px 40px;
      }


    .navbar {
      display: block;
    }
	

   

.title {
    min-height: 200px;  
}

.title h1 {
    font-size: 4rem !important; /* Adjust font size as needed */
}
	  

  
    }

    @media screen and (min-width: 1200px) {



	
		    .content {
      flex: 1;
      padding: 1rem;
      margin: 0 auto;
      max-width: 70%;
	  overflow-x: hidden;
    }
	
	     .description p {
        font-size: 32px;
        line-height: 1.6;
	    padding: 0px 40px 0px 40px;
      }

	
	
	
     .title {
    min-height: 250px;  
}

.title h1 {
    font-size: 5rem !important; /* Adjust font size as needed */
}

  
    }

    @media screen and (min-width: 1900px) {



	
			    .content {
      flex: 1;
      padding: 1rem;
      margin: 0 auto;
      max-width: 70%;
	  overflow-x: hidden;
    }
	
	 .description p {
        font-size: 48px;
        line-height: 1.6;
	    padding: 0px 100px 0px 100px;
      }
	

 .title {
    min-height: 300px;  
}

.title h1 {
    font-size: 6rem !important; /* Adjust font size as needed */
}


    }
	

.row {
    display: flex;
    justify-content: center; /* Center the cards horizontally */
    width: 100%;
    margin: 20px auto; /* Center the rows */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.card {
    width: 48%;
    margin: 1%;
    background-color: transperant;
    border-radius: 15px; /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* Elegant shadow */
    display: flex;
    flex-direction: column;
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}

.card:hover {
    /*transform: translateY(-25px);  Floating effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #A855F7, #A855F7); 
    color: white;
    border-radius: 0 0 15px 15px;
    /*box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.1);  Inner shadow effect */
}

.card-title {
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.card-description {
    font-size: 1em;
    color: white;
    opacity: 0.9;
}

.card-title a, .card-description a {
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 774px) {
    .row {
        flex-direction: column; /* Stack cards vertically */
        align-items: center;
        width: 100%;
		margin: 10px auto; /* Reduce row margin for mobile */
    }

    .card {
        width: 100%;
    }

.card:hover {
    transform: translateY(0px); /* Floating effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



}
