/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Merriweather', serif;
  color: #E8E8E8;
  background-color: #000 !important; /* Ensures full black */
}

a {
  color: #F8F8F8;
  text-decoration: none;
}

a:hover {
  color: #F8F8F8;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", serif; color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
}
#header .logo h1 {
  font-size: 30px;
  color: 000;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-color: #000; /* Force black background */
  min-height: 100vh; /* Ensures full viewport height */
  background: url("../../bg.png") center center / contain no-repeat;
  position: relative;
  margin-top: 70px;
  padding: 0;
  z-index: 1;
}

/* Fix for iPads & Mobile Devices */
@supports (-webkit-touch-callout: none) {
  #hero {
    background-attachment: scroll; /* Disables 'fixed' for iPads */
    background-size: contain; /* Keeps image proportionate */
    background-position: center center;
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  #hero {
    background-attachment: scroll;
    background-size: contain; /* Keeps aspect ratio intact */
    background-position: top center;
  }
}

/* Ensure it scales correctly while keeping aspect ratio */
@media screen and (max-width: 768px) {
  #hero {
    background-size: contain; /* Ensure it doesn't stretch */
    background-position: center top;
  }
}

@media screen and (max-width: 480px) {
  #hero {
    background-size: contain;
    background-position: center center;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1; /* Ensure this background is behind the hero content */
}
#hero .container {
  z-index: 2; /* Ensure hero content is above its background */
  position: relative; /* Ensure stacking is logical */
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
#hero h2 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}
#hero .btn-get-started:hover {
  border-color: #E8E8E8;
  background: #D74E48;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
 background: url("bg.png") center center;
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #fff;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 34px;
  color: #fff;
  align-content: center;
}

.about {background: #000;}

.about .icon-box {
  margin-top: 44px;
}
.about .icon-box i {
  font-size: 48px;
  float: center;
  color: #fff;
}
.about .icon-box h4 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.about .icon-box p {
  font-size: 15px;
  color: #fff;

}

/* ========================================================
   FOOTER STYLES – Simplified & Pewter Blue Themed
   ======================================================== */

#footer {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 0 0 30px 0;
}

/* Footer Top Section */
#footer .footer-top {
  background: #0c1817;
  border-bottom: 1px solid #18302c;
  padding: 60px 0 30px 0;
}

/* Footer Info */
#footer .footer-info {
  margin-bottom: 30px;
}
#footer .footer-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
#footer .footer-info p {
  line-height: 1.6;
  color: #E8E8E8;
  font-family: "Merriweather", serif;
}

/* Footer Links */
#footer .footer-links {
  margin-bottom: 30px;
}
#footer .footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-links ul li i {
  padding-right: 8px;
  color: #8DA9C4;
}
#footer .footer-links ul a {
  color: #fff;
  transition: color 0.3s;
}
#footer .footer-links ul a:hover {
  color: #34dfbf;
}

/* Newsletter */
.footer-newsletter form {
  margin-top: 30px;
  background: #1a1a1a;
  padding: 6px 10px;
  border-radius: 4px;
  display: flex;
}
.footer-newsletter input[type=email] {
  border: none;
  padding: 8px;
  flex: 1;
  background: #262626;
  color: #fff;
}
.footer-newsletter input[type=submit] {
  border: none;
  background: #ff0000;
  color: #fff;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s;
}
.footer-newsletter input[type=submit]:hover {
  background: #14806c;
}

/* Social Icons */
.footer-top .social-links a {
  font-size: 18px;
  background: #1c3733;
  color: #fff;
  margin-right: 6px;
  padding: 8px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  line-height: 20px;
  transition: background 0.3s, color 0.3s;
}
.footer-top .social-links a:hover {
  background: #ff0000;
  color: #fff;
}

/* Footer Base */
#footer .copyright,
#footer .credits {
  text-align: center;
  color: #fff;
}
#footer .credits {
  font-size: 13px;
  margin-top: 10px;
}

/* Footer Icon Container */
.icon-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
.icon {
  font-size: 50px;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}
.icon:hover {
  color: #8DA9C4;
  transform: scale(1.1);
}


/* Hover Effect */
.icon:hover {
  color: #ff0000; /* Turn red on hover */
  transform: scale(1.2); /* Slightly enlarge on hover */
}

/* Hours List Container */
#hours-list {
  text-align: center; /* Center align the list */
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  list-style: none; /* Remove bullet points */
}

/* Style the List */
#hours-list ul {
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 0;
}

