/*
Theme Name: Hard Charger
Theme URI: https://example.com
Author: Starter
Author URI: https://example.com
Description: Hard Charger Fishing Site.
Version: 1.0
Text Domain: Hard Charger Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #3e6dc9;
    --white: #ffffff;
    --black: #000000;
    --accent: #4170cc;
    --transparent: transparent;
    --heading-font: "Playfair Display", Georgia, "Times New Roman", serif;
    --body-font: "Open Sans", Arial, Helvetica, sans-serif;
}


/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary);
}
a:hover{
	color: var(--black);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================================================================= */
/* MAIN HEADER  */
/* ================================================================================= */

#main-header {
    display: block;
    position: relative;
    left: 0;
    margin: 0 auto;
    padding: 0 0;
    width: 100%;
    height: auto;
    background: var(--white);
    background-size: 100% auto;
    z-index: 9999;
}

@media only screen and (max-width: 1440px) {
    #main-header:after {
        transform: translateY(75%);
    }
}

#main-header{
    position: relative;
    background: none;
}

#main-header.left #site-navigation {
    display: grid;
    grid-template-columns: 11% auto;
    grid-gap: 5%;
}

#main-header.left #site-navigation .menu {
    padding: 0 !important;
    /*-- just in case --*/
}

#site-navigation .mobile_nav_bar {
    order: 2;
}

/* ================================================================================= */
/* NAVIGATION  */
/* ================================================================================= */

#site-navigation {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.5%;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    padding: 0;
    max-width: 1160px;
    width: auto;
    height: auto;
    line-height: normal;
    box-sizing: border-box;
    z-index: 1;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 32px;
    position: relative;
    padding: 0;
    height: auto;
	margin-top: 20px;
    box-sizing: border-box;
    z-index: 2;
    transform: translateY(0%);
}

.mobile_logo{
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu:nth-of-type(2) {
    justify-content: flex-start;
}

.menu li {
    display: block;
    position: relative;
    margin: 0;
}

.menu li#home {
    font-variant: normal !important;
    font-weight: 900 !important;
}

.menu li#home i {
    margin: 0;
    font-size: 140% !important;
    font-weight: 300 !important;
    color: var(--black) !important;
    transform: translateY(-3%);
}

.bg-dark .menu li#home i {
    color: #fff !important;
}

.menu li:last-child a {
    background-image: none;
}

.menu a {
	font-size: 14px;
    display: grid;
    align-content: center;
    padding-bottom: 5px;
    height: auto;
    color: #151515;
	text-transform: uppercase;
    text-align: center;
    text-decoration: none;
	transition: all 0.5s;
	letter-spacing: 2.5px;
}

.menu a:hover, .menu .current_page_item a{
    color: var(--accent);
	border-bottom: 1px solid var(--accent);
}

#site-navigation .menu span {
    margin: 0 auto .666rem;
    text-align: center;
    color: var(--accent) !important;
}

/* ---------------------------------------- SUBMENU ---------------------------------------- */

.sub-wrapper:after {
    content: '\e5cf';
    position: absolute;
    left: 50%;
    bottom: 0;
    font-family: 'Material Symbols Outlined';
    font-size: 160% !important;
    font-weight: 300;
    color: var(--accent);
    transform: translate(-50%, 70%);
}


.sub-menu {
    display: none;
    position: absolute;
    top: 95%;
    left: 4%;
    margin: 0;
    padding: .8rem 0;
    width: 240px;
    height: 0;
    font-size: 100%;
    background: var(--primary);
    border-radius: 4px;
    box-sizing: border-box;
    z-index: 2;
}

@media only screen and (max-width: 1560px) {
    .sub-menu {
        width: 230px;
    }
}

.sub-wrapper:hover .sub-menu {
    display: block;
    height: auto;
    opacity: 1;
}

.sub-menu li {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 97.5%;
    line-height: 1.4;
    list-style: none;
    text-align: left;
    text-shadow: 0 -1px 0 #fff;
}

.sub-menu a {
    display: block;
    padding: .5rem 1rem;
    height: auto;
    color: #fff;
    text-align: left;
    text-shadow: none;
    background: none;
}

.sub-menu a:hover {
    color: rgba(255, 255, 255, .8);
}

