@charset "utf-8";
/* Author: Solange Mihanda Muhima
Date: March 25 2025
File name: StyleSheet
*/
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    height:1000px;
    padding: 0;
    background-color: aliceblue;
    color: #333;
    text-align: center;
}

/* Header & Navigation */
header {
    background-color: #223;
    padding: 10px 0;
}

.logo {
    padding: 20px;
    background-color: rgb(245 245 243/var(--tw-bg-opacity,1));
}
.logo img {
    width: 150px;
    display: block;
    margin: 0 auto;
}

/* Create a top navigation bar with a black background color  */
.topnav {
  
    background-color: #223;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    color: whitesmoke;
    text-align: center;
    padding: 20px 15px;
    margin-left: 10px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  /*search bar */
  .topnav .search-container {
    position: sticky;
    float: right;
    margin-top: 10px;
    margin-right: 7px;

  }
  
  .topnav input[type=text] {
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border: none;
  }
  
  .topnav .search-container button {
    float: right;
    padding: 4px 10px;
    margin-top: 8px;
    margin-right: auto;
    background: #ddd;
    font-size: 17px;
     border: none;
    cursor: pointer;
  }
  
  .topnav .search-container button:hover {
    background: lightblue;
  }
  .search-container button img {
    width: auto;  
    height:auto;
    
    
}

  @media screen and (max-width: 600px) {
    .topnav .search-container {
      float: none;
    }
    .topnav a, .topnav input[type=text], .topnav .search-container button {
    
      display: block;
      text-align: left;
      width: 90%;
      margin: 0;
      padding: 0px;
    }
    .topnav input[type=text] {
      border: 2px solid #ccc;  
    }
  }
  .reviews h1 {
    font-size: 2em;
  }
.reviews p {
    font-size: 1.2em;
}
  .reviews {
    background-image: url(images/pexels-darkgreen.jpg);
    color: aliceblue;

     /*create the parallax scrolling effect*/
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     padding: 40px 20px;
     position: relative;
  }
  .submit-review h2 {
    text-align: left;
  }

  .submit-review {
    background-image: url(images/pexels-pinktestimonial.jpg);
    min-height: 300px;
    /*create the parallax scrolling effect*/
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 20px;
    position: relative;
}

.submit-review input{
    width: 30%;
    padding: 10px;
    float: left;
    margin: 20px 0;
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.submit-review textarea {
    width: 80%;
    float: left;
  position:sticky;
    padding: 20px;
    margin: 20px 0;
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.submit-review button {
    padding: 10px 20px;
    width:15%;
    background-color:rgb(30, 37, 30);
    color: white;
    cursor:progress;
    border-radius: 0.5em;
    position: absolute;
    bottom: 30px;
}

.submit-review button:hover {
    background-color: #445;
}

.Thanks {
text-align: center;

color: darkgreen;
font-family: fantasy;
font-size: 1.3em;
text-decoration: solid;

}
/*New Styles Added Below */

/* ===============================
   Mobile Styles: 0px to 480px 
   ===============================
*/
@media only screen and (max-width: 480px) {

.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #555;
  height: 300px;
  color: white;
  border-radius: 10px;
}

.caption {
  top: 700px;
}
a.icon {
 visibility:visible;
 
}
.logo {
  padding: 5px;
}
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #04AA6D;
  color: white;
}

.search-container form {
  width: 30%;
}
.search-container img {
display: none;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

}

/*closing curly brace for mobile media query*/

/* ================================
   Tablet Styles: 481px and greater 
   ================================
*/
@media only screen and (min-width: 481px){
    
  .topnav {
    width: 100%;
   }
   
   foot.container{
    background-color:#223;
    box-shadow: none;
    display: block;
    width: 100%;
   }

  

}

/* =================================
   Desktop Styles: 769px and greater
   =================================
*/
@media only screen and (min-width: 769px){
 
   .icon {
    display: none;
   }
  }

/* Footer */
.footer {
    background-color: #223;
    color: wheat;
    padding: 3px;
}