     


/*HTML CSS styles*/
html {
        background-color: black;
}


/* Reset default browser styles */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}     

     
/* Container styles */
#container-one {    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    border: 4px solid black;
    padding: 10px;
  }
  
  #container-two {
    background-image: url('cover-img.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: rgb(79, 222, 222);
    margin: 40px auto;
    border: 8px solid black;
    max-width: 1200px;
    padding: 20px;
  }

.bamApps-title h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: aliceblue;
  text-shadow: 0px 2px 2px black;
  background-color: rgba(100, 149, 237, 0.6);
  border-radius: 5px;
}

  .downloadApp {
    display: flex;
    margin: 20px;
    align-items: center;
    justify-content: center;
    background-color: #a9c7e4;
    filter: drop-shadow(0px 2px 2px);
    border-radius: 5px;
  }


  .downloadApp a {
    color: aliceblue;
    filter: drop-shadow(0px 2px 2px black);
  }
     
.tray {
  color: #062039;
  text-shadow: 0px 2px 2px white;
}

/* Header Styles */
    header {
        padding: 20px 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    /* Navigation Styles */
    nav {
        width: 80%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }



    /* Menu Styles */
    ul {
        list-style: none;
        display: flex;
        align-items: center;
    }

    li {
        position: relative;
        margin-left: 30px;
    }

    a {
        text-decoration: none;
        color: #333;
        font-size: 16px;
        padding: 8px 0;
        transition: color 0.3s;
    }

    a:hover {
        color: #ff6347;
    }

/* Dropdown Menu Styles */
    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%; /* Aligns the dropdown directly below the parent link */
        left: 0;
        background-color: rgb(105, 229, 229);
        min-width: 160px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        z-index: 1;
        padding: 0; /* Remove padding to bring dropdown closer */
    }

    .dropdown-content a {
        padding: 12px 16px;
        display: block;
        color: #333;
        border-radius: 10px;
    }

    .dropdown-content a:hover {
        background-color: lightseagreen;
    }

    /* Show Dropdown on Hover */
    li:hover .dropdown-content {
        display: block;
    }

    /* Ensure Dropdown Stays Visible on Hover */
    li:hover > .dropdown-content {
        display: block;
    }


/*Underline CSS styles*/    
#header-div nav ul li a {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    color: aliceblue;
    text-transform: uppercase;
    transition: transform 0.3s;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 20px;
    text-shadow: 0px 2px 2px black;
  }
  
  #header-div nav ul li a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background-color: aliceblue;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
    filter: drop-shadow(0px 1px 1px black);
  }
  
  #header-div nav ul li a:hover::after,
  #header-div nav ul li a.active::after {
    width: 100%;
  }
  
  #header-div nav ul li a.active {
    font-weight: bold;
    color: darkcyan;
    text-shadow: 0px 3px 3px black;
  }

/*app-links-page*/
/* app-links-page */
#app-links-page main ul li a {
  color: aliceblue;
  text-decoration: none; /* Optional: Removes underline if present */
  color: aliceblue;
  text-shadow: 0px 2px 2px black;
}
#app-links-page main {
  background-color: rgba(100, 149, 237, 0.6); /* Cornflowerblue with 60% transparency */
  border-radius: 5px;
}

#app-links-page main ul li a:hover {
  color: lightcoral; /* Change to your desired hover color */
}



/*bio CSS styles*/
.bio-img {
    display: flex;
    margin: 20px;
    align-items: left;
    justify-content: left;  
    filter: drop-shadow(0px 10px 10px black);
  }
  
  .bio-img img {
    display: flex;
    border-radius: 10px;
    z-index: 10;
  }
  
   
/*Bio text CSS styles*/  
#about-the-artist {
  filter: drop-shadow(0px 3px 3px black);
  background-color: rgb(240, 248, 235, 0.2);
}

  #bio-text {
    display: flex;
    color: white;
    margin: 10px;
    text-shadow: 0px 3px 3px black;
  }


  /* Footer and social icon */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;  
  }
  
  .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
  }
  
  .social-icons img {
    width: 100%;
    height: auto;
    margin: 10px;
    margin-bottom: 10px;
  }
  
  /* Additional styling */
  .tooltip {
    position: absolute;
    bottom: 50px;
    background-color: #555;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .social-icons a:hover .tooltip {
    opacity: 1;
  }
  
  /* Copyright styles */
  #copyright p {  
    margin: 20px;
    color: white;
    text-shadow: 0px 3px 3px black;  
    padding: 8px;
    font-family: 'merienda', cursive;
  }


  #shippingDiv {
    display: inline-block;
    margin: 20px;
    padding: 15px;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 3px 3px black);
  background-color: blue;
  color: aliceblue;

  }


  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px; /*adding gap between items*/
  }
  
  .product {
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    max-width: 300px; /*Limits the maximum width on larger screens*/
    margin: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
  }
  .product:hover {
    transform: scale(1.05);
  }
  
  .image-container {
    display: block;
    position: relative;
    width: 100%;
  }

  .product img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  
  .description {
    padding: 15px;
  }
  
  .product h2 {
    font-size: 18px;
    margin: 10px 0;
  }
  
  .product p {
    color: #555;
    margin: 5px 0;
  }


  /*Watermark CSS code*/ 
  .watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
  }

  
  button {
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
  }
  
  button:hover {
    background-color: #218838;
  }
  
  
  /*Sub-heading CSS code*/
.sub-heading-div {
  display: flex;
  margin: 20px;
  align-items: center;
  justify-content: center;
}  
.sub-heading nav ul {
  display: flex;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.sub-heading nav ul li {
  float: left; 
  background-color: darkcyan;
  filter: drop-shadow(0px 3px 3px black);
}
.sub-heading nav ul li a {
  display: block;
  color: aliceblue;
  text-decoration: none;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  text-shadow: 0px 3px 3px black;
}
/*Sub heading CSS code end here*/
 
  
/*Coming soon sign*/
#coming-soon {
  display: flex;
  margin: 20px;
  align-items: center;
  justify-content: center;
}
#coming-soon h1 {
  color: aliceblue;
  background-color: darkcyan;
  padding: 8px;
  filter: drop-shadow(0px 3px 3px white);
  text-shadow: 0px 3px 3px black;
}


/* Responsive Styles CSS code start here*/
@media (max-width: 768px) {
  nav {
      flex-direction: column;
  }

  ul {
      flex-direction: column;
      width: 100%;
      margin-top: 20px;
  }

  li {
      margin: 10px 0;
  }
}

  
  /*Responsive Design continue*/

  @media (min-width: 768px) {
    .product {
      width: 48%; /* Two products per row on tablets and small laptops*/
    }
  }
  
  @media (min-width: 1024px) {
    .products {
      width: 22%; /*Four products per row on larger screens*/
    }
  }

  