/* ===== NAVBAR ===== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    z-index: 100;
}

.navbar .logo img {
    height: 70px;
    width: auto;
}

.navbar .nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar .nav-icons button {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}
.menu-item-has-children::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    font-family: "Material Symbols Outlined";
    font-weight: 300;
    color: var(--accent);
    transform: translate(-50%, 55%);
    font-size: 180% !important;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.sub-menu {
    height: auto !important;
}

.mobile-menu .sub-menu {
    position: relative;
    width: 100%;
    left: 0;
    background: transparent;
}

.mobile-menu .menu-item-has-children::after {
    top: -35px;
    bottom: auto;
    right: 0;
    left: auto;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--black) !important;
    font-family: Oswald, var(--fonts) !important;
    font-size: 16px;
    text-align: left;
    display: block;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-menu .sub-menu {
    display: none;
}

.mobile-menu .menu-item-has-children.is-open>.sub-menu {
    display: block !important;
}

#main-header .mobile-menu-wrapper {
    background: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    z-index: 99 !important;
    width: 0px;
    transition: width 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(-250px);
    padding: 10px 20px;
    overflow-x: auto;
}

#main-header .mobile-menu-wrapper.is-open {
    width: 100%;
    display: block;
    transform: translateX(0px);
}

#main-header .mobile-menu-wrapper .menu-item {
    border-bottom: 1px solid #dbdbdb;
    padding: 6px 0 12px;
    list-style: none;
}

#main-header .mobile-menu-wrapper .sub-menu .menu-item:last-child {
    border-bottom: none;
}

.hamburger-menu svg,
.phone-number-mobile svg,
.mobile-menu-close svg {
    width: 34px;
}

.hamburger-menu,
.phone-number-mobile,
.mobile-menu-close {
    background: transparent;
    border: 0px;
}

.mobile-close-btn-wrapper {
    text-align: end;
}

.mobile-menu-wrapper {
    transition: left .3s ease-in-out;
}

/* 
.single-content-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
}

.single-content-wrapper article {
    border-top: 0px !important;
}

#wpadminbar #adminbarsearch .adminbar-button {
    display: none !important;
} */



/* =====================================================================
   Deep Sea Destin custom page styles (Home + Contact)
   ===================================================================== */

.cbhc-home,
.cbhc-page {
    font-family: var(--body-font);
    color: #222;
    line-height: 1.5;
}

.cbhc-home a,
.cbhc-page a {
    text-decoration: none;
}

.cbhc-home img,
.cbhc-page img {
    max-width: 100%;
    display: block;
}

.container_box {
    max-width: 1160px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* ---------- TOP PHONE BANNER ---------- */
.cbhc-phonebar {
    background: var(--white);
    text-align: center;
    padding: 14px 16px;
    font-size: 16px;
    color: var(--black);
}

.cbhc-phonebar a {
    color: var(--primary);
    font-size: 18px;
    white-space: nowrap;
}

/* ---------- HEADER ---------- */
.cbhc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 60px 20px 20px;
    flex-wrap: wrap;
}

.cbhc-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 140px;
}

.cbhc-social a {
    display: inline-flex;
    color: var(--primary);
    transition: opacity .2s;
}

.cbhc-social a:hover {
    opacity: .7;
}

.cbhc-social svg {
    width: 28px;
    height: 28px;
    display: block;
}

.cbhc-logo {
	display: block;
    flex: 0 0 auto;
    text-align: center;
    border: 1px solid #151515;
    padding: 8px 20px;
    max-width: 420px;
	width: 100%;
}

.cbhc-logo .cbhc-logo-title {
	display: block;
    font-family: var(--heading-font);
    font-size: 53px;
    line-height: 100%;
    color: #151515;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0px;
	width: 100%;
}

.cbhc-headphone {
    flex: 1;
    min-width: 160px;
    text-align: center;
    font-size: 22px;
    color: var(--primary);
    line-height: 160%;
    letter-spacing: 1px;
    font-weight: 400;
}

.cbhc-headphone a {
    color: var(--primary);
}
.cbhc-headphone a:hover{
	color: #000;
}

