/* ===========================
   Global Styles
=========================== */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #26495D;
  color: #fff;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  position: relative;
}

/* ===========================
   Bells Animation
=========================== */
.bells {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bell {
  position: absolute;
  color: #DAB974;
  opacity: 0.15;
  user-select: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* ===========================
   Header & Navigation
=========================== */
header.topbar {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  z-index: 2;
  position: relative;
}

.logo img {
  max-width: 140px;
  height: auto;
}

nav.buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* ===========================
   Hamburger Base
=========================== */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #DAB974;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 4;
}

.hamburger:hover {
  transform: scale(1.1);
}

/* ===========================
   Menu Links Base (Desktop)
=========================== */
.menu-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  pointer-events: auto;
}
/* ===========================
   Menu Button Styling
=========================== */

.nav-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 110px;
}

.nav-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #DAB974;
  background: transparent;
  color: #DAB974;
  text-decoration: none;
  font-size: 2rem;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.nav-button a:hover {
  background: #DAB974;
  color: #26495D;
  transform: scale(1.1);
  box-shadow: 0 0 0px #DAB974;
}

.nav-button a:active {
  transform: scale(0.95);
}

.nav-button a:focus {
  outline: 2px dashed #DAB974;
  outline-offset: 4px;
  background: #DAB974;
  color: #26495D;
}

.nav-button svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  transition: transform 0.3s ease;
  pointer-events: none; /* important — prevents SVG from blocking hover */
}

.nav-button a:hover svg {
  transform: scale(1.1);
}

/* Label styling */
.nav-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #DAB974;
  letter-spacing: 0.5px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

/* Show label on hover (desktop) */
.nav-button:hover .nav-label {
  opacity: 1;
  visibility: visible;
}

/* Always show label on mobile */
@media (max-width: 800px) {
  .nav-label {
    opacity: 1;
    visibility: visible;
  }
}


/* ===========================
   MENU
=========================== */
.christmas-menu {
  background: #1f3c4d; /* deep festive blue */
  color: #f5f5f5;
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.christmas-menu h1 {
  font-size: 2.2rem;
  color: #DAB974; /* gold */
  margin-bottom: 2rem;
}

.christmas-menu h2 {
  font-size: 1.6rem;
  color: #DAB974;
  margin-top: 2rem;
  border-bottom: 1px solid #ffcc66;
  padding-bottom: 0.5rem;
}

.christmas-menu ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.christmas-menu li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.christmas-menu .tag {
  font-size: 0.9rem;
  color: #ccc;
  margin-left: 0.5rem;
}

.christmas-menu .pricing {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #fff;
}

@media (max-width: 600px) {
  .christmas-menu {
    padding: 1rem;
  }

  .christmas-menu h1 {
    font-size: 1.8rem;
  }

  .christmas-menu h2 {
    font-size: 1.4rem;
  }

  .christmas-menu .pricing {
    font-size: 1rem;
  }
}

/* ===========================
   Drinks
=========================== */

.drinks-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 1rem 1.5rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  background-color: #1f3c4d; /* Deep blue backdrop */
  color: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.drinks-section h1 {
  font-size: 2rem;
  color: #DAB974; /* Gold title */
  margin-bottom: 1rem;
}

.drinks-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ddd;
}

.beer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.beer-card {
  background: #DAB974; /* Gold background */
  color: #0b1e3d;       /* Deep blue text */
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.beer-card h2 {
  font-size: 1.3rem;
  color: #003366; /* Slightly richer blue for headings */
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.beer-card p {
  font-size: 1rem;
  color: #002244; /* Deep blue for body text */
  line-height: 1.5;
}

.beer-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.accordion {
  margin-top: 2rem;
}

/* Accordion Toggle – Base */
.accordion-toggle {
  width: 100%;
  background: #DAB974;
  color: #002244;
  padding: 1rem;
  font-size: 1.4rem;
  text-align: left;
  border: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: color 0.2s ease; /* faster so text changes immediately */
  z-index: 1; /* ensure text stays above fill */
}

/* Fill animation */
.accordion-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #002244; /* dark blue fill */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1; /* ensures fill stays behind text */
}

/* Hover: fill + gold text */
.accordion-toggle:hover::before {
  transform: scaleX(1);
}

.accordion-toggle:hover {
  color: #DAB974; /* gold text */
}

/* Expanded state */
.accordion-toggle[aria-expanded="true"] {
  color: #DAB974; /* gold when open */
}

.accordion-toggle[aria-expanded="true"]::before {
  transform: scaleX(1);
}/* Accordion Toggle – Base */
.accordion-toggle {
  width: 100%;
  background: #DAB974;
  color: #002244;
  padding: 1rem;
  font-size: 1.4rem;
  text-align: left;
  border: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: color 0.2s ease; /* faster so text changes immediately */
  z-index: 1; /* ensure text stays above fill */
}

/* Fill animation */
.accordion-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #002244; /* dark blue fill */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1; /* ensures fill stays behind text */
}

/* Hover: fill + gold text */
.accordion-toggle:hover::before {
  transform: scaleX(1);
}

.accordion-toggle:hover {
  color: #DAB974; /* gold text */
}

/* Expanded state */
.accordion-toggle[aria-expanded="true"] {
  color: #DAB974; /* gold when open */
}

.accordion-toggle[aria-expanded="true"]::before {
  transform: scaleX(1);
}

/* Accordion Content */
.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  margin-bottom: 1rem;
}

