@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.1), rgba(255, 255, 255, 0.7)),
    url("Images/dark 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%;
  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: #d0d0d0;
  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;
}

.tropical-section {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  padding: 0 16px;
  font-family: "Red Rose", serif;
}

.tropical-title {
  color: white;
  font-size: 42px;
  font-family: "Red Rose", serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.75);
  text-align: center;
  background: linear-gradient(rgba(139, 115, 85, 0.5), rgba(0, 0, 0, 0.35));
  padding: 8px 16px;
  border-radius: 8px;
}

.tropical-review-container {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 28px 32px;
  border-radius: 14px;
  background: linear-gradient(rgba(139, 115, 85, 0.3), rgba(0, 0, 0, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  color: white;
  font-family: "Red Rose", serif;
}

.tropical-review-articles,
.review-content {
  line-height: 2;
}

.tropical-review-article-title,
.brewery-name,
.from,
.review-subtitle,
.review-text {
  color: white;
}

.tropical-review-article-title {
  font-size: 32px;
  text-align: center;
}

.brewery-name {
  font-size: 22px;
  text-align: center;
}

.from {
  font-size: 16px;
  opacity: 0.95;
  text-align: center;
}

.review-image {
  display: block;
  width: 100%;
  max-width: 320px;
  height: 260px;
  object-fit: contain;
  margin: 18px auto 0;
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.review-subtitle {
  margin-top: 18px;
  font-size: 26px;
  text-align: center;
  color: #f0e4d6;
}

.review-text {
  font-size: 18px;
}

.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);
}

.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-bottom: 24px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.site-footer a {
  color: white;
}

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

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

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

* {
  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;
  }

  .tropical-section {
    margin-top: 120px;
  }

  .tropical-review-container {
    margin: 22px 16px 0;
    padding: 22px 18px;
  }

  .tropical-title {
    font-size: 32px;
    padding: 6px 12px;
  }

  .tropical-review-article-title {
    font-size: 28px;
  }

  .brewery-name {
    font-size: 20px;
  }

  .review-subtitle {
    font-size: 22px;
  }

  .review-text {
    font-size: 17px;
  }

  .review-image {
    max-width: 100%;
  }

  .social-icons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 120px;
    margin-bottom: 24px;
  }

  .site-footer {
    font-size: 15px;
    padding-bottom: 20px;
  }
}

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

  .drop-icon {
    display: none;
  }
}