#hours-list li {
  margin: 10px 0; /* Add spacing between list items */
  list-style: none; /* Remove bullet points */
}

/* Default Day Text */
#hours-list .day {
  color: rgba(255, 255, 255, 0.6); /* Slightly dim white */
  font-weight: normal;
  list-style: none; /* Remove bullet points */
}

/* Highlight Current Day */
#hours-list .highlight {
  color: #ffeb3b; /* Bright yellow for current day */
  font-weight: bold;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  position: relative;
  width: 80%; /* Adjust the width of the divider */
}

.divider img {
  width: 36px; /* Slightly larger for visibility */
  height: 36px;
  margin: 0 15px; /* Adjust spacing */
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.5)); /* Soft glow effect */
}

.divider:before,
.divider:after {
  content: "";
  flex: 1;
  height: 3px; /* Thicker line */
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)); 
  margin: 0 15px;
  opacity: 0.8; /* Slightly more visible */
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.3); /* Soft outer glow */
}


#bar-status {
  display: block; /* Ensure it's treated as a block element */
  margin: 0 auto; /* Center the image horizontally */
  border-radius: 10px; /* Adjust the value for the desired roundness */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Optional: Add a subtle shadow */
  max-width: 100%; /* Ensure responsiveness */
  height: auto; /* Maintain aspect ratio */
  opacity: .5;
}


.menu-category {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.menu-category h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #D74E48;
  text-align: left; /* Ensure category headers are left-aligned */
}

.menu-category ul {
  list-style: none;
  padding: 0;
}

.menu-category ul li {
  font-size: 13px;
  color: #C4C4C4; /* Muted white for non-linked items */
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

/* Style for linked items */
.menu-category ul li a {
  color: #FFF; /* Full brightness for linked items */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover effect for linked items */
.menu-category ul li a:hover {
  color: #FFF;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8); /* Soft glow */
}

/* Price should remain the same brightness */
.menu-category ul li .price {
  margin-left: 10px;
  white-space: nowrap;
  color: #FFF;
}

.menu-grid {
  display: block; /* or flex/column if needed elsewhere */
  width: 100%;
}

.menu-category,
.submenu-section {
  width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Set a max width for the video */
    margin: 0 auto; /* Center the video on the page */
}
.video-container video {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    border: 2px solid #ffffff; /* Optional white border */
    border-radius: 15px; /* Add rounded corners */
    overflow: hidden;
}


.icon-box i {
  font-size: 48px;
  color: #4a4a4a;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.icon-box i:hover {
  transform: scale(1.2); /* Slightly larger */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
               0 0 20px rgba(255, 255, 255, 0.6),
               0 0 30px rgba(255, 255, 255, 0.4);
  color: #fff; /* Change color to white */
}


.hero-section {
  padding: 60px 0;
  text-align: center;
}

.no-underline {
  text-decoration: none;
}

.kitchen-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-top: 10px;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.icon-box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.icon-box .icon {
  font-size: 48px;
  color: #4a4a4a;
  margin: 0 auto 10px;
  padding: 0;
}

/* ========================================================
   BAR STATUS BUTTON & MAP ICON STYLES
   ======================================================== */

/* Shared Bar Status Button Styles */
#bar-status-btn {
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 18px;
  background-color: #000; /* Base background */
  transition: background 0.3s, color 0.3s;
}

/* OPEN status — Pewter Blue on black */
#bar-status-btn.open {
  color: var(--color-pewter-blue, #8DA9C4);
  background-color: #000;
}

/* LAST CALL status — Soft orange on black */
#bar-status-btn.lastcall {
  color: #F4CBA2;
  background-color: #000;
}

.bar-status-container {
  display: flex;
  justify-content: center;  /* Centers horizontally */
  align-items: center;  /* Centers vertically */
  width: 100%;
  margin: 20px auto;
  position: relative;  /* Ensures it's not affected by absolute elements */
  text-align: center;
}

#bar-status-btn {
  background: #f8f8f8; /* Light background */
  color: #000; /* Black text */
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
  border-color: #E8E8E8;
}

#bar-status-btn:hover {
  background: #ddd; /* Slightly darker on hover */
  transform: scale(1.05); /* Small hover effect */
}


/* CLOSED status — Muted red on black */
#bar-status-btn.closed {
  color: #F0B2B2;
  background-color: #000;
}

/* Map Icon Styling */
.map-icon {
  font-size: 48px;
  color: #8DA9C4; /* Pewter Blue */
  transition: color 0.3s ease, transform 0.3s ease;
}

