@import url("https://fonts.googleapis.com/css2?family=Red+Rose:wght@300..700&display=swap");

body {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.7)),
    url("Images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Red Rose", serif;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
.navbar .nav-links {
  display: flex;
  gap: 20px;
}
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav li {
  display: inline;
}
.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.navbar .nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}
.drop-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: none;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: white;
  z-index: 30;
}
.social-icons {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  margin-top: 100px;
  margin-bottom: 40px;
}
.social-icons a {
  text-decoration: none;
  color: white;
  font-size: 28px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  border: none;
  outline: none;
}
.social-icons a:hover {
  color: #e6e6e6;
  transform: translateY(-2px);
}
.social-icons a:focus {
  outline: none;
  border: none;
}
.site-footer {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  font-family: "Red Rose", serif;
  font-size: 16px;
  letter-spacing: 0.4px;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 24px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.site-footer a {
  color: white;
  cursor: pointer;
  pointer-events: auto;
}

.site-footer a:hover {
  color: #e6e6e6;
}

.site-footer .untappd-link {
  color: #f4c16e;
}

.site-footer .untappd-link:hover {
  color: #ffd99a;
}
.reviews-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  gap: 24px;
  font-family: "Red Rose", serif;
}

.reviews-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.75);
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
  padding: 8px 16px;
  border-radius: 8px;
}

.review-options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.review-option {
  width: 220px;
  text-align: center;
  padding: 24px 20px;
  border: 2px solid white;
  border-radius: 10px;
  color: white;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.65);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.review-option:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  transform: translateY(-2px);
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
@media screen and (max-width: 900px) {
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 10px;
    width: 200px;
    background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.68));
    padding: 20px;
    gap: 15px;
    border: 2px solid #333;
    border-radius: 8px;
    animation: slideDown 0.3s ease forwards;
  }
  .navbar.active {
    display: flex;
  }
  .nav {
    flex-direction: column;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .drop-icon {
    display: block;
    cursor: pointer;
  }
  .social-icons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 120px;
    margin-bottom: 24px;
  }
  .reviews-section {
    margin-top: 120px;
    padding: 0 16px;
  }
  .reviews-title {
    font-size: 32px;
    padding: 6px 12px;
  }
  .review-option {
    width: 100%;
    max-width: 320px;
  }
  .site-footer {
    font-size: 15px;
    padding-top: 16px;
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 901px) {
  .navbar {
    display: flex !important;
  }
  .drop-icon {
    display: none;
  }
}