/* ---------- MENU PLACEHOLDER ---------- */
.cbhc-menu-placeholder {
    border-bottom: 3px solid var(--primary);
    text-align: center;
    padding: 14px;
    color: #999;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ---------- HERO ---------- */
.cbhc-hero {
    position: relative;
    width: 100%;
    height: 800px;
	margin-top: 40px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.cbhc-hero-overlay {
    width: 100%;
	max-width: 50%;
    margin-left: auto;
    background: #f1f3fccc;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    text-align: center;
}

.cbhc-eyebrow {
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 14px;
}

.cbhc-hero h1 {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 44px;
    line-height: 120%;
    margin: 0 0 18px;
    color: #151515;
}

.cbhc-hero p {
    font-size: 16px;
    max-width: 280px;
    margin: 0 auto 26px;
    color: #575757;
}

/* ---------- BUTTONS ---------- */
.cbhc-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 16px 34px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.cbhc-btn:hover {
	color: #fff !important;
    background: #628ae5;
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* ---------- SECTIONS ---------- */
.cbhc-section {
    padding: 40px 0px;
}

.cbhc-label {
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 32px;
}

.cbhc-section h2 {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    margin: 0 0 22px;
    color: #1b1b1b;
}

.cbhc-section .cbhc-about-text {
    max-width: 532px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: #5e5e5e;
}

/* ---------- GALLERY ---------- */
.cbhc-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cbhc-gallery img {
    width: 100%;
    height: auto;
}

/* ---------- SOCIAL SECTION ---------- */
.cbhc-social-section {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cbhc-social-section a {
    color: var(--primary);
    display: inline-flex;
    transition: opacity .2s;
}

.cbhc-social-section a:hover {
    opacity: .7;
}

.cbhc-social-section svg {
    width: 48px;
    height: 48px;
}

.cbhc-social-section .cbhc-yt {
    color: #ff0000;
}

/* ---------- PAGE TITLE ---------- */
.cbhc-page-title {
    text-align: center;
    padding: 64px 24px 0;
}

.cbhc-page-title h1 {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 42px;
    color: #222;
    margin: 0;
}

/* ---------- CONTACT ---------- */
.cbhc-contact {
    text-align: center;
}

.cbhc-contact .cbhc-intro {
    max-width: 690px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #5e5e5e;
}

.cbhc-contact h3 {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 1px;
    color: #1b1b1b;
    margin: 0 0 24px;
}

.cbhc-contact .cbhc-addr {
    font-size: 16px;
    color: #5e5e5e;
    margin-bottom: 24px;
}

.cbhc-contact .cbhc-links a {
    display: block;
    color: var(--primary);
    font-size: 16px;
    margin: 4px 0;
}
.cbhc-contact .cbhc-links a:hover{
	color: #000;
}

.cbhc-reveal-wrap {
    margin-top: 36px;
}

.cbhc-form-wrap {
    display: none;
    max-width: 760px;
    margin: 30px auto 0;
    text-align: left;
}

.cbhc-form-wrap.is-open {
    display: block;
}

.cbhc-form-wrap h3 {
    text-align: center;
}

.cbhc-cf7-field {
    margin-bottom: 26px;
}

.cbhc-cf7-field input[type=text],
.cbhc-cf7-field input[type=email],
.cbhc-cf7-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px 6px;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    outline: none;
}

.cbhc-cf7-field input:focus,
.cbhc-cf7-field textarea:focus {
    border-bottom-color: var(--primary);
}

.cbhc-cf7-field textarea {
    border: 1px solid #bbb;
    min-height: 150px;
    resize: vertical;
}

.cbhc-cf7-recaptcha-note {
    font-size: 12px;
    color: #595959;
    font-weight: 300;
    text-align: center;
    margin: 24px 0;
}

/* .cbhc-cf7-recaptcha-note a {
    color: var(--primary);
} */

.cbhc-cf7-actions p{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.cbhc-cf7-actions p br, 
.cbhc-cf7-actions .wpcf7-spinner{
	display: none;
}
.cbhc-cf7-actions input[type=submit] {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 16px 38px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

.cbhc-cf7-actions input[type=submit]:hover {
    background: #3358a8;
}

.cbhc-cf7-cancel {
    color: var(--primary);
    text-decoration: underline !important;
    cursor: pointer;
    font-size: 16px;
}

/* ---------- MAP ---------- */
.cbhc-map {
    width: 100%;
    line-height: 0;
}

.cbhc-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* ---------- CONTACT US PAGE ---------- */
.cbhc-contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.cbhc-contact-split .cbhc-contact-info {
    background: #f1f3fb;
    padding: 64px 56px;
    text-align: left;
}

.cbhc-contact-split .cbhc-contact-info h1 {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0 0 22px;
}

.cbhc-contact-split .cbhc-addr {
    font-size: 16px;
    color: #5e5e5e;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cbhc-contact-split .cbhc-links a {
    display: block;
    font-size: 16px;
    margin: 4px 0;
}

.cbhc-contact-split .cbhc-reveal-wrap {
    margin-top: 40px;
}

.cbhc-contact-split .cbhc-form-wrap {
    margin: 26px 0 0;
    max-width: none;
}

.cbhc-contact-split .cbhc-form-wrap h3 {
    text-align: left;
    font-size: 22px;
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 20px;
}

.cbhc-contact-split .cbhc-cf7-actions {
    justify-content: flex-start;
}

.cbhc-contact-split .cbhc-map {
    height: 100%;
}

.cbhc-contact-split .cbhc-map iframe {
    height: 100%;
    min-height: 560px;
}
.grid_box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px;
}

.cbhc-rates .content_box{
	text-align: center;
}
.cbhc-rates .cbhc-about-text{
	max-width: 725px !important;
	font-size: 18px;
}
.rates_per_hour{
	list-style: none;
	margin: 28px 0px;
}

.rates_per_hour li{
	font-size: 18px;
	font-weight: 700;
	color: #5e5e5e;
}

.cbhc_gallery_page .cbhc-reveal-wrap{
	text-align: center;
	margin-top: 24px;
}
.cbhc-social-grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 24px;
}

.item_box{
	position: relative;
	width: 100%;
	height: 100%;
}
.item_box .bg_img{
    height: 100%;
    max-height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hover_icon{
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: all 0.5s;
}

.item_box a:hover .hover_icon{
	opacity: 1;
}

.gallery_btn a{
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery_btn a:hover svg{
	fill: #000;
}
/* ---------- FOOTER ---------- */
.cbhc-footer {
    padding: 32px 20px;
    border-top: 1px solid #eee;
}

.cbhc-footer .cbhc-copy {
    max-width: 1160px;
    margin: 0 auto;
    color: #555;
    font-size: 14px;
    letter-spacing: .5px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
	.cbhc-hero{
		height: 600px;
		margin-top: 0px;
		background-position: center bottom;
	}
}


@media(min-width: 1025px) {

    .phone-number-mobile,
    .hamburger-menu,
    .mobile-menu, .mobile_logo {
        display: none;
    }

    .mobile-menu-wrapper {
        left: -250px !important;
    }
}

@media(max-width: 1024px) {

    .menu,
    .topbar .cbhc-logo,
    .topbar .cbhc-headphone {
        display: none;
    }

	.swiperHero .drag-center.drag-down {
		align-content: center;
		padding: 2% 0px !important;
	}

	.topbar #connect {
		grid-template-columns: auto;
		position: relative;
	}
	#main-header {
		background: #f1f3fc;
	}

    #connect, .cbhc-social {
        justify-content: center;
    }

    #site-navigation .mobile_nav_bar {
        order: 0;
    }

    #site-navigation {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 24px;
        justify-content: space-between;
    }

    #site-navigation .hamburger-menu {
        text-align: left;
        padding-left: 10px;
    }

    #site-navigation .phone-number-mobile {
        text-align: right;
        padding-right: 10px;
    }

    .menu-item-has-children:hover .sub-menu {
        display: none !important;

    }

    #main-header {
        padding: 10px !important;
    }

    .contact_box_left {
        margin: 0 auto 0 0;
    }
	.cbhc-section{
		padding: 20px 0px;
	}

}


