:root{
  --ee-green:#0f6b4f;
  --ee-yellow:#cadb28;
  --ee-header-h:100px;   /* smaller bar */
}

/* fixed header */
.ee-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 99999;
  background: var(--ee-green);
  padding: 8px 0 8px;   /* trims top & bottom */
}


/* push content below header */
body{
  padding-top: var(--ee-header-h);
}

/* layout */
.ee-header__nav{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;

  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  column-gap: 18px;
}

.ee-header__side img{
  height: 54px;
  width: auto;
  display: block;
}

.ee-header__center{
  row-gap: 4px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
}

.ee-header__logo{
  width: min(880px, 80vw);   /* slightly wider */
  max-height: 105px;         /* slightly taller */
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto 8px;        /* a bit tighter */
}


.ee-header__links{
  display:flex;
  gap: 34px;
  justify-content:center;
  align-items:center;
  margin:0;
  padding:0;
  list-style:none;
}

.ee-header__links a{
  color: var(--ee-yellow);
  font-weight: 700;
  font-size: 18px;
  text-decoration:none;
  line-height:1;
}

.ee-header__links a:hover{
  color:#fff;
}

/* mobile: tighten + hide right badge */
@media (max-width: 991px){
  :root{ --ee-header-h:140px; }

  .ee-header__nav{
    grid-template-columns: 60px 1fr;
  }

  .ee-header__side--right{ display:none; }

  .ee-header__logo{
    width: min(520px, 80vw);
    max-height: 72px;
  }

  .ee-header__links{
    gap: 16px;
    flex-wrap: wrap;
  }
}
/* FORCE header bar smaller */
.ee-header{
  padding: 6px 0 4px !important;     /* less green space */
}

/* shrink the main wordmark a bit (this is what controls header height most) */
.ee-header__logo{
  max-height: 75px !important;       /* was ~95px */
  margin-bottom: 6px !important;     /* tighten gap to links */
}

/* shrink the side badges slightly */
.ee-header__side img{
  height: 44px !important;           /* was ~54px */
}

/* slightly tighter links (optional but helps height) */
.ee-header__links a{
  font-size: 16px !important;
  line-height: 1 !important;
}

/* IMPORTANT: body offset must match new header size */
body{
  padding-top: 120px !important;
}
/* Keep card hover movement, but DON'T change text color */
.service-card,
.service-card *{
  color: inherit;
  text-decoration: none;
}

.service-card:hover,
.service-card:focus{
  text-decoration: none;
}

/* If the card itself is an <a>, explicitly stop link hover coloring */
a.service-card:hover,
a.service-card:focus{
  color: inherit;
}

/* Optional: remove browser link underline on hover */
a.service-card:hover *{
  text-decoration: none;
}
/* Hero left column positioning */
.hero-left {
  position: relative;
}

/* Ireland map behind the text */
.hero-ireland {
  position: absolute;
  top: 40px;          /* vertical alignment */
  left: 0;
  width: 300px;       /* Figma-like scale */
  max-width: 65%;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Keep text above the map */
.hero-content {
  position: relative;
  z-index: 1;
}

/* Typography tweaks to match Figma */
.hero-title {
  font-weight: 800;
  line-height: 1.05;
}

.hero-lead {
  max-width: 540px;
  line-height: 1.6;
}

/* -----------------------------
   HERO: Ireland outline behind LEFT text only
------------------------------ */

.hero .hero-text {
  position: relative;
  overflow: hidden;              /* keeps the background contained */
}

/* Decorative background layer */
.hero .hero-text::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../img/Website Images/Ireland\ Vector.jpg"); /* <-- change filename */
  background-repeat: no-repeat;
  background-position: left center;  /* try: left top / 10% 50% */
  background-size: 520px auto;       /* adjust size to taste */

  opacity: 0.08;                  /* watermark strength */
  pointer-events: none;
  z-index: 0;
}

/* Ensure text sits above the background */
.hero .hero-text > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  line-height: 1.05;
}
/* Ireland outline behind the text in the Emerald Eats story section */
/* Emerald section: single background + Ireland outline behind text */
.emerald-bottom {
  background-color: #cfe23a; /* one flat background */
}

