
/* Regular TomatoPasta */
@font-face {
    font-family: 'TomatoPasta';
    src: url('fonts/TomatoPasta.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* Bold TomatoPasta */
@font-face {
    font-family: 'TomatoPasta';
    src: url('fonts/TomatoPasta-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Eve Of Ocean';
    src: url('fonts/Eve Of Ocean.woff2') format('woff2'),
    url('fonts/Eve Of Ocean.woff') format('woff'),
    url('fonts/Eve Of Ocean_ttf.ttf') format('truetype'),
    url('fonts/Eve Of Ocean_otf.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.font-eve-ocean {
    font-family: 'Eve Of Ocean', sans-serif;
}
.font-tomato-pasta {
    font-family: 'TomatoPasta', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=M+PLUS+Rounded+1c:wght@300;400;700;900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.m-plus-rounded-1c-regular,.font-montserrat {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, strong {
}

:root {
    --color-earth:#534d32;
    --color-light-earth:#958f77;
    --color-clay:#8b431a;
    --color-sky:#90acab;
    --color-sand:#f2e8dc;

    --color-clay-rgb: 139, 67, 26;
    --color-clay-light: #a0552a;
    --color-clay-dark: #6b3315;
}

.swatch {
    height:120px;
    border-radius:0.75rem;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    color:#fff;
    box-shadow:0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
    text-align:center;
}

.earth { color:var(--color-earth); }
.light-earth { color:var(--color-light-earth); }
.clay { color:var(--color-clay); }
.sky { color:var(--color-sky); }
.sand { color:var(--color-sand); color:#333; }

.bg-earth { background-color:var(--color-earth); }
.bg-light-earth { background-color:var(--color-light-earth); }
.bg-clay { background-color:var(--color-clay); }
.bg-sky { background-color:var(--color-sky); }
.bg-sand { background-color:var(--color-sand); color:#333; }

.hex { font-size:0.85rem; opacity:0.85; }

body {
}
h1, h5, h6, h7{
    color:var(--color-clay);
}
p {
    color:var(--color-clay);
}



.panel {
    padding: 20px 60px;
}


.page-offset {
    margin-top:40px;
}

/* Large screens (default) */
.panel {
    padding: 20px 60px;
}
.page-offset {
    margin-top: 60px;
}

.carousel-inner-frame {
    border:40px solid rgb(51,46,11);
}



/* Small screens (sm: 576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .panel {
        padding: 12px 30px;
    }
    .page-offset {
        margin-top: 90px;
    }
}

/* Medium screens (md: 768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .panel {
        padding: 15px 40px;
    }
    .page-offset {
        margin-top: 90px;
    }
}

/* Mobile screens (xs: <576px) */
@media (max-width: 575.98px) {
    .panel {
        padding: 10px 20px;
    }
    .page-offset {
        margin-top: 90px;
    }

    .carousel-inner-frame {
        border:5px solid rgb(51,46,11);
    }

}




.panel h1 {
    margin: 35px 0;
    letter-spacing:3px;
}
.panel .display-3 {
    Xmargin: 35px 0;
    letter-spacing:3px;
}




.panel p {
    font-weight:300;
}

.card-info {
    /* d-flex flex-column align-items-center text-center  */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color:var(--color-clay);
}
.card-info img.icon{
    width:150px;
}
.card-info header {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 300;
    letter-spacing:1px;
    font-style: normal;
    font-size:20px;
    text-transform:uppercase;
    margin-bottom:10px;
}
.card-info div {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size:16px;
}

html, body {
    Xheight: 100%;
    Xmargin: 0;
    Xpadding: 0;
}

.hero-bg {
    background-image: url('/css/custom/brl/img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh; /* 80% of screen height */
    width: 100%;
    position: relative;
}


.logo-white-bg {
    position: relative;
    Xheight: 80vh;
    /* optional fallback background color */
}

.logo-white-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('/css/custom/brl/logos/brl-white-logo.png');
    background-size: 40% auto;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.05; /* 50% opacity */
    pointer-events: none; /* so clicks go through */
}



.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030; /* Above other content */
    Xbackground: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding:8px 0 ;
}

body.has-fixed-header {
    padding-top: 80px; /* Account for header height */
}

.logo-homepage {
    max-width:400px;
}




.btn-outline-white {
    display: inline-block;       /* Make it behave like a button */
    border: 2px solid #fff;      /* White border */
    color: #fff;                 /* White text */
    border-radius: 0;            /* No rounded corners */
    background-color: transparent;
    font-weight: 700;            /* Bold text */
    text-decoration: none;       /* Remove underline */
    padding: 0.5rem 1rem;        /* Optional padding */
    transition: all 0.2s ease;
    text-transform:uppercase;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background-color: #fff;      /* White background on hover */
    color: #000;                 /* Dark text on hover */
    border-color: #fff;          /* Keep border white */
    text-decoration: none;       /* Ensure no underline on hover */
}



.btn-outline-clay {
    display: inline-block;       /* Make it behave like a button */
    border: 2px solid var(--color-clay);      /* White border */
    color:var(--color-clay);           /* White text */
    border-radius: 0;            /* No rounded corners */
    background-color: transparent;
    font-weight: 700;            /* Bold text */
    text-decoration: none;       /* Remove underline */
    padding: 0.5rem 1rem;        /* Optional padding */
    transition: all 0.2s ease;
    text-transform:uppercase;
}

.btn-outline-clay:hover,
.btn-outline-clay:focus {
    background-color: var(--color-clay);      /* White background on hover */
    color: #000;                 /* Dark text on hover */
    border-color: var(--color-clay);          /* Keep border white */
    text-decoration: none;       /* Ensure no underline on hover */
}


.btn-clay {
    display: inline-block;       /* Make it behave like a button */
    border: 2px solid var(--color-clay);      /* White border */
    color:white;           /* White text */
    border-radius: 0;            /* No rounded corners */
    background-color: var(--color-clay);
    font-weight: 700;            /* Bold text */
    text-decoration: none;       /* Remove underline */
    padding: 0.5rem 1rem;        /* Optional padding */
    transition: all 0.2s ease;
    text-transform:uppercase;
}

.btn-clay:hover,
.btn-clay:focus {
    border-color:white;
    background-color: var(--color-clay);      /* White background on hover */
    color: white;                 /* Dark text on hover */
    Xborder-color: var(--color-clay);          /* Keep border white */
    text-decoration: none;       /* Ensure no underline on hover */
}










.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
}



/* view gallery */

:root{
    --duration: 22s;
    --gap: 1rem;
}
.scroller-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0.5rem 0;
}
.scroller {
    display: flex;
    gap: var(--gap);
    align-items: stretch;
    will-change: transform;
    animation: scroll-left linear infinite;
    animation-duration: var(--duration);
}
@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.scroller .tile {
    flex: 0 0 calc((100% / 4) - (var(--gap) * 3 / 4));
    Xborder-radius: .5rem;
    overflow: hidden;
    min-height: 160px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}
@media (max-width: 992px) {
    .scroller .tile { flex: 0 0 calc((100% / 3) - (var(--gap) * 2 / 3)); }
}
@media (max-width: 768px) {
    .scroller .tile { flex: 0 0 calc((100% / 2) - (var(--gap) / 2)); }
}
@media (max-width: 480px) {
    .scroller .tile { flex: 0 0 100%; }
}
.scroller .tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.scroller-wrap:hover .scroller,
.scroller-wrap:focus-within .scroller {
    animation-play-state: paused;
}

/* Button overlay */
.btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* above images */
}












/* Custom hamburger icon styles */
.hamburger-icon {
    width: 25px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    color: white;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-icon span:nth-child(3) {
    bottom: 0;
}

/* Animated hamburger to X transformation */
.hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1.5px;
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1.5px;
}

/* Custom navbar styling */
.navbar-brand {
    font-weight: 600;
    color: var(--color-clay) !important;
}

/* Offcanvas styling */
.offcanvas-header {
    border-bottom: 1px solid rgba(var(--color-clay-rgb), 0.2);
    background-color: rgba(var(--color-clay-rgb), 0.05);
}

.offcanvas-title {
    color: var(--color-clay);
}

.offcanvas-body .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
    color: var(--color-clay-dark);
}

.offcanvas-body .nav-link:hover {
    background-color: rgba(var(--color-clay-rgb), 0.1);
    color: var(--color-clay);
}

.offcanvas-body .nav-link.active {
    background-color: rgba(var(--color-clay-rgb), 0.15);
    color: var(--color-clay);
    font-weight: 500;
}

/* Responsive hamburger button */
.hamburger-btn {
    border: none;
    background: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.hamburger-btn:hover {
    background-color: rgba(var(--color-clay-rgb), 0.1);
}

.hamburger-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(var(--color-clay-rgb), 0.25);
}

/* Custom button styling */
.btn-clay {
    background-color: var(--color-clay);
    border-color: var(--color-clay);
    color: white;
}

.btn-clay:hover {
    background-color: var(--color-clay-dark);
    border-color: var(--color-clay-dark);
    color: white;
}

.btn-outline-clay {
    border-color: var(--color-clay);
    color: var(--color-clay);
}

.btn-outline-clay:hover {
    background-color: var(--color-clay);
    border-color: var(--color-clay);
    color: white;
}