/* =========================================================
   GLOBAL VARIABLES
========================================================= */

:root {
    --gold: #c9942c;
    --gold-light: #e3b54f;
    --text: #f2f2f2;
    --border: rgba(255, 255, 255, 0.14);
}


/* =========================================================
   RESET / GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #090a0b;
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   BURGER MENU BUTTON
========================================================= */

.menu-toggle {
    position: fixed;
    z-index: 1100;
    left: 24px;
    top: 24px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 148, 44, 0.55);
    background: rgba(8, 9, 10, 0.86);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.25s;
}

.menu-toggle:hover {
    border-color: var(--gold);
    background: #111;
}

.menu-toggle span {
    width: 23px;
    height: 2px;
    background: #fff;
    display: block;
}


/* =========================================================
   SIDE MENU
========================================================= */

.side-menu {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    padding: 32px 28px 28px;
    background: linear-gradient(
        180deg,
        #101112 0%,
        #090a0b 100%
    );
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    box-shadow: 18px 0 45px rgba(0, 0, 0, 0.35);
}

.side-menu.open {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 18px;
    right: 20px;
    border: 0;
    background: transparent;
    color: #eee;
    font-size: 27px;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    z-index: 1150;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand {
    display: block;
    text-align: center;
    margin: 2px auto 28px;
    width: 180px;
}

.brand-monogram {
    width: 70px;
    height: 70px;
    margin: 0 auto 6px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -4px;
    position: relative;
}

.brand-monogram::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 19px;
    height: 1px;
    background: var(--gold);
}

.brand-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    letter-spacing: 1.5px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 8px;
    letter-spacing: 6px;
    color: #dedede;
    margin-top: 2px;
}

.brand-line {
    display: block;
    width: 34px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto 0;
}


/* =========================================================
   SIDE NAVIGATION
========================================================= */

.side-nav {
    display: flex;
    flex-direction: column;
}

.side-nav a {
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #f1f1f1;
    transition: 0.2s;
}

.side-nav a:hover,
.side-nav a.active {
    color: var(--gold-light);
    padding-left: 6px;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.side-social {
    display: flex;
    gap: 11px;
    justify-content: center;
    margin-top: 32px;
}

.side-social a,
.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-size: 14px;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    min-height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(6, 7, 8, 0.95) 0%,
            rgba(6, 7, 8, 0.72) 40%,
            rgba(6, 7, 8, 0.18) 72%,
            rgba(6, 7, 8, 0.08) 100%
        ),
        url("https://businessonline.website/executive-fairways/wp-content/uploads/2026/08/banner-image-1.png") right center / cover no-repeat;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 165px;
    background: linear-gradient(
        0deg,
        rgba(8, 9, 10, 0.9),
        transparent
    );
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 80% 36%,
        rgba(201, 148, 44, 0.12),
        transparent 42%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 25px;
    padding-bottom: 25px;
}

.hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    font-size: clamp(46px, 4.1vw, 76px);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.35);
}

.hero-content h1 span {
    color: var(--gold);
    font-weight: 500;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 640px;
    color: #f0f0f0;
}


/* =========================================================
   GOLD DIVIDERS
========================================================= */

.gold-rule {
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin: 25px 0;
}

.gold-rule.small {
    margin: 18px 0 22px;
}

.mini-rule {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    margin: 25px auto 0;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 15px 30px;
}

.btn-gold {
    background: linear-gradient(
        90deg,
        #bf8a24,
        #e1b54c
    );
    border: 1px solid #d7a53c;
    color: #fff;
}

.btn-gold:hover {
    background: #e0b24a;
    border-color: #e0b24a;
    color: #0b0b0b;
}

.btn-outline-light-custom {
    background: rgba(5, 5, 5, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
}

.btn-outline-light-custom:hover {
    background: #fff;
    color: #111;
}


/* =========================================================
   BENEFITS SECTION
========================================================= */

.benefits-section {
    background: linear-gradient(
        90deg,
        #15171b,
        #0c0d0f
    );
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border);
}

.benefit-col {
    border-right: 1px solid var(--border);
}

.benefit-col:last-child {
    border-right: 0;
}

.benefit-card {
    text-align: center;
    min-height: 285px;
    padding: 43px 34px 38px;
}

.benefit-icon {
    color: var(--gold);
    font-size: 42px;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    font-size: 19px;
    letter-spacing: 0.3px;
    margin-bottom: 13px;
}

.benefit-card p {
    font-size: 13px;
    line-height: 1.75;
    color: #d3d3d3;
    max-width: 235px;
    margin: 0 auto;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    border-bottom: 1px solid var(--border);
}

.about-image-wrap {
    min-height: 410px;
    background: #111;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    object-position: center;
}

.about-copy {
    background:
        linear-gradient(
            rgba(13, 14, 16, 0.94),
            rgba(13, 14, 16, 0.94)
        ),
        radial-gradient(
            circle at 15% 10%,
            #2b2b2b,
            transparent 40%
        );
}

.about-inner {
    max-width: 590px;
    padding: 70px 64px;
}

.eyebrow {
    text-transform: uppercase;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.7px;
    margin-bottom: 13px;
}

.about-inner h2,
.join-section h2 {
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 0.97;
}

.about-inner h2 {
    font-size: clamp(40px, 4vw, 59px);
}

.about-inner p {
    font-size: 14px;
    line-height: 1.8;
    color: #d7d7d7;
    max-width: 520px;
}


