
/* CSS Properties for Brand Colors */
:root {
    --gw-black: #000000;
    --gw-dark-gray: #121212;
    --gw-medium-gray: #303030;
    --gw-light-gray: #909090;
    --gw-gold: #FFC700;
    --gw-gold-hover: #FFD53F;
    --gw-white: #FFFFFF;
    
    --font-primary: 'Raleway', Arial, Helvetica, sans-serif;
    --font-secondary: 'Merriweather', serif;
    
    --container-max: 1220px;
    --nav-max: 1440px;
}

/* Base Styles */
body {
    font-family: var(--font-secondary);
    background-color: var(--gw-black);
    color: var(--gw-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .btn, .nav-link, .navbar-brand {
    font-family: var(--font-primary);
}


/* Navigation Styles */
/*.transparent-nav {
    background: transparent !important;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.transparent-nav.scrolled {
    background: var(--gw-dark-gray) !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--gw-white) !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.current {
    color: var(--gw-gold) !important;
}

.dropdown-menu {
    background: var(--gw-dark-gray);
    border: 1px solid var(--gw-medium-gray);
    border-radius: 0;
}

.dropdown-item {
    color: var(--gw-white);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--gw-gold);
    color: var(--gw-black);
}*/











/* menu starts */
/* Transparent navbar that becomes solid on scroll */
.transparent-nav {
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .transparent-nav.scrolled,
    .transparent-nav.menu-open {
        background-color: rgba(0, 0, 0, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

/* Mobile menu open state */
@media (max-width: 991px) {
    .transparent-nav:has(.navbar-collapse.show),
    .transparent-nav:has(.navbar-collapse.collapsing) {
        background-color: rgba(0, 0, 0, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
}
/* Mega menu container */
.mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    width: 100vw;
    top: 75px; /* Adjust based on your navbar height */
    background: #000;
    padding: 2rem;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mega-menu-wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.mega-menu.show {
    display: block;
    border-top: solid 1px #aaaaaa;
}

.mega-menu-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mega-menu-section h6 {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-section a {
    color: #fff;
    font-size: 0.9em;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

    .mega-menu-section a:hover {
        color: #FFD700;
    }



.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.current {
    color: var(--gw-gold) !important;
}


    .nav-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

.nav-button-icon {
    transition: transform 0.2s ease;
}

.nav-button:hover .nav-button-icon {
    transform: translateX(3px);
}


.navbar-nav .nav-link {
    color: var(--gw-white) !important;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    margin-right: 15px;
}


/* Dropdown toggle active state */
.nav-link.dropdown-toggle.active {
    color: #FFD700 !important;
}



/* Mobile adjustments */
@media (max-width: 991px) {
    .mega-menu {
        position: static;
        border-radius: 0;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.95);
    }

    .mega-menu-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-button {
        margin-top: 1rem;
        justify-content: center;
    }
}




/* menu ends */



/* Skewed Button Styles */
.skewed-btn {
    background: var(--gw-gold);
    color: var(--gw-white);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transform: skewX(-15deg);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 0;
}

.skewed-btn:hover {
    background: var(--gw-gold-hover);
    color: var(--gw-black);
    transform: skewX(-15deg) translateY(-2px);
}

.skewed-btn i {
    transform: skewX(15deg);
}

.skewed-btn-outline {
    background: transparent;
    color: var(--gw-gold);
    border: 2px solid var(--gw-gold);
    font-weight: 600;
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transform: skewX(-15deg);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 0;
}

.skewed-btn-outline:hover {
    background: var(--gw-gold);
    color: var(--gw-black);
    transform: skewX(-15deg) translateY(-2px);
}

.skewed-btn-outline i {
    transform: skewX(15deg);
}

.text-yellow {
    color:#ffd700;
}

.gw-button-bordered {
    background: transparent; /* Transparent background */
    /*color: #ffd700;*/ /* Yellow border and text color */
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    padding-right: 30px;
    border: 1px solid #ffd700; /* Yellow border */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s, color 0.3s; /* Smooth transitions for hover */
}

    .gw-button-bordered:hover {
        background: #ffd700; /* Yellow background on hover */
        color: white; /* White text color on hover */
    }

.gw-input-bordered {
    border: 1px solid #111;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.nav-button {
    background: #ffd700; /* Yellow background */
    color: white; /* Text color */
    font-family: "Raleway", serif;
    font-weight: bold;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 28px;
    margin-left: 20px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    transition: background 0.3s;
}

    .nav-button span {
        margin: 0 5px; /* Add internal spacing for text */
    }

.nav-button-icon {
    margin-left: 10px; /* Space between text and icon */
}




.skew-button {
    background: #ffd700;
    color: white;
    font-family: "Raleway", serif;
    font-weight: bold;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 28px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    transition: background 0.3s;
}

.skew-button span {
    margin: 0 5px; /* Add internal spacing for text */
}

.skew-tag {
    /*background: var(--gw-dark-gray);*/
    background: var(--gw-medium-gray);
    color: var(--gw-gold);
    font-family: "Raleway", serif;
    font-weight: bold;
    font-size: 14px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 22px;
    padding-right: 25px;
    margin-bottom: 24px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    transition: background 0.3s;
}

    .skew-tag a {
        text-decoration: none;
        color: var(--gw-gold);
    }

    .skew-button span {
        margin: 0 5px; /* Add internal spacing for text */
    }






.skew-button-outline {
    background: transparent;
    color: var(--gw-gold);
    border: 2px solid var(--gw-gold);

    font-family: "Raleway", serif;
    font-weight: bold;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 28px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    transition: background 0.3s;
}

    .skew-button-outline span {
        margin: 0 5px; /* Add internal spacing for text */
    }

.skew-button-outline {
    margin-left: 10px; /* Space between text and icon */
}








/* Hero Section Styles */
.hero-section-full {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}


.hero-content-home {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content-tall {
    position: relative;
    z-index: 1;
    height: 60vh;
    display: flex;
    align-items: center;
}


.hero-content-small {
    position: relative;
    z-index: 1;
    height: 40vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 40vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    align-content: center;
    color: var(--gw-white);
    margin-bottom: 2rem;
}

/*.hero-section .hero-title {
    font-size: 3.5rem;
    text-align: center;
}*/


.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gw-white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-section-tall {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

    .hero-section-tall .hero-title {
        font-size: 3.5rem;
        text-align: center;
    }

.hero-section-small {
    position: relative;
    height: 40vh;
    overflow: hidden;
}



.hero-section-none {
    position: relative;
    height: 10vh;
    overflow: hidden;
}

.bg-recent-news {
    background-color: #121212;
}

.bg-black {
    background-color: #000;
}

.grey-border-top {
    border-top: solid 1px #333;
}

.grey-border-bottom {
    border-bottom: solid 1px #333;
}

.yellow-border-bottom {
    border-bottom: solid 1px var(--gw-gold);
}

/* Custom Ratio Classes*/
.ratio-9x16 {
    --bs-aspect-ratio: calc(16 / 9 * 100%);
}
/* 177.7778% */
.ratio-2x3 {
    --bs-aspect-ratio: calc(3 / 2 * 100%);
}


.ratio-portrait {
    /*--bs-aspect-ratio: calc(1 / 0.5 * 100%);*/
    /*--bs-aspect-ratio: calc(16 / 9 * 100%);*/
    --bs-aspect-ratio: calc(14 / 9 * 100%);
}


/* 150% */
.ratio-1x3 {
    --bs-aspect-ratio: 300%;
}
/* super tall */






/* Page Hero Background Image Container */
.rectangeimagecontent {
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 0;
}



/* Section Styles */

.section-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gw-white);
    text-align: center;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--gw-gold);
    margin: 0 auto 3rem;
}

.title-underline-left {
    width: 80px;
    height: 3px;
    background: var(--gw-gold);
    /*margin: 0 auto 3rem;*/
}

/* Content Block Styles */
.contentblock-section {
    background: var(--gw-black);
    padding: 5rem 0;
}

.contentblockblack-section {
    background: var(--gw-black);
    padding: 5rem 0;
}

.contentblockdarkgray-section {
    background: var(--gw-dark-gray);
    padding: 5rem 0;
}

.contentblockmediumgray-section {
    background: var(--gw-medium-gray);
    padding: 5rem 0;
}

.contentblock-content {
    font-size: 1rem;
    line-height: 1.8rem;
}

.contentblock-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gw-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contentblock-description {
    font-size: 1rem;
    color: var(--gw-white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contentblock-tag {
    background: var(--gw-gold);
    color: var(--gw-black);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}


/* Tile Styles - used for the 3 image block */
.contentblock-tile {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .contentblock-tile:hover {
        transform: translateY(-5px);
    }

.contentblock-tile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}




/* News Styles */
.news-content-section {
    background: var(--gw-black);
    padding: 5rem 0;
}

.news-content {
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.8;
}

.news-title {
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--gw-white);
    margin-bottom: 1rem;
}

.news-subtitle {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--gw-white);
    margin-bottom: 1rem;
}

.news-content h3 {
    color: #fff;
    text-decoration: none;
}

    .news-content a {
        text-decoration: none;
    }



.gw-ico-pdf::before {
    content: "\f1c1";
}



.text-read-more {
    color: var(--gw-gold);
    padding-left: 0;
    font-family: Raleway,sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
}

    .text-read-more a {
        color: var(--gw-gold);
    }

.read-more-link {
    font-family: "Raleway", serif;
    font-size: 1.25rem;
    font-weight: 500;
}

    .read-more-link a {
        color: var(--gw-gold);
    }

.yellow-border-bottom {
    border-bottom: solid 1px #ffd700;
}

/*.objectives-list {
    list-style: none;
    padding: 0;
}

.objectives-list li {
    color: var(--gw-white);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.objectives-list li::before {
    content: '✓';
    color: var(--gw-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}*/

/* Sub Navigation */
.sub-nav-section {
    background: var(--gw-black);
    padding: 4rem 0;
}

.sub-nav-title {
    color: var(--gw-white);
    font-weight: 600;
    margin-bottom: 2rem;
}

.sub-nav-card {
    text-decoration: none;
    color: inherit;
}

.sub-nav-item {
    background: var(--gw-dark-gray);
    border: 1px solid var(--gw-medium-gray);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.sub-nav-item:hover {
    background: var(--gw-medium-gray);
    transform: translateY(-3px);
    border-color: var(--gw-gold);
}

.sub-nav-item .fas {
    color: var(--gw-gold);
}

.sub-nav-item .card-title {
    color: var(--gw-white);
    font-weight: 600;
}

.sub-nav-item .card-text {
    color: var(--gw-light-gray);
    font-size: 0.9rem;
}


/* Footer Styles */
.footer-section {
    background: var(--gw-dark-gray);
    padding: 60px 0;
}

/* Partners Section */
.partners-heading {
    color: var(--gw-white);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    font-style: italic;
}

/*.partner-logo {
    max-height: 60px;
    max-width: 200px;
    height: auto;
    width: auto;
    object-fit: contain;
    margin: 0 1.5rem;
}*/

/* Navigation Columns */
.footer-logo {
    height: 80px;
    width: auto;
}

.footer-container {
    text-align: right;
    color: var(--gw-light-gray);
    font-size: 0.85rem;
    font-weight: 300;
    text-decoration: none;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
    line-height: 1.3;
    width: 95%;
}

    .footer-container a {
        font-family: "Raleway", sans-serif;
        color: var(--gw-light-gray);
        text-decoration: none;
    }

    .footer-container a:hover {
        color: var(--gw-gold);
        text-decoration: none;
    }



.footer-column-title {
    color: var(--gw-white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--gw-light-gray);
    font-size: 0.85rem;
    font-weight: 300;
    text-decoration: none;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.footer-link:hover {
    color: var(--gw-gold);
    text-decoration: none;
}


.coach-profile-columns {
    flex-direction: row;
    flex: 100%;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
}

.coach-profile-image-container {
    flex: 40%;
    justify-content: center;
    align-items: center;
    height: 400px;
    display: flex;
}

.coach-profile-spacer {
    flex: 1 0 2rem;
}

.coach-profile-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.tertiarytextspan {
    color: #ffc700 !important;
    padding-left: 0;
    font-family: Raleway, sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    text-decoration: none !important
}

.coach-profile-content-contacts-container {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
    display: flex;
}

.coach-profile-content-contacts-row {
    color: #fff;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: .5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    display: flex;
}

.coach-profile-content-contacts-icon {
    color: #ffc700;
    margin-right: 10px;
}

.h2explorepulloutcontainer {
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    display: flex;
}

.w-container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.explore-title {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 70vw;
    margin-top: 90px;
    margin-bottom: 120px;
}

.section-container {
    max-width: 1440px;
}


@media (max-width: 991.98px) {
    .footer-column-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .partners-heading {
        font-size: 1.5rem;
    }
    
    .partner-logo {
        max-height: 50px;
        max-width: 150px;
        margin: 0 1rem;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-column-title {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .contentblock-title {
        font-size: 2rem;
    }
    
/*    .about-image-container {
        padding-left: 0;
        margin-top: 2rem;
    }*/
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .contentblock-title {
        font-size: 1.8rem;
    }
    
    .tile-image {
        height: 250px;
    }
    
    /* Mobile Navigation */
    .navbar-collapse {
        background: var(--gw-dark-gray);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }
}

@media (max-width: 479.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        height: 80vh;
    }
    
    .tile-image {
        height: 200px;
    }

}