/* Grids */
.wine-grid, .beer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Tablet */
@media (max-width: 992px) {
  .beer-card img {
    width: 60%;
    margin: 0 auto 1rem;
    display: block;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .beer-card img {
    width: 40%;
    margin: 0 auto 1rem;
    display: block;
  }
}

/* Default: full size on desktop */
.beer-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Tablet: reduce image size to ~60% */
@media (max-width: 992px) {
  .beer-card img {
    width: 60%;
    margin: 0 auto 1rem;
    display: block;
  }
}

/* Mobile: reduce image size further to ~40% */
@media (max-width: 600px) {
  .beer-card img {
    width: 40%;
    margin: 0 auto 1rem;
    display: block;
  }
}

/* ===========================
   Gallery
=========================== */

/* Page 9 Slideshow Gallery Styles */
.gallery-slideshow {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1rem 1.5rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #f5f5f5;
}

.gallery-slideshow h1 {
  font-size: 2rem;
  color: #DAB974; /* Gold heading */
  margin-bottom: 0.5rem;
}

.gallery-slideshow p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ddd;
}

.slideshow-container {
  position: relative;
}

.slideshow-container img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s ease;
}

.slideshow-controls {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.slideshow-controls button {
  background-color: #DAB974;
  color: #26495D;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.slideshow-controls button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .gallery-slideshow h1 {
    font-size: 1.6rem;
  }

  .slideshow-controls button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

    .about {
      max-width: 700px;
      text-align: center;
      margin: 20px auto 40px auto;
      z-index: 1;
      position: relative;
    }

    .about span {
      color: #d5b469;
      font-weight: bold;
    }

    .photo {
      max-width: 75%;
      height: auto;
      border: 3px solid #d5b469;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
    }

/* ===========================
   Opening Times
=========================== */

.opening-times {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1rem 1.5rem;
  font-family: 'Inter', sans-serif;
  color: #f5f5f5;
  text-align: center;
}

/* Section Title Styling */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h1 {
  font-size: 2.4rem;
  color: #dab974;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.title-underline {
  width: 60px;
  height: 4px;
  background-color: #dab974;
  margin: 0 auto;
  border-radius: 2px;
}

/* Table Styling */
.times-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.times-table th,
.times-table td {
  padding: 1rem;
  border-bottom: 1px solid #444;
  text-align: left;
  vertical-align: top;
  font-size: 1rem;
}

.times-table th {
  background-color: #1c1c1c;
  color: #dab974;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.times-table tr:nth-child(even) td {
  background-color: #2a2a2a;
}

.times-table tr:nth-child(odd) td {
  background-color: #1f1f1f;
}

.times-table td {
  color: #ddd;
}

/* Highlight today's row */
.times-table tr.today td {
  background-color: #dab974;
  color: #fff;
  font-weight: 600;
  border-left: 4px solid #dab974;
}

/* Optional hover effect */
.times-table tr:hover td {
  background-color: #3a3a3a;
}

/* ===========================
   Responsive Styles
=========================== */
@media (max-width: 800px) {
  .hamburger {
    display: block;
  }

  .menu-links {
    display: none !important;
    position: absolute;
    top: 100px;
    right: 20px;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #26495D;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 3;
    pointer-events: none;
  }

  .menu-links.show {
    display: grid !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-links a {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .menu iframe {
    min-height: 60vh;
  }
}

@media (max-width: 450px) {
  .menu-links {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

/* ===========================
   Optional Close Button
=========================== */
.menu-close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: #DAB974;
  cursor: pointer;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.menu-close:hover {
  transform: scale(1.2);
}

/* ===========================
   Optional Overlay
=========================== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 73, 93, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2;
  display: none;
}

.menu-overlay.show {
  display: block;
}

/* ===========================
   Footer
=========================== */
footer {
      background-color: #26495D;
      color: #d5b469;
      text-align: center;
      padding: 40px 20px;
      border-top: 1px solid #d5b469;
      box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
      border-radius: 0 0 12px 12px;
    }

    .footer-details p {
      margin: 8px 0;
      font-size: 1rem;
      letter-spacing: 0.5px;
    }

    .footer-details a,
    .footer-details a:visited,
    .footer-details a:focus,
    .footer-details a:active {
      color: #d5b469;
      text-decoration: none;
      transition: color 0.3s ease, text-shadow 0.3s ease, text-decoration 0.3s ease;
    }

    .footer-details a:hover {
      color: gold;
      text-shadow: 0 0 4px gold;
      text-decoration: underline;
    }

    .email-link:hover {
      animation: pulse 1.2s infinite ease-in-out;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 10px;
    }

    .social-icons svg {
      width: 28px;
      height: 28px;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .social-icons a:hover svg,
    .social-icons a:focus svg {
      transform: scale(1.2);
      fill: gold;
      filter: drop-shadow(0 0 4px gold);
    }

    .copyright {
      margin-top: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
    }

    .bell-icon {
      margin-left: 6px;
      animation: ring 1.5s infinite ease-in-out;
      display: inline-block;
    }

    @keyframes ring {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(10deg); }
      75% { transform: rotate(-10deg); }
    }

    @media (max-width: 600px) {
      .footer-details p {
        font-size: 0.9rem;
        line-height: 1.4;
      }

      .social-icons {
        flex-wrap: wrap;
        gap: 16px;
      }
    }

/* ===========================
   Email Link Styling
=========================== */
.email-link {
  color: #DAB974;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover,
.email-link:focus {
  color: #fff;
  text-decoration: underline;
}