/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/
/* Make sure menu-1 and menu-2 stack vertically */
/* Force menu-1 above menu-2 inside the offcanvas */
/* In the offcanvas menu: stack navs vertically */
/* Make menu-1 sit above menu-2 */
.offcanvas-body {
  display: flex;
  flex-direction: column; /* stack menus vertically */
  align-items: flex-start;
}

:root {
  --bs-font-sans-serif: 'Lato', sans-serif !important;
}
:root {
  --bs-link-color: #19408b;
  --bs-link-color-rgb: 25, 64, 139; /* RGB values of #19408b */
  --bs-link-hover-color: #142f66;
  --bs-link-hover-color-rgb: 20, 47, 102;
}


body {
  font-family: var(--bs-font-sans-serif) !important;
}


/* Top Menu-1 bar */
.top-menu-1 {
background: #424242;
background: linear-gradient(110deg, rgba(66, 66, 66, 1) 50%, rgba(242, 240, 236, 1) 33%);
}

body, 
button, 
input, 
select, 
textarea,
.navbar,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif !important;
}


@media (max-width: 991.98px) {
  .top-menu-1 {
    background: #424242;

  }
}

.top-menu-1 .navbar-nav .nav-link {
  color: #666; /* gray links */
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.top-menu-1 .navbar-nav .nav-link:hover {
  color: #000; /* darker hover */
}

/* Base styles for nav links */
.navbar-nav .nav-link {
  position: relative;
  color: inherit; /* keep existing color */
  text-decoration: none; /* remove default underline */
  transition: color 0.3s ease;
}

/* Underline effect (hidden initially) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* a little below text */
  width: 0%;
  height: 1px;
  background-color: #dfb367;
  transition: width 0.3s ease;
}

/* On hover: animate underline */
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Active state: keep underline visible */
.navbar-nav .nav-link.active::after,
.navbar-nav .current-menu-item > .nav-link::after {
  width: 100%;
}

/* Smooth transition for hiding Menu-1 */
.top-menu-1 {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-menu-1.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-top {
  position: sticky;
  top: -63px !important;
  z-index: 1020;
}

@media (max-width: 450.98px) {
  .sticky-top {
  
	  top: -60px !important;
  }
}

  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
	  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  }
.fancy-bg {
  background: linear-gradient(
    110deg, 
    rgba(66, 66, 66, 1) 32%, 
    rgba(255, 255, 255, 1) 21%
  );
}


@media (max-width: 991.98px) {
  .fancy-bg {
    background: #424242 !important;
	
  }
}


#offcanvas-navbar .navbar-nav .nav-link.active,
#offcanvas-navbar .navbar-nav .current-menu-item > .nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .current-menu-item > .nav-link {
  color: #dfb367 !important;
	 font-weight: bold;
}


#offcanvas-navbar .navbar-nav .nav-link.active::after,
#offcanvas-navbar .navbar-nav .current-menu-item > .nav-link::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .current-menu-item > .nav-link::after {
  width: 100%;
  background-color: #dfb367;
}
.menu-button-item button {
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
}
/* Style for the last menu button */
.menu-last-btn {
  background-color: #dfb367!important;
  border: none;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0px;
  font-weight: 100!important;
  transition: background-color 0.3s ease;
	font-size:16px !important;
}

.menu-last-btn:hover {
  background-color: #dfb367; /* darker shade on hover */
  color: #fff !important;
}

/* Mobile only (<992px) */
@media (max-width: 991.98px) {
  /* Make full width, push phone to right */
  .top-menu-contact {
    width: 100%;
    justify-content: space-between;
  }

  /* Hide phone number text, keep icon */
  .top-menu-contact a[href^="tel"] span {
    display: none;
  }

  /* Remove extra spacing between email + phone */
  .top-menu-contact a[href^="mailto"] {
    margin-right: 0 !important;
  }
}

#footer {
  background: 
    linear-gradient(to bottom, rgba(50, 50, 50, 0.6), rgba(0, 0, 0, 0.95)), 
    url('/wp-content/uploads/2025/09/Brandy-and-brecon-copy.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none;
}

.zoom {
  transition: transform 0.6s ease; /* smooth animation */
}

.zoom:hover {
  transform: scale(1.08); /* zoom in */
}
/* Fade in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-left { opacity: 0; }
.fade-left.show { animation: fadeInLeft 1s ease-out forwards; }

/* Fade in from right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-right { opacity: 0; }
.fade-right.show { animation: fadeInRight 1s ease-out forwards; }

/* Fade in from top (downward movement) */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-down { opacity: 0; }
.fade-down.show { animation: fadeInDown 1s ease-out forwards; }

/* Fade in from bottom (upward movement) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up { opacity: 0; }
.fade-up.show { animation: fadeInUp 1s ease-out forwards; }

html, body {
  overflow-x: hidden;
}

.wp-block-columns{
  margin-bottom: 0px !important;
}
/* Gray/Dark background only for mobile offcanvas */
@media (max-width: 991.98px) {
  #offcanvas-navbar.mobile-offcanvas {
    background-color: #222 !important; /* dark gray */
    color: #fff;
    font-size: 18px;
  }

  /* Style nav links */
  #offcanvas-navbar.mobile-offcanvas .nav-link {
    color: #424242;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
  }

  /* Hover state = orange */
  #offcanvas-navbar.mobile-offcanvas .nav-link:hover {
    color: #e7b158;
  }

  /* Active (current page) state = orange */
  #offcanvas-navbar.mobile-offcanvas .nav-link.active,
  #offcanvas-navbar.mobile-offcanvas .current-menu-item > a {
    color: #e7b158;
    font-weight: 300;
  }
}

/* Modern Hamburger Button */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #424242; /* adjust to match design */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* When offcanvas is open, animate into an X */
.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
#offcanvas-navbar .btn-close {
  background: none;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  opacity: 1;
}

#offcanvas-navbar .btn-close::before,
#offcanvas-navbar .btn-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.50rem;
  height: 3px;
  background-color: #dfb367; /* brand orange */
  transform-origin: center;
}

#offcanvas-navbar .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#offcanvas-navbar .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #284891; /* Button color */
  color: #fff;
  padding: 14px 14px 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
  z-index: 9999;
}

.floating-btn:hover {
  padding: 15px 15px 9px 17px;
	border:2px solid #000;
	
}

 .kb-form .kadence-blocks-form-field .kb-radio-style {
  padding: 0;
  background-color: initial;
  cursor: default;
  -webkit-appearance: auto;
  appearance: auto;
  box-sizing: border-box;
  margin: 3px 5px 3px 0;
  border-color: var(--global-gray-500, #818a91);
  box-shadow: none;
  width: auto;
  flex: none;
	 display:none;
	
}

.kb-form .kadence-blocks-form-field label {
  display: block;
  line-height: 1.8;
	font-size:24px;
}

.kb-form .kadence-blocks-form-field .kb-field-help {
  color: var(--global-palette6, #777);
  margin: 2px 0 5px 0;
  font-size: 100% !important;
  font-style: normal !important;
  display: block;
  flex-basis: 100%;
  width: 0;
}

.checkbox{
	display:flex;
}

@media (max-width: 1000px) {
  .season-img-1 {
    max-width: 70px !important;
  }
}
