@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;
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
  .navbar {
    padding: 18px 20px;
    gap: 16px;
  }

  .nav {
    gap: 14px;
  }

  .navbar .nav-links a {
    font-size: 16px;
    padding: 7px 9px;
  }
}
.content-section {
  max-width: 800px;
  margin: 70px auto 40px;
  text-align: center;
  font-family: "Red Rose", serif;
  color: #333;
  padding: 0 20px;
}
.content-section .section-title {
  font-size: 32px;
  margin-bottom: 16px;
}
.content-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.home-highlights {
  width: min(1000px, 92%);
  margin: 10px auto 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  font-family: "Red Rose", serif;
}
.featured-brew,
.brew-timeline {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}
.featured-brew h3,
.brew-timeline h3 {
  font-size: 28px;
  color: #f5f5f5;
  margin-bottom: 14px;
}
.featured-brew img {
  width: min(100%, 360px);
  border-radius: 10px;
  margin-bottom: 14px;
}
.featured-brew h4,
.timeline-grid h4 {
  font-size: 22px;
  color: #f5f5f5;
  margin-bottom: 8px;
}
.featured-brew p,
.timeline-grid p {
  font-size: 17px;
  color: #f0f0f0;
  line-height: 1.6;
}
.featured-brew a {
  display: inline-block;
  margin-top: 14px;
  color: #f5f5f5;
  text-decoration: underline;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.timeline-card-link {
  display: block;
  color: inherit;
}
.timeline-grid article {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 14px;
}
.timeline-card-link article {
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.timeline-card-link:hover article {
  background: rgba(255, 255, 255, 0.24);
}
.social-icons {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  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-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;
}
* {
  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;
  }
  .home-highlights {
    width: min(700px, 94%);
    margin-bottom: 24px;
  }
  .featured-brew h3,
  .brew-timeline h3 {
    font-size: 24px;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .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;
    justify-content: center;
  }
  .drop-icon {
    display: none;
  }
}
