.wc_statusbar {display: none !important;}


.btn-outline-members {
background-color: transparent !important;
border-radius: 0px !important;
border: 2px solid #1C4832 !important;
color: #1C4832 !important;
font-family: "IBM Plex Serif", serif;
padding: 7px 15px !important;
font-size: 15px;
font-weight: 500 !important;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
text-decoration: none !important;
}

.btn-outline-members:hover {
background-color: #1C4832 !important;
color: #ffffff !important;
}


.btn {
  background-color: transparent; 
  color: #1C4832;
  border: none;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "IBM Plex Serif", serif;
  border-radius: 0px !important;
}

/* Hover effect */
.btn:hover {
  background-color: #AD8D25;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Outline button */
.btn-outline {
  background: transparent;
  border: 1px solid #1C4832;
  color: #1C4832;
  padding: 14px 36px;
}

.btn-outline:hover {
  background: #1C4832;
  color: white;
}

/* White Outline button */
.btn-outline-white {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 14px 36px;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #1C4832;
}


/* Basic reset and layout */
        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0
            overflow-x: hidden;
        }

        /* Create space for fixed header */
        .main {
            margin-top: 80px;
            transition: margin-top 0.3s ease;
        }

        .wc_statusbar:not([style*="display: none"]) ~ .header ~ .main {
            margin-top: 0px;
        }

        .wc_statusbar.collapsed ~ .header ~ .main {
            margin-top: 80px;
        }

        /* STATUSBAR STYLES */
        
       .wc_statusbar {display: none !important;}
        
        .wc_statusbar {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            z-index: 1001 !important;
            transition: transform 0.3s ease !important;
        }

        .wc_statusbar.collapsed {
            transform: translateY(-100%);
        }

        /* HEADER STYLES */
        .header {
            position: fixed !important;
            top: 40px;
            left: 0;
            right: 0;
            height: 80px;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 0 20px;
        }

        body:not(:has(.wc_statusbar)) .header {
            top: 0;
        }

        .wc_statusbar[style*="display: none"] ~ .header {
            top: 0;
        }

        .header.scrolled {
            top: 0;
            height: 60px;
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header.admin-hidden {
            top: 0;
        }

        /* LOGO */
        .site-logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            margin-right: 20px;
        }

        .site-logo img {
            height: 50px;
            width: auto;
            transition: height 0.3s ease;
        }

        .header.scrolled .site-logo img {
            height: 40px;
        }

        /* DESKTOP NAVIGATION */
        .nav-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        
        /* DESKTOP SUBMENU ARROWS */
        .main-nav ul.sm > li:has(ul) > a {
            position: relative !important;
            padding-right: 15px !important;
        }

        .main-nav ul.sm > li:has(ul) > a::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            width: 6px;
            height: 6px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: translateY(-50%) rotate(45deg);
            transition: transform 0.3s ease;
        }

        .main-nav ul.sm > li:hover:has(ul) > a::after {
            transform: translateY(-50%) rotate(225deg);
        }

        /* DESKTOP SUBMENUS */
        .main-nav ul.sm ul {
            position: absolute !important;
            top: 100% !important;
            left: 0 !important;
            background: #fff !important;
            min-width: 250px !important;
            border-radius: 8px !important;
            box-shadow: 0 12px 35px rgba(0,0,0,0.15) !important;
            padding: 16px 0 !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transform: translateY(-10px) !important;
            transition: all 0.3s ease !important;
            z-index: 1000 !important;
            border-top: 3px solid #007cba !important;
            list-style: none !important;
            margin: 0 !important;
        }

        .main-nav ul.sm li:hover > ul {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
        }

        .main-nav ul.sm ul li a {
            padding: 12px 20px !important;
            color: #666 !important;
            font-weight: 400 !important;
            font-size: 14px !important;
            display: block !important;
            text-decoration: none !important;
            transition: all 0.2s ease !important;
            border-bottom: 1px solid #f0f0f0 !important;
        }

        .main-nav ul.sm ul li:last-child a {
            border-bottom: none !important;
        }

        .main-nav ul.sm ul li a:hover {
            color: #007cba !important;
            background: #f8f9fa !important;
            padding-left: 24px !important;
        }
        
        .sm-buz a .sub-arrow {display: none !important;}
        
        .sm-buz a, .sm-buz a:hover, .sm-buz a:focus, .sm-buz a:active {font-family: "IBM Plex Serif", serif !important;}

        /* CTA BUTTON */
        .cta-button {
            flex-shrink: 0;
            margin-left: 20px;
        }

        .cta-button a {
            background: #007cba;
            color: white !important;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none !important;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-button a:hover {
            background: #005a8b;
            transform: translateY(-2px);
        }

        /* MOBILE MENU TRIGGER */
        .mobile-menu-trigger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
        }

        .hamburger {
            width: 25px;
            height: 20px;
            position: relative;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background: #333;
            margin-bottom: 4px;
            transition: all 0.3s ease;
        }

        .hamburger span:last-child {
            margin-bottom: 0;
        }

        /* Hamburger animation */
        .mobile-menu.open ~ .mobile-menu-trigger .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu.open ~ .mobile-menu-trigger .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.open ~ .mobile-menu-trigger .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* OFF-CANVAS MOBILE MENU */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100vh;
            background: white;
            z-index: 1002;
            padding: 20px;
            overflow-y: auto;
            transition: left 0.3s ease;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }

        .mobile-menu.open {
            left: 0;
        }

        /* Mobile menu overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* MOBILE MENU STYLING */
        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu > ul > li {
            border-bottom: 1px solid #eee;
        }

        .mobile-menu li a {
            display: block;
            padding: 15px 0;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .mobile-menu li a:hover {
            color: #007cba;
        }

        /* Mobile submenu styling */
        .mobile-menu .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f8f9fa;
            margin: 0 -20px;
            padding: 0 20px;
        }

        .mobile-menu .submenu.open {
            max-height: 500px;
        }

        .mobile-menu .submenu li {
            border-bottom: 1px solid #e0e0e0;
        }

        .mobile-menu .submenu li:last-child {
            border-bottom: none;
        }

        .mobile-menu .submenu li a {
            padding: 10px 0 10px 20px;
            font-size: 14px;
            color: #666;
            font-weight: 400;
        }

        .mobile-menu .has-submenu > a {
            position: relative;
            padding-right: 30px;
        }

        .mobile-menu .has-submenu > a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #666;
    transition: transform 0.3s ease;
}

