﻿:root {
    --primary: #F78D19; 
    --primary-rgb: 247, 141, 25;
    --secondary: #000000; 
    --brand-grey: #545D67; 
    --brand-light: #FFFFFF; 
    /*--primary: #1D315A;  DEEP NAVY BLUE */
}

@font-face {
    font-family: "klavika-web", sans-serif;
	font-weight: 400;
	font-style: normal;
}

@font-face {
    font-family: "klavika-web", sans-serif;
	font-weight: 400;
	font-style: italic;
}

@font-face {
    font-family: "klavika-web", sans-serif;
font-weight: 700;
font-style: normal;
}
@font-face {
    font-family: "klavika-web", sans-serif;
font-weight: 700;
font-style: italic;
}


@font-face {
    font-family: pragmatica-extended, sans-serif;
	font-weight: 800;
	font-style: normal;
}

body {
    font-family: "klavika-web";
}

.hr-icon {
    min-width: 240px;
}

/* #region Gradient */
.gradient-section {
    position: relative;
    color: white;
    z-index: 0; /* Important to allow pseudo-elements on top */
    overflow: hidden;
}

.top-section {
    background-color: #000000;
}

    .top-section::after {
        bottom: 0;
        background: linear-gradient(180deg,rgba(0, 0, 0, .05) 10%, rgba(0, 0, 0, .9) 80%, rgba(0, 0, 0, 1) 100%);
        height: 600px;
    }

.bottom-section {
    background-color: #ffffff;
}

    .bottom-section::before {
        top: 0;
        background: linear-gradient(360deg,rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, .9) 80%, rgba(0, 0, 0, 1) 100%);
        height: 600px;
    }



.btn-primary {
    color: var(--secondary) !important;
}

.bg-primary.text-white, .bg-primary .text-white, .text-brand-light {
    color: black !important;
}

.text-white-white {
    color: white !important;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    border-radius: 0 !important;
}

    .btn-primary:hover, .btn-primary:focus {
        background: var(--secondary);
        color: var(--primary);
        border-color: var(--primary);
    }

.text-secondary {
    color: var(--secondary) !important;
}
.text-secondary-Bershire {
    color: var(--secondary) !important;
}

.margaritaville-title {
    color: #307789 !important;
}
.btn-primary.margaritaville-btn {
    color: white;
}


@media screen and (max-width: 1400px) {
    .bottom-section::before, .top-section::after{
        height: 500px;
    }
}

@media screen and (max-width: 1200px) {
    .bottom-section::before, .top-section::after {
        height: 400px;
    }
}

@media screen and (max-width: 992px) {
    .bottom-section::before, .top-section::after {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .bottom-section::before, .top-section::after {
        height: 350px;
    }
}

@media screen and (max-width: 575px) {
    .bottom-section::before, .top-section::after {
        height: 200px;
    }
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-toggler {
    color: rgba(0, 0, 0, .55);
    border-color: rgba(0, 0, 0, .1);
}


/* Gradient overlay at top and bottom */
.gradient-section::before,
.gradient-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none; /* Ensure it doesn’t block content */
}

.gradient-content {
    position: relative;
    z-index: 3;
}

/* #endregion Gradient */


.font-heading {
    font-family: pragmatica-extended;
}

.homepage-video-background {
    position: relative;
    background-image: url('/berkshire/images/home/VideoHeader_2500.webp');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .homepage-video-background {
        background-image: url('/berkshire/images/home/VideoHeader_1600.webp');
    }
}

.bullseye-list li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    line-height: 30px;
    list-style: none;
}

    .bullseye-list li:before {
        display: block;
        flex-shrink: 0;
        width: 29px;
        height: 29px;
        margin-right: 10px;
        vertical-align: middle;
        background: url('/berkshire/images/Bullet.png') no-repeat left center;
        background-size: contain;
        content: '';
    }