@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,300;1,400;0,300;0,400&display=swap');


/* Default state: Show thumbnail, hide slideshow */
.lightbox-wrapper .thumbnail {
	display: block;
	cursor: pointer;
}

.lightbox-wrapper .slideshow-container,
.lightbox-wrapper .close-button {
	display: none;
}

/* When lightbox is targeted, show slideshow & X button, hide thumbnail */
:target.lightbox-wrapper .thumbnail {
	display: none;
}

:target.lightbox-wrapper .slideshow-container,
:target.lightbox-wrapper .close-button {
	display: block;
}

/* When closing, return to default state */
:target#close .thumbnail {
	display: block;
}

:target#close .slideshow-container,
:target#close .close-button {
	display: none;
}


.floating-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5vw;
  z-index: 10;
  pointer-events: none; /* allows background interaction if needed */
}





.force-full-cover {
  position: absolute; /* or fixed if you want it to stay on screen while scrolling */
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
	  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
	margin-top: 0 !important;
	padding-top: 0 !important;
  padding: 0 !important;
  !margin: 0 !important; /* reset margins */
  !padding: 0 !important;
  overflow: hidden;
  z-index: 0; /* higher to ensure on top */
}

/* Ensure internal container doesn't add spacing */
.force-full-cover > .wp-block-cover__inner-container {
  max-width: none !important;
  padding: 0 !important;
}

/* Prevent theme wrappers from causing scroll or visual gaps */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* Remove side padding from common theme wrappers */
body .wp-site-blocks,
body .site-content,
body .entry-content,
body .container,
body .content-area {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


.hero-text-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 999;
  pointer-events: none;
	padding-right: 40%;
	padding-left: 85%;
}

.hero-text-content {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 2.0rem;
  max-width: 790px;
  max-height: 90vh;       /* Limit to 90% vertical height */
  overflow-y: auto;       /* Scroll if content exceeds height */
  font-size: 1.3rem;
  line-height: 1.6;
  pointer-events: auto;
}

.hero-nav-links {
  /* existing layout rules … */
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: calc(100vw - 540px);
  transform: translateY(-50%);
  text-align: left;
  font-size: 3.2rem;
  line-height: 1.3;
  gap: 1.5rem;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: auto;

  /* 🆕  typography tweaks  */
  font-family: 'Oswald', sans-serif; /* new font */
  font-weight: 900;                 /* extra-bold weight */
  letter-spacing: 0.04em;           /* slight spacing for readability */
  text-transform: uppercase;        /* optional – feels stronger */
}

.hero-nav-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-weight: inherit;      /* inherits the 900 weight above */
}

.hero-nav-links a:hover {
  opacity: 0.7;
}

.hero-nav-links {
  -webkit-text-stroke: 1px rgba(0,0,0,0.3); /* subtle outline */
}


.home .home-padding-fix {
  padding: 30px !important;
	margin-top: 0%; !important;
}

.home .content-area,
.home .site-content,
.home main {
  padding-top: -0 !important;
  margin-top: 0 !important;
}


