/*Color variables*/
:root{
  --clr-bk: #E9DAC4; /*The most notable color in magnitude*/
  --clr-second: #ffffff;
  --clr-third: #F9F6F0;
  --clr-min: #5E6826;
  --nav: rgb(184, 121, 96);
  --clr-footer: #EF813E;
  
}
/* General Styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body takes the full height of the viewport */
  }
/* Header */
nav{
  background-color: var(--nav);
  box-shadow: 3px 3px 5px rgba(rgb(35, 62, 179), rgb(18, 41, 114), rgb(30, 5, 88), alpha);

}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;

}
nav li{
  height: 80px;

}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
  transition: ease 0.5s;
}
nav a:hover{
  background-color: antiquewhite;
}
nav li:first-child{
  margin-right: auto;

}
.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(240, 248, 255, 0.418);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1) ;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;


}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
display: none;
}

@media(max-width: 800px){
.hideOnMobile{
  display: none;
}
.menu-button{
  display: block;
}
}
@media( max-width: 400px){
  .sidebar{
      width:100%;
  }
}

/* pricing cards */

.pricing-container {
  flex: 1; /* Ensures the main content takes up remaining space */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--clr-bk);

}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: var(--clr-third);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: ease 0.5s;
  
}

.card:hover{
  background-color: var(--clr-second);
  transform: scale(1.05);
}
.card h2, .card p, .card span {
  margin-bottom: 10px;
  text-align: start;
  padding-left: 0;
}


/*word styling of card*/

.card-title{
  font-size: 2rem;
  
}
.price{
  font-size: 1.5rem;
}
p{
  color: rgb(0, 0, 0);
  font-size: 1rem;
}
.offer{
  color: #ffffff;
  font-weight: bolder;
  border-radius: 5px;
  background-color: var(--clr-min);
  text-align: center;
  justify-content: center;
}
h4{
  margin-top: 15px;
}
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}

.try-btn {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
  transition: ease 0.7s;
}
.try-btn:hover {
  background-color: #be6161;
  
}
.payment{
  text-decoration: none; /* Removes the underline */
  color: inherit; /* Inherits color from the parent element */
}
@media(min-height: 800px){
  .pricing-container {
    flex: 1; /* Ensures the main content takes up remaining space */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #dddad2e0;
    justify-content: center;
  

  }
}


/* Footer styling */
footer {
  font-family: "DM Serif Text", serif;
  background-color: var(--clr-footer);
  color: rgb(255, 255, 255);
  padding: 20px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}
.p_footer{
  color: white;
  
}