/*
Theme Name: Laurel Lake
Author: Josh Yager
Author URI: https://thedevq.com/
Description: Custom Theme build by The Dev Q
Version: 1.0.0
*/

/* -----------------------------------------------------------------------------
 * CSS Variables
 * -------------------------------------------------------------------------- */
:root {
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 30px;
  --spacing-xl: 60px;

  /* Z-index layers */
  --z-index-dropdown: 3;

  /* Transitions */
  --transition-fast: all 0.1s ease-in-out;
  --transition-default: all 0.3s ease-in-out;

  /* Other */
  --video-aspect-ratio: 56.25%;
  /* 16:9 */
}

/* -----------------------------------------------------------------------------
 * Base Elements
 * -------------------------------------------------------------------------- */
html, body {
  overflow-x: hidden !important;
}



a {
  color: var(--secondary);
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  font-family: var(--font2);
  font-weight: 500;
  color: #333131;
  line-height: 1.5;
}

p, ul, li {
  font-family: var(--font2);
  font-weight: 500;
  color: #333131;
  line-height: 1.7;
}

img {
  max-width: 100%;
}

/* -----------------------------------------------------------------------------
 * Typography
 * -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font1);
  font-weight: 600;
  line-height: 1;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

.bigger-title {
  font-size: 4rem;
}

.sub-title {
  font-size: 24px;
}

.cs-topper {
  font-family: var(--font2);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  margin-top: 0;
  color: var(--secondary);
  letter-spacing: 3px;
}

.cs-title {
  font-size: 34px;
  margin: 0;
  line-height: 1;
  font-weight: 800;
  max-width: 530px;
  color: var(--primary);
}

/* -----------------------------------------------------------------------------
 * Layout
 * -------------------------------------------------------------------------- */
.container-fluid {
  max-width: 2400px;
  margin: auto;
}

.videoWrapper {
  position: relative;
  padding-bottom: var(--video-aspect-ratio);
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------------------------------
 * Buttons
 * -------------------------------------------------------------------------- */
.btn {
  text-decoration: none;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 300px;
  padding: var(--button-padding, 15px);
  font-weight: 600;
  text-align: center;
  transition: var(--transition-default);
  border: 2px solid var(--primary);
  border-radius: var(--button-radius, 4px);
}

.btn i {
  margin-right: var(--spacing-sm);
  font-size: 14px;
}

.btn:hover {
  background: var(--tertiary) !important;
  color: black;
  border: 2px solid var(--tertiary);
}

/* Button Variants */
.btn.btn-secondary {
  background: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  color: black;
}

.btn.btn-tertiary {
  background: var(--tertiary);
  border: 2px solid var(--tertiary);
}

.btn.btn-white {
  background: white;
  color: var(--primary);
}

.btn.white:hover {
  background: var(--primary);
  color: white;
}

.btn.btn-secondary.border {
  background: transparent;
  color: white;
  border: 2px solid var(--secondary);
}

.btn.btn-secondary.border:hover {
  background: var(--secondary);
  border: 2px solid var(--secondary);
  color: black;
}

/* -----------------------------------------------------------------------------
 * Header & Navigation
 * -------------------------------------------------------------------------- */
.devq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: var(--spacing-md) 0;
}

.mainLogo {
  padding: 0;
  display: block;
  width: 200px;
  height: auto;
  margin: 0;
  position: relative;
}

/* Main Menu */
.menutop ul {
  display: flex;
  list-style: none;
}

