/* FFXIV Club Siren Halloween Event Website Styles */

/* CSS Variables for Halloween/FFXIV Theme */
:root {
  --primary-dark: #0d0d0d;
  --secondary-dark: #1a1a1a;
  --accent-orange: #ff6b35;
  --accent-gold: #d4af37;
  --text-light: #f4f4f4;
  --text-gray: #cccccc;
  --shadow-dark: rgba(0, 0, 0, 0.7);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Amatic SC', cursive;
  background: #0d0d0d !important;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  font-size: 1.1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Nosifer', cursive;
  font-weight: normal;
}

p {
  font-weight: 400;
  font-size: 1.2rem;
}

/* Club and DJ Name Highlighting */
.club-siren {
  color: #20b2aa; /* Teal - Club Siren brand color */
  font-weight: 600;
  text-shadow: 0 0 5px rgba(32, 178, 170, 0.5);
}

.club-moon {
  color: #4682b4; /* Steel Blue - Darker blue for Club Moon */
  font-weight: 600;
  text-shadow: 0 0 5px rgba(70, 130, 180, 0.5);
}

.dj-highlight {
  color: var(--accent-gold); /* Gold for DJs */
  font-weight: 600;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Halloween Atmospheric Background Effects */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/halloween-background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -3;
  opacity: 0.25;
}

/* Blood Moon and Spider Web Top Section */
.atmospheric-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background-image: url('../assets/halloween-background.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
  opacity: 0.4;
  mask: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Graveyard Bottom Section */
.atmospheric-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  background-image: url('../assets/halloween-background.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
  opacity: 0.6;
  mask: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Navigation Styles */
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0d0d0d;
  position: relative;
  background-color: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(1px);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-title-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
  font-weight: 700;
}

/* Hero Location */
.hero-location {
  text-align: center;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem 0;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Hero Club Logos */
.hero-club-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-club-logos a {
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-club-logos a:hover {
  transform: translateY(-3px);
}

.hero-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
  transition: all 0.3s ease;
  opacity: 0.9;
}

.hero-logo:hover {
  filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
  opacity: 1;
}

/* Drinks Menu Section */
.drinks-menu {
  padding: 5rem 0;
  background: rgba(13, 13, 13, 0.4);
}

.drinks-menu h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.sponsored-drinks,
.regular-drinks {
  margin-bottom: 3rem;
}

.sponsored-drinks h3,
.regular-drinks h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--accent-orange);
  text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.drink-card {
  background: rgba(13, 13, 13, 0.8);
  border-radius: 5px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.drink-image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.drink-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.drink-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.drink-card h4 {
  color: var(--accent-orange);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

/* Sponsored Drink Special Styling */
.drink-card.sponsored {
  border: 2px solid var(--accent-gold);
  background: rgba(13, 13, 13, 0.9);
}

.drink-card.sponsored::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  padding: 2px;
  background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.club-sponsor {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  backdrop-filter: blur(2px);
}

.sponsor-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.5));
}

.sponsor-text {
  color: var(--accent-gold);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-shadow: 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Content Sections */
.content-section {
  padding: 5rem 0;
  position: relative;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(2px);
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.alt-bg {
  /* background: rgba(45, 27, 45, 0.85); */
  backdrop-filter: blur(2px);
}

/* Main content wrapper */
main {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 100px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: rgba(13, 13, 13, 0.8);
  padding: 2rem;
  border-radius: 5px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.3s ease;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  padding: 2px;
  background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.info-card h3 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Info Card Grid Positioning */
.info-card:nth-child(1) {
  grid-column: 1 / 4;
}

.info-card:nth-child(2) {
  grid-column: 4 / 7;
}

.info-card:nth-child(3) {
  grid-column: 1 / 3;
}

.info-card:nth-child(4) {
  grid-column: 3 / 5;
}

.info-card:nth-child(5) {
  grid-column: 5 / 7;
}

/* DJ Logos in Info Cards */
.dj-sponsors {
  display: inline-flex;
  gap: 8px;
  margin-left: 10px;
  align-items: center;
}

.dj-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.5));
  opacity: 0.8;
}

/* Schedule Styles */
.schedule-list {
  max-width: 800px;
  margin: 0 auto;
}

.schedule-item {
  background: rgba(13, 13, 13, 0.6);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 3px;
  border-left: 4px solid var(--accent-orange);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
}

.schedule-item:not(.clickable) {
  align-items: center;
}

.schedule-item.clickable {
  align-items: flex-start;
  flex-direction: row;
}