.map-icon:hover {
  color: #ff0000;  /* Red on hover */
  transform: scale(1.1);
}

/* ========================================================
   DIVIDERS — Horizontal Lines with Centered Icons
   ======================================================== */

/* Divider with no icon (or external content inserted between lines) */
.divider2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 20px auto;
  width: 100%;
}

.divider2::before,
.divider2::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: #fff;
  opacity: 0.6;
  margin: 0 10px;
}

/* Divider with a FontAwesome icon centered */
.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  width: 100%;
}

.divider i {
  font-size: 24px;
  color: #fff;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.divider i:hover {
  color: #ff0000;         /* Highlighted red on hover */
  transform: scale(1.2);  /* Zoom effect on hover */
}

.divider::before,
.divider::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: #fff;
  opacity: 0.6;
  margin: 0 10px;
}

/* ========================================================
   GENERAL POPUP — Fullscreen Overlay and Polaroid Modal
   ======================================================== */

/* Overlay Container */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);  /* Semi-transparent black */
  display: none;                  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Pop-Up Box Content */
.popup-content {
  background: #1a1a1a;            /* Charcoal background */
  padding: 15px;
  color: #000;                    /* Corrected color code */
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

/* Image Section */
.popup-image-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 15px;
  border-radius: 10px;
}

.popup-image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Label Under Image (Polaroid Footer Style) */
.popup-label {
  padding: 10px;
  background: #1a1a1a;
  border-top: 2px solid red;
  font-family: 'Merriweather', serif;
  color: #fff;
}

/* Menu Item Glow Effect */
.menu-item {
  text-decoration: none;
  color: #fff;
  transition: text-shadow 0.3s ease-in-out;
}

.menu-item:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* White Glow Link */
.glow-link {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff !important;
  text-decoration: none;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

.glow-link:hover {
  text-shadow: 
    0 0 8px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(255, 255, 255, 0.6),
    0 0 16px rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

/* Green Glow Link (St. Paddy's Variant) */
.glow-link1 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #50C878 !important;
  text-decoration: none;
  text-align: center;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

.glow-link1:hover {
  text-shadow: 
    0 0 8px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(255, 255, 255, 0.6),
    0 0 16px rgba(255, 255, 255, 0.4);
  color: #50C878 !important;
}

/* ========================================================
   CONTACT POP-UP — Overlay, Box, and Close Button
   ======================================================== */

/* Overlay Background */
.popup-overlay {
  display: none;                          /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);         /* Semi-transparent black */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Pop-Up Box */
.popup-content {
  position: relative;
  background: #1a1a1a;                   /* Dark charcoal background */
  color: #fff;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  text-align: center;
  border-radius: 10px;
  border: 5px solid #fff;                /* Polaroid-style white frame */
  box-sizing: border-box;
}

/* Close Button (top-right corner) */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff4444;                        /* Red hover effect */
}
/* ========================================================
   SOCIAL ICONS — Footer or Header Link Icons (e.g. FontAwesome)
   ======================================================== */

.social-links a {
  color: #fff;
  font-size: 24px;
  margin: 10px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffcc00; /* Gold on hover for visibility */
}

/* Icon Container */
.icon-container .icon i {
  font-size: 36px;                /* Standard icon size */
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;                 /* Space between icons */
}

/* ========================================================
   FORM STYLING — POPUP + INPUT ELEMENTS
   Used for modals or inline forms on dark backgrounds
   ======================================================== */

/* Popup Container */
.popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a1a1a;               /* Dark charcoal */
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: none;                     /* Hidden by default */
  z-index: 1000;
  box-sizing: border-box;
}

/* Form Layout */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Labels */
label {
  width: 100%;
  text-align: left;
  color: #ddd;
  font-size: 14px;
  margin-bottom: 5px;
}

.required {
  color: red;
}

/* Inputs, Selects, Textareas */
input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background: #262626;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

textarea {
  resize: none;
}

/* Submit Button */
.send-btn {
  width: 100%;
  background: #ffcc00;          /* Gold button */
  color: #000;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.send-btn:hover {
  background: #e6b800;         /* Darker gold on hover */
}

/* ======================================
   MENU LAYOUT
====================================== */

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.menu-category {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* ======================================
   HEADINGS
====================================== */

.menu-category h3 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #8DA9C4; /* Pewter Blue */
}

.menu-note {
  text-align: center;
}