/* =========================================================
   JOIN SECTION
========================================================= */

.join-section {
    padding: 30px 0;
    background: linear-gradient(
        90deg,
        #0c0d0f,
        #181a1e
    );
    border-bottom: 1px solid var(--border);
}

.join-section h2 {
    font-size: clamp(34px, 3.2vw, 50px);
    margin: 0;
}

.join-section h2 span {
    color: var(--gold);
}

.join-section p {
    font-size: 13px;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0;
    max-width: 420px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #0b0c0e;
    padding: 24px 0;
    color: #cfcfcf;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-left: 5.5%;
    padding-right: 5.5%;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    min-width: 205px;
}

.footer-brand .small-logo {
    width: 42px;
    height: 42px;
    font-size: 24px;
    letter-spacing: -3px;
    margin: 0;
}

.footer-brand .small-logo::after {
    left: 7px;
    right: 7px;
    bottom: 11px;
}

.footer-brand strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    letter-spacing: 1px;
    display: block;
    line-height: 1;
}

.footer-brand span {
    font-size: 8px;
    letter-spacing: 5px;
}

.site-footer > a,
.site-footer span {
    font-size: 12px;
}

.site-footer i {
    color: var(--gold);
    margin-right: 6px;
}

.footer-social {
    display: flex;
    gap: 9px;
}

.footer-social a i {
    margin: 0;
}


/* =========================================================
   WORDPRESS INTEGRATION
========================================================= */

.hero-section {
    background-image:
        linear-gradient(
            90deg,
            rgba(6, 7, 8, 0.95) 0%,
            rgba(6, 7, 8, 0.72) 40%,
            rgba(6, 7, 8, 0.18) 72%,
            rgba(6, 7, 8, 0.08) 100%
        ),
        var(--ef-hero) !important;
}

.ef-side-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-side-menu-list li {
    margin: 0;
    padding: 0;
}

.ef-side-menu-list a {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #f1f1f1;
    transition: 0.2s;
}

.ef-side-menu-list a:hover,
.ef-side-menu-list .current-menu-item > a {
    color: var(--gold-light);
    padding-left: 6px;
}

.side-custom-logo img {
    max-width: 150px;
    height: auto;
}

.side-custom-logo .custom-logo-link {
    display: block;
}


/* =========================================================
   INNER PAGES
========================================================= */

.ef-inner-main {
    background: #0b0c0e;
    min-height: 70vh;
}

.ef-inner-hero {
    padding: 150px 0 70px;
    background:
        linear-gradient(
            90deg,
            rgba(6, 7, 8, 0.95),
            rgba(6, 7, 8, 0.65)
        ),
        url("https://businessonline.website/executive-fairways/wp-content/uploads/2026/08/banner-image-1.png") center / cover no-repeat;
    border-bottom: 1px solid var(--border);
}

.ef-inner-hero h1 {
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    color: #fff;
    margin: 0;
}

.ef-content-section {
    padding: 70px 0;
}

.ef-page-content,
.ef-post-card {
    max-width: 900px;
    margin: 0 auto;
    color: #d8d8d8;
    font-size: 15px;
    line-height: 1.8;
}

.ef-page-content h2,
.ef-page-content h3,
.ef-page-content h4,
.ef-post-card h2 {
    font-family: "Cormorant Garamond", serif;
    color: #fff;
}


/* =========================================================
   BLOG / POSTS
========================================================= */

.ef-post-card {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.ef-post-card h2 a:hover {
    color: var(--gold);
}

.ef-post-meta {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}


/* =========================================================
   WORDPRESS PAGINATION
========================================================= */

.navigation.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-numbers {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--border);
    margin: 0 3px;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}


/* =========================================================
   WORDPRESS ADMIN BAR FIX
========================================================= */

.admin-bar .menu-toggle {
    top: 56px;
}

.admin-bar .side-menu {
    top: 32px;
}


/* =========================================================
   RESPONSIVE - LARGE TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .benefit-col:nth-child(2) {
        border-right: 0;
    }

    .benefit-col:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .hero-section {
        min-height: 670px;
        background-position: 70% center;
    }

    .hero-content {
        padding-left: 32px;
        padding-right: 32px;
    }

    .about-inner {
        padding: 55px 38px;
    }

    .footer-container {
        justify-content: center;
        text-align: center;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .menu-toggle {
        left: 15px;
        top: 15px;
        width: 46px;
        height: 46px;
    }

    .side-menu {
        width: min(86vw, 315px);
    }

    .hero-section {
        min-height: 700px;
        background-position: 68% center;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
    }

    .hero-content {
        padding-left: 22px;
        padding-right: 22px;
        padding-top: 90px;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-content p br {
        display: none;
    }

    .benefit-col {
        border-right: 0;
        border-bottom: 1px solid var(--border) !important;
    }

    .benefit-card {
        min-height: auto;
        padding: 38px 28px;
    }

    .about-image-wrap,
    .about-image {
        min-height: 330px;
    }

    .about-inner {
        padding: 48px 26px;
    }

    .join-section {
        padding: 44px 22px;
        text-align: center;
    }

    .join-section p {
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer {
        padding: 30px 0;
    }

    .footer-container {
        flex-direction: column;
    }

}


/* =========================================================
   WORDPRESS MOBILE ADMIN BAR
========================================================= */

@media (max-width: 782px) {

    .admin-bar .menu-toggle {
        top: 61px;
    }

    .admin-bar .side-menu {
        top: 46px;
    }

}