* {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #d3c6a8;
    color: #3b2a1e;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .header {
    background-color: #6b4f3a;
    color: #fff;
    text-align: center;
    padding: 2% 0;
    position: sticky;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
 
  
  .header h1 {
    font-size: 220%;
    margin: 0;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .topnav {
    background-color: #8b5a2b;
    overflow: hidden;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
  }
  
  .topnav a {
    position: relative; 
    text-decoration: none;
    padding: 1% 2%;
    text-decoration: none;
    color: #fff;
    font-size: 125%;
    font-weight: bold;
    text-transform: uppercase;
    flex: 1;
    justify-content: center;
    display: flex;
    transition: color 0.3s, transform 0.2s;
  }
  
  
  .topnav a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    
  }
  
  .topnav a:hover:before {
    opacity: 1;
  }
  
  
  .topnav a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #f9f9f9;
    transform: translateX(-50%);
    transition: width 0.3s;
  }
  
  .topnav a:hover:after {
    width: 100%;
  }
  
  .topnav :hover{
    background-color: grey;
  }
  
  
  .topnav a.active {
    color: #f9f9f9;
    background-color:#bb8055;
    
    box-shadow: 0 2% 6% rgba(0, 0, 0, 0.2); 
  }
  
  
  .topnav a.active:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px; 
    height: 3px;
    background-color: #f9f9f9;
    
    opacity: 1;
    transition: width 0.3s ease-in-out; 
  }
  
  
  .topnav a:hover.active:before {
    width: 100%;
  }
  
  
  
  
  
  
  
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .columnSmall {
    flex: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
  }

  .column{
    flex: 1;
    padding: 20px;
  }
  
  .middle {
    flex: 3;
  }
  
  .side {
    order: 1; 
    flex: 0 0 100%; 
  }
  
 
  @media screen and (min-width: 768px) {
    .side {
      order: 1; 
      flex: 0 0 100%; 
    }
    
   
  
  }
  
  #filterSelect {
    width: 265px; 
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
    background-color: #3b2a1e;
    color: white;
    display: flex;
    align-self: center;
  
  }

  .morelinks {
    display: flex;
    background-color: #3b2a1e;
    color: #fff;
    width: 100%;
    padding:10px;
    border-radius: 8px;
    font-size: 18px;
    margin: 20px;
    justify-content: center;
    transition: background-color 0.3s;
  }
  
  .morelinks:hover {
    background-color: #3b2a1e;
  }


  .intro {
    background-image: url('intro.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 10% 0;
    
  }
  
  .intro-content {
    max-width: 60%;
    margin: 0 auto;
  }
  
  .intro h2 {
    font-size: 250%;
    margin-bottom: 4%;
  }
  
  .intro p {
    font-size: 150%;
    margin-bottom: 8%;
  }
  
  .share-button {
    display: inline-block;
    background-color: #3b2a1e;
    color: #fff;
    padding: 5% 10%;
    border-radius: 5px;
    text-decoration: none;
    font-size: 100%;
    cursor: pointer;
  }
  
  .share-button:hover {
    background-color: #3b2a1e;
  }
  
  .reviews {
    margin-top: 10%;
  }
  
  .review-card {
    background-color: #fff;
    border-radius: 10%;
    box-shadow: 0 1% 2% rgba(0, 0, 0, 0.1);
    padding: 3% 4%;
    margin-bottom: 3%;
  }
  
  .review-card h3 {
    font-size: 120%;
    margin: 0;
  }
  
  .review-score {
    font-size: 110%;
  }
  
  .review-text {
    font-size: 100%;
  }
  
  .review-author {
    font-style: italic;
    font-size: 90%;
  }
  .review-date {
    margin-top: 0.5%;
    font-size: 70%;
  }
  .hidden {
    display: none; 
  }
  .footer {
    background-color: #6b4f3a;
    color: #fff;
    text-align: center;
    padding: 1.5% 0;
    width: 100%;
    margin-top: auto;
  }
  
  .footer p {
    margin: 0;
    font-size: 80%;
  }
  .footer a {
    color:grey;
    margin-right: 1%;
    font-size: 80%;
  }
  

  .form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #3b2a1e;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .form-container h1 {
    font-size: 150%;
    text-align: center;
    margin-bottom: 20px;
    color: #3b2a1e;
    text-transform: uppercase;
  }

  .form-container a {
    display: flex;
    justify-content: center;
    color: #3b2a1e;
    margin-bottom: 20px;
  }

  .form-container p {
    font-size: 100%;
    text-align: center;
    margin-bottom: 20px;
    color: #3b2a1e;
    font-weight: bold;
  }

  .form-container form {
    display: flex;
    flex-direction: column;
  }

  .form-container label {
    font-size: 100%;
    margin-bottom: 10px;
    color: #3b2a1e;
  }

  .form-container input[type="text"],
  .form-container textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .form-container textarea {
    resize: vertical;
  }

  .form-container button[type="submit"] {
    background-color: #3b2a1e;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 90%;
    cursor: pointer;
    align-self: center;
    text-transform: uppercase;
    align-content: center;
    align-items: center;
  }

  .form-container button[type="submit"]:hover {
    background-color: #4f3b2a;
  }

  .form-container button[type="submit"]:focus {
    outline: none;
  }

  .form-container button[type="submit"]:before {
    content: "\f14a";
    font-family: FontAwesome;
    margin-right: 5px;
  }

  .form-container button[type="submit"]:hover:before {
    content: "\f004";
  }
    .reviews-container {
      margin: 0 auto;
      max-width: 800px;
      justify-content: center;
      display: grid;
    }
    
    .reviews {
      margin: 0 auto;
      max-width: 1200px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .review-card {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.5s ease-in-out;
      
      width: auto;
      
      margin: 10px;
    }
    
    
    
    .reviewss {
      display: flex;               
      flex-direction: column;     
      justify-content: center;    
      align-items: center;        
      text-align: center; 
      
    }
    
    .review-image {
    
      height: auto;
      margin-bottom: 10px;
      max-height: 150px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .review-text {
      font-size: 14px;
      line-height: 1.6;
      flex-grow: 1;
    }
    
    .reviews p {
      text-align: center;
      font-size: 18px;
      margin: 20px 0;
    }
    
    .reviews h2 {
      font-size: 36px;
      text-align: center;
      margin-bottom: 30px;
    }
    
    .search-form {
      text-align: center;
      margin-top:2%;
    }
    .search-form input[type="text"] {
      padding: 10px;
      border-radius: 5px;
      background-color: white;
      }
    button[type="submit"]{
      background-color: #3b2a1e;
      color: white;
      padding: 10px;
      border:black;
    }

    .account-info {
      background-color: #fff;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      justify-content: center;
    }
    
    .account-info h2 {
      margin-top: 0;
      font-size: 24px;
      color: #333;
    }
    
    .account-info p {
      margin: 0;
      line-height: 1.6;
      color: #555;
    }
    
    .aBtn {
      display: inline-block;
      margin-bottom: 1%;
      background-color: #f44336;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-align: center;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 1px;
      transition: background-color 0.3s ease;
    }
    
    .aBtn:hover {
      background-color: #d32f2f;
    }
    
    .aBtn:active {
      background-color: #c62828;
      transform: scale(0.95);
    }

    .settings-container form label {
      display: block;
      font-weight: bold;
    }
    
    .settings-container form input[type="text"],
    .settings-container form input[type="email"],
    .settings-container form input[type="checkbox"] {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    
    .settings-container form input[type="checkbox"] {
      margin-top: 5px;
    }
    
    .settings-container form button[type="submit"],
    .settings-container form button[type="button"] {
      background-color: #333;
      color: #fff;
      padding: 10px 20px;
      border: none;
      cursor: pointer;
    }
    
    .settings-container form button[type="submit"]:hover,
    .settings-container form button[type="button"]:hover {
      background-color: #444;
    }
    
    .settings-container form #errorText {
      color: red;
      font-size: 14px;
    }
    
    

    
    
    

    .your-reviews {
      margin: 30px auto;
      max-width: 1200px;
      display: flex; 
      flex-direction: column;
      align-items: center;
  }
    
    .your-review-card {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.5s ease-in-out;
      min-width: 90%;
      width: 90%;
      
      margin: 10px;
    }
    
    .your-review-card:hover {
      transform: translateY(-3vw);
    }
    
    .reviewss {
      text-align: center;
    }
    
    .your-review-image {
    
      height: auto;
      margin-bottom: 10px;
      max-height: 150px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .your-review-text {
      font-size: 14px;
      line-height: 1.6;
      flex-grow: 1;
    }
    
    .your-reviews p {
      text-align: center;
      font-size: 18px;
      margin: 20px 0;
    }
    
    .your-reviews h2 {
      font-size: 36px;
      text-align: center;
      margin-bottom: 30px;
    }
    
    
    
    
    a {
      text-decoration: none; 
      color: #000; 
    }
    
    
    a:hover {
      text-decoration: underline; 
      color: #555; 
    }

    
  .column.side {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }


  .column.side h2 {
    color: #333;
    font-size: 175%;
    margin-bottom: 10px;
  }


  .column.side p {
    font-size: 110%;
    margin-bottom: 20px;
  }


  .column.side ul {
    font-size: 110%;
    list-style-type: disc;
    padding-left: 20px;
  }


  .column.side li {
    margin-bottom: 8px;
  }


  .column.side li:hover {
    color: #0066cc;
    
  }


  .column.side {
    border: 1px solid #ddd;
  }

  .reviewBtn {
    background-color: #d32f2f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    display: none;
  }

  .reviewBtn.selected {
    background-color: #fff;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    display: none;
  }

  .button-container {
    display: flex;
    justify-content: center;
    
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    margin: 20px; 
  }
  
  .donate-button {
    display: inline-block;
    background-color: #3b2a1e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .donate-button:hover {
    background-color: #3b2a1e;
  }


  .terms {
    max-width: 90%;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}
.phonenav{
  display: none;
}
@media screen and (max-width: 600px) {
  .search-index{
    border: 5px solid #3b2a1e;
    border-radius: 15px;
    width: 150%;
    height: 50px;
    margin: 5px;
  }
  
  .search-index-small{
    border: 5px solid #3b2a1e;
    border-radius: 10px;
    width: 20%;
    height: 50px;
    margin: 5px;
  }
  
  button.search-index-small{
    display: none;
  }
  
  button.search-index{
    display: none;
  }
  .topnav{
  display: none;
  }
  .footer{
    display:none;
  }
  .phonenav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #3b2a1e;
    padding: 10px;
    
    position: sticky;
    width: 100%;
    z-index: 999;
    
    
  }

  .phonenav a {
    
    text-decoration: none;
    color: #fff;
    font-size: 24px; 
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .phonenav a.active {
    color: #c62828;
  }
  .phonenav img {
    width: 50%;
    
  }
  .header {
    background-color: #3b2a1e;
    color: #fff;
    text-align: center;
    padding: 2% 0;
    
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  
  .search-index{
    border: 5px solid #3b2a1e;
    border-radius: 15px;
    width: 150%;
    height: 50px;
    margin: 5px;
  }
  
  .search-index-small{
    border: 5px solid #3b2a1e;
    border-radius: 10px;
    width: 50%;
    height: 50px;
    margin: 5px;
  }
  
  button.search-index-small{
    width:75px
  }
  
  button.search-index{
    width: 100px;
  }
 
  
  
}

@media screen and (min-width: 600px){
  .reviews-container{
    display: inline-block;
  }
    
}


#uploadChoiceForm {
  margin-bottom: 20px;
}

#uploadChoiceForm input[type="radio"] {
  display: none;
}

#uploadChoiceForm label {
  display: inline-block;
  cursor: pointer;
  padding: 8px 15px;
  background-color: #f2f2f2;
  color: #333;
  border-radius: 5px;
  margin-right: 10px;
}

#uploadChoiceForm label:hover {
  background-color: #e0e0e0;
}

