body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}
.page-title {
    text-align: left; /* Completely aligns text to the left */
    font-size: 30px; /* Slightly refined size for professionalism */
    font-family: "comic sans ms", sans-serif; /* Professional-looking font */
    color: #ffffff; /* Keeps text pure white */
width:60%;        
margin-bottom: 240px; /* Adjusted spacing to keep it clean */

}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 24px; /* Reduces font size for smaller screens */
        width: 90%; /* Allows better readability on mobile */
        margin-bottom: 200px; /* Reduces spacing for compact view */
    }
}
.brand-text, .tm-text {
    font-family: "Arial", sans-serif !important; /* Set to normal Arial */
    font-weight: bold; /* Keeps the text strong */
    color: #FFFFFF; /* Ensures pure white color */
}



/* Navbar Styling */
.navbar {
    background: linear-gradient(45deg, rgba(0, 0, 0, 1), rgba(10, 10, 10, 1));
    box-shadow: 0px 0px 50px rgba(0, 0, 255, 1);
    height: 55px; /* Maintained height */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Fixes alignment */
    padding: 0 20px;
}

/* Fix Navbar Brand Alignment */
.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF !important;
    font-family: "Arial", sans-serif;
    position: relative; /* Keeps it properly positioned */
    left: 20px; /* Moves brand name slightly to the left */
    top:-5px;
    
}

/* Fix Navbar Links Alignment */
.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center; /* Ensures menu stays on the right */
    gap:30;
    width:auto;
    position:relative;
    top:-5px;
}

/* Navbar Links - Styled in Comic Sans MS */
.navbar-nav li a {
    font-family: "Comic Sans MS", cursive, sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
   box-sizing:border-box;
list-style:none;
 text-transform: capitalize;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

/* Hover Effect for Navbar Links */
.navbar-nav li a:hover {
    color: #66B2FF; /* Changes text color to gold (or any desired color) */
    background:none;
    border:none;
    outline:none;
}


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body font and background */
body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #000;
  color: #fff;
}

/* Search Form in Navbar */
.navbar form[role="search"] {
  display: flex;
  align-items: center;
  margin-left: auto;
  position: relative;
top:-10px;  
    gap:30;
    width:auto;
  border-radius: 30px;
  background-color: #fff;
  padding: 4px 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Input group wrapper for rounded pill effect */
.navbar form[role="search"] .input-group {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
}

/* Input field */
.navbar form[role="search"] input[type="search"] {
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 0;
  width: 250px;
  font-family: inherit;
}

/* Submit button */
.navbar form[role="search"] button {
  background-color: transparent;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Magnifying icon */
.navbar form[role="search"] i {
  color:rgba(0, 0, 255, 1);
  font-size: 16px;
}

/* Optional focus style */
.navbar form[role="search"] input[type="search"]:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .navbar form[role="search"] {
    display: none;
  }
}



/* Mobile-specific styles */
@media (max-width: 768px) {
    .navbar-nav {
        display: none; /* Initially hides the menu */
    }
  .navbar-brand {
        top: 10px; /* Moves the brand logo downward */
left: 5px;        
display: block; /* Ensures visibility */
        text-align: center; /* Optional: Center text */
    }
    .navbar-nav.active {
        display: flex; /* Displays the menu when toggled */
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 200px;
        border-radius: 5px;
    }

    /* Show toggle button only on mobile */
    .toggle {
        display: block;
    }
}

/* Hide toggle button in desktop view */
@media (min-width: 769px) {
    .toggle {
        display: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Comic Sans MS", sans-serif; /* Apply Comic Sans MS globally */
}

body {
    background-color: #000000; /* Deep midnight black */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Sidebar Menu - Positioned on the Right */
.slide {
    height: 100%;
    width: 180px;
    position: fixed;
    right: -180px; /* Initially hidden */
    top: 0;
    background-color: #000000; 
    transition: 0.5s ease-in-out; /* Smooth sliding animation */
    padding-top: 20px;
}


/* Sidebar Header (Menu) */
h1 {
    color: #FFFFFF; /* Pure white */
    font-weight: bold; /* Makes text bold */
    font-size: 24px; /* Adjust size if needed */
    text-align: center;
    padding: 10px 0;
    pointer-events: none;
}


/* Sidebar Links */
ul {
    padding: 0;
}

ul li {
    list-style: none;
    padding: 10px;
    text-align: center;
}

ul li a {
    color: #FFFFFF; 
    font-weight: bold;
    display: block;
    text-transform: capitalize;
    text-decoration: none;
    transition: 0.2s ease-out;
    padding: 8px;
}

ul li:hover a {
    color:   #66B2FF; /* Changes text color to gold (or any desired color) */
    background:none;
    border:none;
    outline:none;

}

/* Toggle Button - Positioned on the Right */
.toggle {
    position: absolute;
    height: 24px; /* Smaller button */
    width: 28px;
    top: 18px;
    right: 15px; /* Moved to right */
    z-index: 2;
    cursor: pointer;
    background: none;
    border: none;
}

/* Smaller Toggle Lines */
.toggle .common {
    position: absolute;
    height: 2px; /* Thinner lines */
    width: 24px;
    border-radius: 50px;
    background-color: #FFFFFF;
    transition: 0.3s ease;
}

.toggle .topline {
    top: 6px;
    right: 50%;
    transform: translateX(50%);
}

.toggle .bottomline {
    top: 16px;
    right: 50%;
    transform: translateX(50%);
}

/* Animation for Sidebar Slide */
input {
    display: none;
}

input:checked ~ .slide {
    right: 0; /* Sidebar slides in from the right */
    box-shadow: 0px 0px 50px rgba(0, 0, 255, 1); }

input:checked ~ .toggle .topline {
    top: 10px;
    width: 24px;
    transform: rotate(-45deg);
}

input:checked ~ .toggle .bottomline {
    top: 10px;
    width: 24px;
    transform: rotate(45deg);
}

/* {
    box-sizing: border-box;
}*/

/* Page background */
body {
  background-image: url('Images/pawel-czerwinski-IcOg3D9yh0o.jpg'); /* Ensure this is the correct file path */
  background-size: cover; /* Makes the image cover the entire page */
  background-position: center; /* Centers the image */
  background-attachment: fixed; /* Keeps the background static when scrolling */
  backdrop-filter: ; /* Optional: adds frosted-glass effect */
  height: auto; /* Allows page to be fully scrollable */
  min-height: 100vh; /* Ensures full viewport coverage */
  margin: 0;
  padding: 0;
}

.grid-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 130px;
  margin: 0; /* Removed margin-top from ul */
  list-style: none;
  overflow: hidden;
}

.grid-wrap ul li {
  flex: 0 0 calc(50% - 30px); /* Adjusting for half width minus half the gap */
  box-sizing: border-box;
}


.grid-wrap a {
  display: inline-flex; /* 👈 Flexbox for centering */
  justify-content: center;
  align-items: center;
  width: 40px;           /* 👈 Equal width and height */
  height: 40px;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  text-decoration: none;
  border-radius: 50%;    /* 👈 Makes it a circle */
  font-size: 18px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.grid-wrap a:hover {
  background-color: rgba(0, 0, 0, 0);
 
}



@media (max-width: 600px) {

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
}


  .grid-wrap ul {
    padding: 30px; /* Reduce padding for smaller screens */
    gap: 30px;     /* Smaller gap works better on mobile */
  }

  .grid-wrap ul li {
    flex: 0 0 100%; /* Full width for single column */
    margin-top: 60px;   
}
}
@media screen and (device-width: 320px) and (device-height: 568px) {
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
  }

  .grid-wrap ul {
    padding: 0px; /* Further reduce padding for tighter screens */
    gap: 0px;     /* Smaller gaps help avoid overflow */
  }

  .grid-wrap ul li {
    flex: 0 0 100%;
    margin-top: 90px; /* Adjust for visual breathing room */
  }
}

/* Grid wrapper for audio items */
.grid-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  padding: 100px;
  list-style: none;
  margin: 0;
}