.menutop ul li a {
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  color: initial;
  font-size: 18px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.menutop ul li a:hover {
  color: var(--secondary);
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  transform-origin: center top 0;
  transition: var(--transition-fast);
  min-width: 270px;
  left: -10px;
  overflow: hidden;
  padding-left: 0;
  list-style: none;
}

ul.dropdown-menu {
  display: none;
}

.dropdown:hover ul.dropdown-menu {
  display: block;
  position: absolute;
  color: white;
  z-index: var(--z-index-dropdown);
}

.dropdown-menu a {
  margin: 0 !important;
}

.dropdown-menu li a {
  background: var(--primary);
  padding: var(--spacing-sm) var(--spacing-md);
  color: white !important;
  display: block;
  border-bottom: 1px solid white;
  transition: var(--transition-fast);
}

.dropdown-menu li:last-child a {
  border-bottom: 0;
}

.dropdown-menu li a:hover {
  background: var(--secondary);
  color: white !important;
}

a.dropdown-toggle i {
  padding-left: 5px;
  font-size: 14px;
}

.menu-depth-1,
.menu-item-has-children {
  position: relative;
}

/* Mobile Menu */
nav#menu:not(.mm-menu) {
  display: none;
}

.mm-menu {
  --mm-color-background: #fff;
}

.mm-listitem__text, .mm-navbar__title>span {
  font-weight: 600;
  color: var(--primary);
}

/* Hamburger Menu */
.mburger {
  color: #fff;
}

.mburger:hover,
.mburger:focus,
.mburger:active {
  color: #fff;
}

.mburger strong {
  display: block;
  position: absolute;
  left: calc(var(--mb-button-size)*((1 - var(--mb-bar-width))/2));
  width: calc(var(--mb-button-size)*var(--mb-bar-width));
  height: var(--mb-bar-height);
  background: black;
  color: inherit;
  opacity: 1;
  border-radius: 0;
}

.mburger strong:nth-of-type(1) {
  bottom: calc(45% + var(--mb-bar-spacing));
}

.mburger strong:nth-of-type(3) {
  top: calc(45% + var(--mb-bar-spacing));
}

.mburger span {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

/* Mobile Header */
.flextophead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

img.mobilelogo {
  width: 230px;
  margin: 0 var(--spacing-md);
}

.mobilemen {
  margin: -10px 10px 0 0;
  display: none;
}

img.mobileLogo {
  padding: 30px;
}

/* -----------------------------------------------------------------------------
 * Footer
 * -------------------------------------------------------------------------- */
.footerfluid2 {
  padding: var(--spacing-md) 0;
  background: var(--secondary);
}

.footerfluid2 p {
  color: white;
  margin: 0;
  padding: var(--spacing-sm) 0;
  font-size: 16px;
}

/* -----------------------------------------------------------------------------
 * Utility Classes
 * -------------------------------------------------------------------------- */
.mobileonly,
.mobileOnly {
  display: none;
}

/* -----------------------------------------------------------------------------
 * Browser Customization
 * -------------------------------------------------------------------------- */
::selection {
  background: var(--tertiary);
  color: var(--secondary);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f5f5f5;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--tertiary);
}

/* -----------------------------------------------------------------------------
 * Content Styles
 * -------------------------------------------------------------------------- */
.maincopy ul li {
  list-style: none;
  position: relative;
  margin-bottom: var(--spacing-md);
}

/* -----------------------------------------------------------------------------
 * Media Queries
 * -------------------------------------------------------------------------- */
@media (max-width: 1199px) {

  /* Header Responsive */
  .header-wrapper {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
  }

  .main-navigation {
    gap: 20px;
  }

  .top-bar-content {
    padding: 0 15px;
  }

  .nav-content {
    padding: 0 15px;
  }

  .logo-section {
    padding: 12px 18px;
  }

  .logo-section .mainLogo {
    max-height: 50px;
  }

  /* Legacy Header & Navigation */
  .mainLogo {
    margin: 0 auto;
    width: 200px;
    height: auto;
  }

  .menutop {
    display: none;
  }

  .mobilemen {
    display: inherit;
  }

  /* Utility Classes */
  .mobileonly,
  .mobileOnly {
    display: initial;
  }

  .desktopOnly {
    display: none;
  }

  /* Footer */
  .footerfluidcolor {
    padding: 70px 0 40px;
  }

  .footerfluid2 p {
    text-align: center;
  }
}