#uploadChoiceForm input[type="radio"]:checked + label {
  background-color: #3b2a1e;
  color: #fff;
}


input[type="file"] {
  display: block;
  margin-top: 5px;
}

input[type="file"] {
  border: 1px solid #ccc;
  padding: 6px 12px;
  cursor: pointer;
  background-color: #3b2a1e;
}

input[type="file"]:hover {
  background-color: #f0f0f0;
}

input[type="file"]:focus {
  outline: none;
}


input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
  color: white
}

label.file-upload-label {
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  display: inline-block;
}

label.file-upload-label:hover {
  background-color: #0056b3;
}

.cheese-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.fade-in {
  animation: fadeIn 1.5s ease-in;
}


.slide-in {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}


.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

.bounce-in {
  animation: bounceIn 1.5s ease;
}

.search-container{
  display: flex;
  align-items: center;
}
.search-index{
  border: 5px solid #3b2a1e;
  border-radius: 15px;
  width: 100%;
  height: 50px;
  margin: 5px;
}

.search-index-small{
  border: 5px solid #3b2a1e;
  border-radius: 15px;
  width: 75%;
  height: 50px;
  margin: 5px;
}

button.search-index-small{
  width:75px
}

button.search-index{
  width: 100px;
}

::placeholder {
  font-family: 'Calibri', sans-serif;
  font-size: 16px;
  color: #888;
  opacity: 1;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.cheese-image{
  width: 65%;
  display: block;
  margin: 0 auto;
}

.cheese{
  display: block;
  margin: 0 auto;
  
}
.container {
  display:flex;
  justify-content: center;
  align-self: center;
  align-items: center;
}
.cheese-choice {
  max-width: 800px;
  text-align: center;
  margin: 20px;
  display: flex;
  flex-direction:column;
  justify-content: center;
  height: 600px;
}

.column-choice {
  flex: 1; 
  padding: 20px;
  max-width: 600px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

