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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
    url("Images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Red Rose", serif;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  width: 100%;
  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 .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.2);
  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;
}

.southport-section {
  margin-top: 90px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.southport-card {
  width: min(780px, 100%);
  padding: 28px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  text-align: left;
  color: white;
}

.southport-title {
  color: white;
  font-size: 46px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

.southport-subtitle {
  margin-top: 12px;
  color: #f3e2c5;
  font-size: 20px;
}

.percent {
  margin-top: 8px;
  color: #f4c16e;
  font-size: 17px;
}

.southport-article-text {
  margin-top: 18px;
  color: white;
  font-size: 18px;
  line-height: 2;
  text-wrap: pretty;
}

.brewery-note {
  margin-top: 3rem;
  color: #f3e2c5;
  font-size: 18px;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  margin-top: 120px;
  margin-bottom: 40px;
}

.social-icons a {
  color: white;
  font-size: 28px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.social-icons a:hover {
  color: #e6e6e6;
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  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;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .drop-icon {
    display: block;
    cursor: pointer;
  }

  .southport-section {
    margin-top: 120px;
    padding: 0 16px;
  }

  .southport-card {
    padding: 22px 18px;
    text-align: left;
  }

  .southport-title {
    font-size: 34px;
  }

  .southport-subtitle {
    font-size: 18px;
  }

  .percent {
    font-size: 16px;
  }

  .southport-article-text {
    font-size: 17px;
    line-height: 2;
  }

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

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

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

  .drop-icon {
    display: none !important;
  }
}