/* ======================================
   MENU ITEM STYLING
====================================== */

.menu-category ul {
  list-style: none;
  padding: 0;
}

.menu-category ul li {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

/* Title and Price */
.menu-item-title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Price */
.menu-price {
  font-size: 20px;
  font-weight: bold;
  color: #ccc;
  text-align: right;
}

/* Description */
.menu-description {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 5px auto 0 auto;
}

/* Divider */
.menu-divider {
  border-bottom: 1px solid #555;
  margin: 10px 0;
  width: 100%;
}

/* ======================================
   MENU SECTION HEADER (e.g. 'Beer')
====================================== */

.menu-section-header {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================
   ICON SUPPORT (OPTIONAL)
====================================== */

.menu-item-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-icon {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.6);
  vertical-align: middle;
}

.menu-item:hover .menu-icon {
  color: rgba(255, 255, 255, 1);
}


/* ======================================
   ST. PADDY'S SPECIAL BUTTON STYLES
   A festive green button for promotions,
   event announcements, and themed links.
   ====================================== */

.st-paddys-btn {
  background-color: #50C878; /* Emerald green */
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Improves readability */
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.st-paddys-btn:hover {
  background-color: #45a168; /* Slightly deeper emerald on hover */
  transform: translateY(-1px); /* Subtle lift effect */
}

.st-paddys-btn:active {
  transform: translateY(0); /* Pressed state resets lift */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); /* Click feedback */
}

/* ========================================================
   ACCORDION SECTION (Responsive + Non-Blocking Layout)
   Used for collapsible content areas like "Drink" menus.
   ======================================================== */

.accordion-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px; /* Slightly reduced horizontal padding */
  box-sizing: border-box;
}

.accordion-toggle {
  display: block;
  margin: 12px auto; /* Reduced vertical margin */
  width: 100%;
  max-width: 800px;
  background-color: #1e1e1e;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 12px 20px; /* Tighter padding */
  font-size: 28px; /* Slightly smaller but still strong */
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.accordion-toggle:hover {
  background-color: #2a2a2a;
  transform: scale(1.01);
}

.accordion-toggle.active {
  background-color: #333;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

.accordion-content {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  max-height: 0;
  padding: 0 16px; /* Keep slight horizontal breathing room */
  box-sizing: border-box;
}

.accordion-content.active {
  max-height: 5000px;
  padding: 16px;
}

/* Optional: mobile-specific tweaks */
@media (max-width: 600px) {
  .accordion-toggle {
    font-size: 24px;
    padding: 14px 18px;
  }

  .accordion-content {
    padding: 0 10px;
  }

  .accordion-content.active {
    padding: 14px;
  }
}

/* ========================================================
   SUBMENU (Expandable section inside accordion-category)
   Triggered by clicking category headers like "Beer"
   ======================================================== */

.submenu-toggle {
  cursor: pointer;
  font-size: 1.2em;
  margin-top: 1em;
  color: var(--color-pewter-blue);
  transition: color 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.submenu-toggle:hover {
  color: #a8bfd8; /* Slightly brighter pewter blue on hover */
  transform: scale(1.03);
}

.submenu-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.submenu-content {
  display: none;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 10px;
}

.submenu-section.active .submenu-content {
  display: block;
}

/* Optional: consistent spacing in submenu list */
.submenu-content ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.submenu-muted {
  font-size: 18px !important;
  color: #a0a0a0 !important; /* muted gray tone */
  font-weight: 500;
  margin: 10px 0;
}


/* === Force Single-Column Menu Layout on All Screens === */

.menu-grid {
  display: block !important;
  width: 100% !important;
  margin: 0 auto;
}

.menu-category,
.submenu-section {
  width: 100% !important;
  display: block !important;
  margin: 0 auto 30px auto; /* Adds bottom spacing */
}

/* Reinforce layout on larger screens just in case */
@media screen and (min-width: 769px) {
  .menu-grid {
    display: block !important;
  }

  .menu-category,
  .submenu-section {
    width: 100% !important;
    margin: 0 auto 30px auto;
  }
}

.menu-category {
  margin: 12px 0;
  padding: 0;
}

.menu-section-header,
.submenu-toggle {
  margin: 0;
  padding: 0;
}

.menu-section-header h3,
.submenu-toggle h3 {
  margin: 16px 0 !important;
  padding: 12px 0 !important;
  line-height: 1.3;
}
.submenu-toggle {
  margin-bottom: 12px;
}
