/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 40px 20px 10px;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  color: gold;
  padding: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.9;
}


/* About */
.about {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: gold;
}

/* Quick Links */
.quick-links {
  text-align: center;
  margin: 60px 0;
}

.btn {
  display: inline-block;
  background-color: gold;
  color: #111;
  padding: 15px 30px;
  margin: 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #d4af37;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-style: italic;
  color: #eee;
}

.cta-button {
  padding: 15px 30px;
  background-color: #FFD700;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #ffcc00;
}

.next-host {
  background-color: #1a1a1a;
  color: gold;
  text-align: center;
  padding: 60px 20px;
  font-size: 1.2rem;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}



/* Member Section */
.members {
  padding: 60px 20px;
  background-color: #111;
  text-align: center;
}

.members h2 {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 40px;
}

.member-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.member-card {
  background-color: #111;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s;
}

.member-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px gold;
}

.member-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid gold;
  margin-bottom: 20px;
}

.member-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
}

.member-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.member-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}


.page-header {
  background-color: #000;
  color: #FFD700;
  padding: 40px 20px 20px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.page-header .back-link {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #FFD700;
  text-decoration: none;
  font-size: 0.9rem;
}

.page-header .back-link:hover {
  text-decoration: underline;
}


.whisky-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.whisky-card {
  background-color: #111;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.whisky-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px gold;
}

.whisky-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Schedule Styling */
.schedule-list {
  padding: 60px 20px;
  background-color: #111;
  color: gold;
  text-align: center;
}

.schedule-list table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 80%;
  max-width: 800px;
}

.schedule-list th,
.schedule-list td {
  border: 1px solid #333;
  padding: 12px;
  font-size: 1rem;
}

.schedule-list th {
  background-color: #222;
  font-weight: bold;
}

.schedule-list tr:nth-child(even) {
  background-color: #1a1a1a;
}


.flicker {
  font-size: 2.5rem;
  animation: flicker 2s infinite ease-in-out;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 0.8; }
  60% { opacity: 1; }
  75% { opacity: 0.9; }
}

.schedule-list {
  padding: 40px 20px;
  text-align: center;
}

.schedule-list table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 85%;
  max-width: 800px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.schedule-list th,
.schedule-list td {
  border: 1px solid #333;
  padding: 14px;
  font-size: 1.1rem;
  background-color: #111;
  position: relative;
  z-index: 1;
}

.schedule-list tr {
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

.schedule-list tr::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255,215,0,0.2), rgba(255,215,0,0.5));
  transition: top 0.4s ease;
  z-index: 0;
}

.schedule-list tr:hover::before {
  top: 0;
}

.schedule-list tr:hover td,
.schedule-list tr:hover th {
  z-index: 2;
}

.highlight {
  background-color: #333 !important;
  color: gold;
  font-weight: bold;
}

.glass-icon {
  display: inline-block;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

tr:hover .glass-icon {
  transform: rotate(-5deg) scale(1.2);
}