﻿:root {
    --primary: #000000; /* DEEP NAVY BLUE */
    --primary-rgb: 29, 49, 90;
    --secondary: #E5C993; /* CHAMPAGNE GOLD */
    --brand-grey: #484645; /* CHARCOAL */
    --brand-light: #CECECE; /*  SILVER */
    /*--primary: #1D315A;  DEEP NAVY BLUE */
}

@font-face {
    font-family: "New-Frank";
    src: url('/berkshire/fonts/New-Frank/New Frank Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "New-Frank";
    src: url('/berkshire/fonts/New-Frank/New Frank Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "New-Frank";
    src: url('/berkshire/fonts/New-Frank/New Frank Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}


/*@font-face {
    font-family: "Petersburg";
    src: url(/berkshire/fonts/Petersburg/Petersburg Italic.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}*/

body {
    font-family: "New-Frank";
}


/* #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, 0) 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 {
    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(--primary) !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;
    }
}

/* 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: "New-Frank";
}

.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: '';
    }