.schedule-item.clickable .activity {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.schedule-item.clickable .activity > div:first-child {
  display: flex;
  align-items: center;
  width: 100%;
}

.schedule-item.clickable .time {
  align-self: flex-start;
  margin-top: 0;
}

.schedule-item:hover {
  background: rgba(13, 13, 13, 0.8);
  transform: translateX(10px);
}

.time {
  color: var(--accent-gold);
  font-weight: bold;
  min-width: 200px;
}

.activity {
  color: var(--text-light);
  font-size: 1.1rem;
  position: relative;
}

/* Twitch Link Styling */
.twitch-link {
  margin-left: 15px;
  padding: 4px 12px;
  background: #9146ff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.twitch-link:hover {
  background: #772ce8;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(145, 70, 255, 0.3);
}

/* Giveaway Dropdown Styles */
.schedule-item.clickable {
  cursor: pointer;
  position: relative;
  flex-direction: row;
  align-items: flex-start;
}

.schedule-item.clickable .activity {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.schedule-item.clickable .activity > div:first-child {
  display: flex;
  align-items: center;
  width: 100%;
}

.dropdown-arrow {
  font-size: 0.8rem;
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
  color: var(--accent-gold);
}

.schedule-item.clickable.active .dropdown-arrow {
  transform: rotate(180deg);
}

.giveaway-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 8px;
  margin-top: 15px;
  border: 1px solid var(--accent-orange);
  width: 100%;
  box-sizing: border-box;
}

.giveaway-dropdown.active {
  max-height: 400px;
  padding: 20px;
}

.giveaway-time {
  padding: 10px 0;
  color: var(--text-gray);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
}

.giveaway-time:last-child {
  border-bottom: none;
}

.giveaway-time:before {
  content: '•';
  color: var(--accent-gold);
  font-weight: bold;
  margin-right: 10px;
}

/* DJ Schedule Dropdown Styles */
.dj-slot {
  margin-bottom: 18px;
  padding: 15px;
  background: rgba(13, 13, 13, 0.6);
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.dj-slot:hover {
  background: rgba(13, 13, 13, 0.8);
  border-left-color: var(--accent-orange);
}

.dj-slot:last-child {
  margin-bottom: 0;
}

.dj-time {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.dj-giveaway {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-left: 20px;
  font-style: italic;
  padding-left: 10px;
  border-left: 2px solid rgba(255, 107, 53, 0.3);
}

/* Participation Steps */
.participation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
  background: rgba(13, 13, 13, 0.6);
  padding: 2rem;
  border-radius: 5px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.note {
  color: var(--accent-orange);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--accent-orange);
}

/* Footer */
footer {
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(3px);
  text-align: center;
  padding: 2rem;
  border-top: 2px solid var(--accent-orange);
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

footer p {
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Adjust atmospheric elements for mobile */
  .atmospheric-top {
    height: 30vh;
    opacity: 0.3;
  }

  .atmospheric-bottom {
    height: 25vh;
    opacity: 0.5;
  }

  main {
    margin-top: 10px;
    border-radius: 5px 5px 0 0;
  }

  .content-section {
    margin: 10px 0;
    border-radius: 3px;
    background: rgba(13, 13, 13, 0.9);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(13, 13, 13, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title-image {
    max-width: 400px;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .schedule-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .time {
    min-width: auto;
  }

  .navbar {
    padding: 1rem;
  }

  .nav-brand h1 {
    font-size: 1.2rem;
  }

  .hero-club-logos {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .hero-logo {
    height: 75px;
  }

  /* Responsive Info Grid for Tablet */
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .info-card:nth-child(1),
  .info-card:nth-child(2),
  .info-card:nth-child(3),
  .info-card:nth-child(4),
  .info-card:nth-child(5) {
    grid-column: span 1;
  }

  .info-card:nth-child(5) {
    grid-column: 1 / 3;
  }
}

@media (max-width: 480px) {
  .hero-title-image {
    max-width: 300px;
  }

  .hero-club-logos {
    gap: 1rem;
    margin: 1rem 0;
  }

  .hero-logo {
    height: 63px;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* Responsive Info Grid for Mobile */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .info-card:nth-child(1),
  .info-card:nth-child(2),
  .info-card:nth-child(3),
  .info-card:nth-child(4),
  .info-card:nth-child(5) {
    grid-column: span 1;
  }

  .content-section {
    padding: 3rem 0;
  }

  .drinks-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .club-sponsor {
    width: 35px;
    height: 35px;
  }

  .sponsor-logo {
    width: 25px;
    height: 25px;
  }

  .drink-image {
    width: 150px;
    height: 150px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--primary-dark);
  margin: 5% auto;
  padding: 0;
  border: 2px solid var(--accent-orange);
  border-radius: 5px;
  width: 90%;
  max-width: 700px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-button {
  color: var(--accent-orange);
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1001;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
  color: var(--accent-gold);
  text-decoration: none;
}

.modal-body {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 30px;
  align-items: flex-start;
}

.modal-drink-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  flex-shrink: 0;
}

.modal-text {
  flex: 1;
  color: var(--text-light);
}

.modal-text h3 {
  color: var(--accent-orange);
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gamba Modal Specific Styles */
.gamba-games {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.gamba-game {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid var(--accent-orange);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.gamba-game:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.gamba-game h4 {
  color: var(--accent-gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gamba-game p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Prize Highlight Styles */
.prize-highlight {
  background: #333333;
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 12px 20px;
  margin: 10px 0 15px 0;
  border-radius: 8px;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: subtle-glow 2s ease-in-out infinite alternate;
}

@keyframes subtle-glow {
  from {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  }
  to {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6);
  }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .modal-body {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .modal-drink-image {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .modal-text h3 {
    font-size: 1.8rem;
  }

  .modal-text p {
    text-align: left;
  }
}

/* Make drink cards clickable */
.drink-card {
  cursor: pointer;
}