.emerald-bottom .emerald-text {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  background: transparent;   /* IMPORTANT: removes extra shade */
}

/* Ireland outline */
.emerald-bottom .emerald-text::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Use ONE of these url formats */

  /* Option 1 (spaces allowed inside quotes) */
  background-image: url("../img/Website Images/Ireland Vector.jpg");

  /* Option 2 (encoded spaces) */
  /* background-image: url("../img/Website%20Images/Ireland%20Vector.jpg"); */

  background-repeat: no-repeat;
  background-position: left center;
  background-size: 520px auto;
  opacity: 0.08;

  pointer-events: none;
  z-index: 0;
}

.emerald-bottom .emerald-text > * {
  position: relative;
  z-index: 1;
}
/* =========================
   Gallery (Figma-style Swiper)
========================= */

#gallery.gallery.section {
  /* match your site background */
  background: #d9f0e1; /* adjust if needed */
  padding: 5rem 0;
}

/* Center the carousel area a bit nicer */
#gallery .swiper {
  padding: 1.5rem 0 3rem; /* room for dots */
}

/* Card sizing */
#gallery .swiper-slide {
  width: 320px;                 /* controls card width */
  height: 360px;                /* controls card height */
  border-radius: 22px;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 250ms ease, box-shadow 250ms ease, outline-color 250ms ease;
  outline: 3px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255,255,255,0.25); /* fallback behind images */
}

/* Make the active slide “featured” */
#gallery .swiper-slide-active {
  transform: scale(1);
  outline-color: rgba(15, 107, 79, 0.35); /* brand green tint */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Kill the black bars: make images fill the card */
#gallery .swiper-slide img.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* If glightbox link is the direct wrapper, ensure it fills */
#gallery .swiper-slide a.glightbox {
  display: block;
  width: 100%;
  height: 100%;
}

/* Pagination dots */
#gallery .swiper-pagination {
  bottom: 0.5rem !important;
}

#gallery .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(15, 107, 79, 0.25);
  margin: 0 6px !important;
}

#gallery .swiper-pagination-bullet-active {
  background: rgba(15, 107, 79, 0.75);
  transform: scale(1.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #gallery .swiper-slide {
    width: 260px;
    height: 320px;
    border-radius: 18px;
  }
}

@media (max-width: 420px) {
  #gallery .swiper-slide {
    width: 220px;
    height: 280px;
  }
}

#gallery .swiper-slide {
  width: 280px;        /* was 320px */
  height: 320px;       /* was 360px */
  border-radius: 20px;
  overflow: hidden;

  transform: scale(0.94);   /* smaller difference */
  transition: transform 250ms ease, box-shadow 250ms ease, outline-color 250ms ease;

  outline: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

#gallery .swiper-slide {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 250ms ease, box-shadow 250ms ease, outline-color 250ms ease;
  outline: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
#gallery .swiper-slide-active {
  transform: scale(1.06); /* was ~1.03 */
  outline-color: rgba(15, 107, 79, 0.55);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}

#gallery .swiper {
  overflow: visible;      /* allow scaled active slide to exceed bounds */
}

#gallery .swiper-wrapper {
  align-items: center;
}
#gallery .swiper-slide-prev,
#gallery .swiper-slide-next {
  transform: scale(0.98);
}

#menu-indoor .nav-tabs .nav-link h4 { margin: 0; }
#menu-indoor .nav-tabs { gap: 6px; }

/* ================================
   MENU SECTION (tabs + zoom images)
   ================================ */

/* Tabs spacing polish */
#menu-indoor .nav-tabs {
  gap: 6px;
}

#menu-indoor .nav-tabs .nav-link h4 {
  margin: 0;
}