@media (max-width: 960px) {
  .menu-toggle {
    position: relative;
    width: 30px;
    height: 24px;
    font-size: 0;
    border: none;
    background: transparent;
    cursor: pointer;

    background:
      linear-gradient(#000 3px, transparent 3px) top,
      linear-gradient(#000 3px, transparent 3px) center,
      linear-gradient(#000 3px, transparent 3px) bottom;
    background-size: 100% 3px;
    background-repeat: no-repeat;

    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }

  .menu-toggle:focus,
  .menu-toggle:active {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }
}

.no-underline a {
  text-decoration: none;
	  border: 1px solid #ffffff; /* thin white border */
  background-color: transparent; /* optional: make button transparent */
  color: #ffffff; /* optional: white text */
}

.page .entry-title {
  display: none;
  margin: 0;
  padding: 0;
}

.page .entry-header {
  margin-bottom: 0;
  padding-bottom: 0;
  height: auto;
}

/* Hide the footer completely */
.site-footer,
.footer-widgets,
.footer-navigation {
  display: none !important;
}

.wp-block-button__link {
    text-transform: none !important;
}

.main-navigation .menu-item-has-children > a::after,
.main-navigation .page_item_has_children > a::after {
    color: #000000 !important;
}




figcaption.wp-element-caption,
.wp-block-image figcaption,
figure figcaption {
    all: initial;
    display: block;

    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
    color: #000;

    text-align: center;
    margin-top: 6px;
}


/* Force ALL captions everywhere */
figcaption.wp-element-caption,
.wp-block-image figcaption,
figure figcaption {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important;
    font-style: italic !important;
    font-size: 18px !important;
    color: #000000 !important;

    text-align: center !important;
    margin-top: 6px !important;

    background: none !important;
    position: static !important;
    width: 100% !important;

    /* Prevent fake bolding / rendering differences */
    font-synthesis: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

figcaption.wp-element-caption *,
.wp-block-image figcaption * {
    font-weight: 300 !important;
}








.image-button-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.image-button-gallery img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.image-button-gallery img:hover {
    transform: scale(1.05);
}

.image-button-gallery img:active {
    transform: scale(0.97);
}

/* Prevent theme/lightbox from hijacking clicks */
.image-button-gallery a {
    pointer-events: auto !important;   /* allows normal link behavior */
}

.image-button-gallery img {
    width: 100%;             /* fill the grid cell */
    height: 200px;           /* fixed height for all images */
    object-fit: cover;       /* crop without stretching */
    border-radius: 12px;
    display: block;
}

/* Force all images in the button gallery to the same size */
.image-button-gallery img {
    width: 100%;            /* make it fill the grid column */
    height: 200px;          /* set the fixed height for all images */
    object-fit: cover;      /* crop the image to fill the box without stretching */
    display: block;
    border-radius: 12px;    /* optional: rounded corners */
}

/* If using a grid container */
.image-button-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-content: center;
}

.black-border-button {
  display: flex;
  justify-content: center; /* centers the button block */
}

.black-border-button .wp-block-button__link {
  border: 1px solid black; /* 1px black border */
  border-radius: 44px;      /* rounded corners */
  text-decoration: none;    /* remove underline */
  display: inline-block;    /* proper sizing inside flex */
}

/* Change menu item hover color */
.main-navigation a:hover,
.main-navigation a:focus {
    color: #808080 !important;
}

/* Optional: also affect current/active menu item */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: #808080 !important;
}

/* Button background (you already did this, included for completeness) */
.main-navigation .dropdown-toggle {
    background-color: #808080 !important;
    border-color: #808080 !important;
}

/* Arrow inside the circle */
.main-navigation .dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    
    
    /* THIS is the arrow color */
    border-color: #ffffff transparent transparent transparent !important;
    
    position: relative;
    top: 0.1em;
}


.wp-block-gallery img,
.gallery img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.wp-block-gallery figure,
.gallery-item {
    display: block !important;
}

.extended_button {
    border: 1px solid #000 !important;
	    border-radius: 50px !important;
    overflow: hidden;
	    text-decoration: none !important;
    background-color: transparent; /* or your default color */
    border: 1px solid #000;
    color: #000;
	text-decoration: none !important;
}

.extended_button a,
.extended_button a:link,
.extended_button a:visited {
    text-decoration: none !important;
}

.extended_button a:hover,
.extended_button a:focus,
.extended_button a:active {
    text-decoration: none !important;
    background-color: #808080 !important;
    color: #ffffff !important;
}







/* Remove ALL hover underlines */
.main-navigation a:hover {
  border-bottom: none !important;
}

/* Remove underline from ALL submenu items */
.main-navigation ul ul a {
  border-bottom: none !important;
}

/* Ensure submenu items never show underline even when active */
.main-navigation ul ul .current-menu-item > a,
.main-navigation ul ul .current_page_item > a,
.main-navigation ul ul .current-menu-ancestor > a {
  border-bottom: none !important;
}

/* Only underline TOP LEVEL active menu items */
.main-navigation > div > ul > li.current-menu-item > a,
.main-navigation > div > ul > li.current_page_item > a,
.main-navigation > div > ul > li.current-menu-ancestor > a {
  border-bottom: 2px solid #808080 !important;
}

/* MOBILE: never underline submenu items */
@media (max-width: 768px) {

  .main-navigation ul ul a,
  .main-navigation ul ul li.current-menu-item > a,
  .main-navigation ul ul li.current_page_item > a,
  .main-navigation ul ul li.current-menu-ancestor > a {
    border-bottom: none !important;
  }

}




	
	
	
/