@media (max-width:900px) {
	.cbhc-social-grid{
        grid-template-columns: 1fr 1fr;
	}
    .cbhc-contact-split {
        grid-template-columns: 1fr;
    }

    .cbhc-contact-split .cbhc-contact-info {
        padding: 40px 0px;
    }
	.contact_page .cbhc-contact-split .cbhc-contact-info{
		padding: 32px 20px
	}

    .cbhc-contact-split .cbhc-map iframe {
        min-height: 380px;
    }

    .cbhc-header {
		padding: 20px;
        justify-content: center;
        text-align: center;
    }

	.cbhc-logo .cbhc-logo-title{
		font-size: 42px;
	}
	.cbhc-section, .cbhc-footer .cbhc-copy{
		text-align: center;
	}
	.cbhc-social-section svg{
		width: 38px;
		height: 38px;
	}
	.cbhc-social-section{
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.cbhc-hero{
		height: 500px;
	}

	.navbar {
		padding: 10px 15px;
	}

	.navbar .logo img {
		height: 50px;
	}
}

@media(max-width: 700px) {
	.cbhc-hero{
		height: 100%;
		min-height: 400px;
	}
	.cbhc-map iframe{
		height: 300px;
	}
	.cbhc-logo .cbhc-logo-title{
		font-size: 32px;
	}
	.cbhc-section h2, .cbhc-contact h3{
		font-size: 20px;
	}
	.cbhc-hero-overlay {
		max-width: 100%;
	}
	.cbhc-hero-overlay{
		padding: 40px;
	}
	.hover_icon{
		opacity: 1;
	}
}

@media (max-width:600px) {
    .cbhc-logo .cbhc-logo-title {
        font-size: 26px;
    }

    .cbhc-hero h1 {
        font-size: 32px;
    }

    .cbhc-page-title h1 {
        font-size: 30px;
    }
	.grid_box, .cbhc-social-grid{
		grid-template-columns: 1fr;
	}
	
	.grid_box img{
		order: 2;
	}

    .cbhc-cf7-actions {
        flex-direction: column;
        gap: 16px;
    }
	body p, .cbhc-contact .cbhc-addr{
		font-size: 14px !important;
	}
	.cbhc-footer .cbhc-copy{
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	#site-navigation{
		grid-template-columns: 1fr 220px 1fr;
	}
	.cbhc-logo, .cbhc-footer{
		padding: 16px 20px;
	}
	
}