/* Menu image sizing (desktop-first) */
.menu-img {
  max-width: 620px;        /* clean, intentional size */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

/* Tablet */
@media (max-width: 992px) {
  .menu-img {
    max-width: 520px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .menu-img {
    max-width: 92%;
  }
}

/* Zoom affordance */
.menu a.glightbox {
  display: inline-block;
  cursor: zoom-in;
}

.menu a.glightbox img {
  transition: transform 0.2s ease;
}

.menu a.glightbox:hover img {
  transform: scale(1.01);
}

/* Contact: icon beside text */
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.footer-contact .icon {
  font-size: 28px;
  margin-top: 4px;
  color: var(--ee-yellow);
}

/* Social columns */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-social .social-links {
  margin-top: 12px; /* space under "Follow Us" */
}


/* The round icon button */
.footer-social .social-links a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(202, 219, 40, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ee-yellow);
  font-size: 26px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-social .social-links a:hover {
  background-color: rgba(202, 219, 40, 0.15);
  transform: translateY(-2px);
}

/* Mobile stack */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-contact {
    justify-content: center;
    text-align: center;
  }
}
/* Mobile header fix */
@media (max-width: 768px) {
  /* Hide the desktop links so they don’t wrap weirdly */
  .ee-header__links {
    display: none !important;
  }

  /* Tighten the header */
  .ee-header {
    padding: 10px 0 8px !important;
  }

  /* Make side logos smaller */
  .ee-header__side img {
    height: 40px !important;
  }

  /* Keep wordmark centered and not too big */
  .ee-header__logo {
    max-height: 60px !important;
    width: min(360px, 80vw) !important;
    margin-bottom: 0 !important;
  }

  /* Make sure content isn’t hidden under fixed header */
  body {
    padding-top: 110px !important;
  }
}
@media (max-width: 768px) {
  /* actual header height on mobile */
  .ee-header {
    padding: 10px 0 8px !important;
  }

  /* remove extra space under the header */
  body {
    padding-top: 78px !important; /* tweak 70–90 until perfect */
  }

  /* make sure hero section doesn't add extra top padding */
  #hero.hero.section {
    padding-top: 24px !important;
  }
}
@media (max-width: 768px) {
  .ee-header__side--left { display: none; }
}
/* =========================
   MOBILE HAMBURGER MENU
========================= */

.ee-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.ee-nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ee-yellow);
  margin: 5px 0;
  border-radius: 2px;
}

/* Mobile behaviour */
@media (max-width: 768px) {

  .ee-nav-toggle {
    display: block;
  }

  .ee-header__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ee-green);
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
    z-index: 999;
  }

  .ee-header__links.active {
    display: flex;
  }
}
/* =========================
   MOBILE NAV FIX
========================= */
@media (max-width: 768px) {

  /* Make the nav a positioning context */
  .ee-header__nav {
    position: relative;
  }

  /* Hide links by default on mobile */
  .ee-header__links {
    display: none;
  }

  /* Put burger on the RIGHT, not over the logo */
  .ee-nav-toggle {
    display: block;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    padding: 10px;
    cursor: pointer;
    z-index: 10000;
  }

  .ee-nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--ee-yellow);
    margin: 5px 0;
    border-radius: 2px;
  }

  /* Make sure the wordmark stays centered and doesn't get overlapped */
  .ee-header__center {
    width: 100%;
    align-items: center;
  }

  .ee-header__logo {
    max-height: 56px;
    width: min(320px, 72vw);
    margin: 0 auto;
  }

  /* Dropdown menu when opened */
  .ee-header__links.is-open {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px 0;

    position: absolute;
    left: 0;
    right: 0;
    top: 100%;

    background: var(--ee-green);
    z-index: 9999;
  }

  .ee-header__links.is-open a {
    font-size: 18px;
  }

  /* Hide right logo on mobile (optional, but keeps it clean) */
  .ee-header__side--right {
    display: none;
  }
}
/* =========================
   Mobile dropdown menu for ee-header
   ========================= */
@media (max-width: 768px) {

  /* burger needs a positioning context */
  .ee-header__nav {
    position: relative;
  }

  /* hide desktop links on mobile by default */
  .ee-header__links {
    display: none;
  }

  /* show dropdown when JS adds .is-open */
  .ee-header__links.is-open {
    display: flex;
    flex-direction: column;
    gap: 16px;

    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: var(--ee-green);
    padding: 18px 0;
    margin: 0;

    z-index: 9999;
  }

  /* nicer tap targets */
  .ee-header__links.is-open a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
  }
}