.grid-wrap ul li {
  flex: 0 0 calc(50% - 20px); /* two items per row */
  border-radius: 10px;
  display: flex;
  flex-direction: column; /* stack audio + buttons vertically */
  align-items: flex-start;
}

/* Audio player styling */
.grid-wrap ul li audio {
  width: 70%;              /* player width */
  margin: 110px auto 15px; /* top, auto left/right, bottom */
  display: block;          /* ensures auto margins work */
  outline: none;
}


/* Button row container */
.button-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  
  margin: auto 75px;  
}

/* Download button */
.button-row a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Profile picture link */
.button-row a.profile-link {
  overflow: hidden;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.button-row a.profile-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.like-btn {
  border-radius: 20%;
  background: none;   /* force override */
  color: white; /* thumbs-up always white */
  font-size: 20px;
  cursor: pointer;
  margin-top: 12px;  
  transition: all 0.3s ease;
}


.like-btn:hover {
  /* electric blue border glow */
  box-shadow: 0 0 12px 2px #00f;

  /* make it bigger and move downward */
  transform: scale(1.3) translateY(6px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid-wrap ul {
    gap: 20px;
    padding: 20px;
  }
  .grid-wrap ul li {
    flex: 0 0 100%; /* single column on tablets */
    display: flex;
    flex-direction: column;
    align-items: center; /* center audio + buttons */
  }
  .grid-wrap ul li audio {
    margin: 25px auto 15px; /* center horizontally */
    display: block;
    width: 80%;
  }
  .button-row {
    margin: 10px auto;       /* center the row itself */
    justify-content: center; /* center links inside */
  }
}

/*  specific (320px width) */
@media screen and (max-width: 320px) {
  .grid-wrap ul {
    gap: 10px;
    padding: 10px;
  }
  .grid-wrap ul li {
    flex: 0 0 100%; /* full width */
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* center audio + buttons */
  }
  .grid-wrap ul li audio {
    width: 100%;
    margin: 30px auto 15px; /* center horizontally */
    display: block;
  }
  .button-row {
    gap: 8px;
    margin: 10px auto;       /* center the row itself */
    justify-content: center; /* center links inside */
  }
  .button-row a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .button-row a.profile-link {
    width: 40px;
    height: 40px;
  }

 