.mobile-menu .has-submenu.open > a::after {
    transform: translateY(-50%) rotate(90deg);
}    

        /* Mobile CTA */
        .mobile-cta {
            margin-top: 30px;
            padding: 15px 20px;
            background: #007cba;
            color: white;
            text-align: center;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: block;
            transition: background 0.3s ease;
        }

        .mobile-cta:hover {
            background: #005a8b;
            color: white;
            text-decoration: none;
        }

        /* MOBILE STYLES */
        @media (max-width: 768px) {
            .wc_statusbar {
                display: none !important;
            }

            .main {
                margin-top: 70px !important;
            }

            .header {
                top: 0 !important;
                height: 70px;
                background: rgba(255, 255, 255, 1);
                padding: 0 15px;
                justify-content: space-between;
            }

            .site-logo img {
                height: 35px;
            }

            .header.scrolled .site-logo img {
                height: 28px;
            }

            .nav-container,
            .cta-button {
                display: none;
            }

            .mobile-menu-trigger {
                display: block;
            }
        }

        /* Hide ColdFusion hamburger */
        .nav-container .main-menu-btn {
            display: none !important;
        }
        
        #main-menu-state {display:none !important;}

        /* Override SmartMenus arrows */
        .main-nav .sm ul a.has-submenu::after,
        .main-nav .sm ul a.has-submenu::before {
            display: none !important;
        }
        

/* FOOTER STYLES */
        .footer {
            background: #1a3a57;
            background: linear-gradient(90deg, rgba(26, 58, 87, 1) 34%, rgba(47, 80, 110, 1) 80%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #007cba 50%, transparent 100%);
        }

        /* Main footer content */
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-contact {
            flex: 2;
        }

        .footer-links,
        .footer-social {
            flex: 1;
        }

        /* Contact section */
        .footer-contact h3 {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 25px;
            position: relative;
            font-family: "Cormorant Garamond", serif;
        }

        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 1px;
            background: #ffffff;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #ffffff;
            font-size: 16px;
            line-height: 1.5;
        }

        .contact-item strong {
            color: #ffffff;
            min-width: 80px;
            margin-right: 10px;
            font-weight: 300 !important;
        }
        
        .contact-item a {
         color: #ffffff !important;
         transition: color 0.3s ease, padding-left 0.3s ease !important;
         display: block;
        }
        
        .contact-item a:hover {
        color: #cccccc !important;
        }

        /* Quick links section */
        .footer-links h3 {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 25px;
            position: relative;
            font-family: "Cormorant Garamond", serif;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: #ffffff;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: block;
        }

        .footer-links ul li a:hover {
            color: #cccccc;
            padding-left: 5px;
        }

        /* Social media section */
        .footer-social h3 {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 20px;
            position: relative;
            font-family: "Cormorant Garamond", serif;
        }

        .footer-social h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: #ffffff;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            padding-top: 10px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #cccccc;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 18px;
        }

        .social-links a:hover {
            background: #cccccc;
            color: white;
            transform: translateY(-3px);
        }

        /* Footer bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            height: 40px;
            margin-right: 15px;
            opacity: 0.9;
        }

        .footer-logo span {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
        }

        .copyright {
            color: #ffffff;
            font-size: 15px;
        }
        
        .copyright a {
            color: #ffffff !important;
        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 968px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-contact {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                padding: 40px 15px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-contact {
                grid-column: 1;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 20px;
            }

            .contact-item strong {
                margin-bottom: 5px;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                gap: 25px;
            }

            .footer-logo {
                flex-direction: column;
                gap: 10px;
            }

            .footer-logo img {
                margin-right: 0;
            }
        }
             
.fes1-main-title-cont {margin:30px 0 40px 55px !important;}

.fes1-cont {padding-top: 100px;}

.video-ads-text-cont a {padding: 30px !important;}

.fes4-img {
    background: url(/images/design/membership_feature.jpg) 50% 50% no-repeat !important;
    }
    
.fes6-img {
    background: url(/images/design/feature_dining.jpg) 50% 50% no-repeat !important;
    }    
    
 .fes7-img {
 
 background: url(/images/design/special_events.jpg) 50% 50% no-repeat !important;
 }   
    .fes3-img {
    background: url(/images/design/Golf_Course.jpg) 50% 50% no-repeat !important;
    }                                              