@media (max-width: 991px) {

  /* Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  h5 {
    font-size: 1.5rem;
  }

  .bigger-title {
    font-size: 3rem;
  }

  .sub-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {

  /* Header Mobile Styles */
  .header-wrapper {
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }

  .top-bar {
    display: none;
  }

  .nav-content {
    padding: 0 15px;
  }

  .logo-section {
    position: static;
    padding: 10px 15px;
    border-radius: 0 6px 6px 0;
    height: auto;
    top: auto;
  }

  .logo-section .mainLogo {
    max-height: 45px;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-hamburger {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
  }
}

@media (min-width: 1200px) {

  /* High Resolution Header */
  .main-navigation {
    gap: 40px;
  }
}

/* Header Wrapper Styles */
.header-wrapper {
  position: absolute;
  top: 15px;
  left: 30px;
  right: 30px;
  width: calc(100% - 60px);
  z-index: 1000;
}

/* Top Bar Styles */
.top-bar {
  background-color: var(--tertiary);
  padding: 8px 0;
  font-size: 14px;
  border-radius: 15px 15px 0 0;
  color: #333;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 30px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desk-phone {
  font-weight: 600;
  color: #333;
}

.top-bar-right a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.top-bar-right a:hover {
  opacity: 0.8;
}

.top-bar-right i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Main Navigation Bar */
.main-nav-bar {
  background-color: #F9F9F9;
  padding: 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  border-radius: 0 0 15px 15px;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  position: relative;

}

/* Logo Section - Overlapping positioning */
.logo-section {
  position: absolute;
  left: 0;
  top: -37px;
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  display: flex;
  align-items: center;
}

.logo-section .mainLogo {
  max-height: 115px;
  width: auto;
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
  justify-content: flex-end;
  padding: 0 25px;
}

.main-navigation {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 20px 0;
  display: block;
  transition: color 0.3s ease;
}

@media (max-width:1350px) {
  .main-navigation a {
    font-size: 14px;
  }
}

@media (max-width:1250px) {
  .main-navigation a {
    font-size: 12px;
  }
}

.main-navigation a:hover {
  color: var(--primary);
}

/* Navigation Button Styling (Schedule a Visit) */
.navbtn a {
  background-color: var(--secondary) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: var(--button-radius) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.navbtn a:hover {
  background-color: var(--primary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Mobile Hamburger Menu */
.mobile-hamburger {
  display: none;
  padding: 20px;
}

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  font-size: 18px;
}

.mobile-phone-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.mobile-phone-btn i {
  display: block;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  text-decoration: none;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-btn:hover .hamburger-line {
  background-color: var(--primary);
}

/* Dropdown Menus */
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.main-navigation li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu li {
  width: 100%;
}

.main-navigation .sub-menu a {
  padding: 10px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.main-navigation .sub-menu a:hover {
  background-color: #f8f9fa;
}

/* Tablet & Mobile Styles */
@media (max-width: 1199px) {

  /* Adjust margins for tablet/mobile */
  .header-wrapper {
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }

  /* Hide top bar on tablet/mobile */
  .top-bar {
    display: none;
  }

  /* Mobile navigation adjustments */
  .nav-content {
    padding: 0 15px;
  }

  /* Logo section adjustments */
  .logo-section {
    position: static;
    padding: 10px 15px;
    border-radius: 0 6px 6px 0;
    height: auto;
    top: auto;
  }

  .logo-section .mainLogo {
    max-height: 45px;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-hamburger {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
  }
}

/* Tablet Styles */
@media (max-width: 1199px) {
  .header-wrapper {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
  }

  .main-navigation {
    gap: 20px;
  }

  .top-bar-content {
    padding: 0 15px;
  }

  .nav-content {
    padding: 10px 15px;
    justify-content: space-between;
  }

  .logo-section {
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .logo-section .mainLogo {
    max-height: 75px;
  }

  .menu-desktop-container a {
    font-size: 16px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* High Resolution Styles */
@media (min-width: 1200px) {
  .main-navigation {
    gap: 40px;
  }

  .mobilemenuonly {
    display: none;
  }
}

.contact-block .gform_wrapper .gfield .ginput_container_consent label {
    display: block !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}