﻿:root {
    --rtg-light-brown: #dfd5c8;
    --rtg-dark-brown: #56483A;
    --rtg-light-green: #a3ad69;
    --rtg-light-pink: #f16680;
    --rtg-very-light-pink: #fcdcdb;
    --rtg-main-text: #56483a;
}



/* OVERRIDE/SET DEFAULT FONTS */
body {
    font-family: 'Lato', sans-serif;
    color: var(--rtg-main-text);
    font-size: 16px !important;
    line-height: 1.5 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', sans-serif;
}

/* OVERRIDE/SET DEFAULT COLORS */
.btn-primary {
    background-color: var(--rtg-light-green);
    border-color: var(--rtg-light-green); /* Ensure the border color matches the hover background */
}

    .btn-primary:hover {
        background-color: var(--rtg-light-pink); /* Replace with your desired hover color */
        border-color: var(--rtg-light-pink); /* Ensure the border color matches the hover background */
    }


/* Scroll Fade In effect */
.Custom-Scroll {
    transform: translateY(-30px);
    opacity: 0;
    transition: 1s;
}

.Custom-Scroll-Show {
    transform: translateY(0px);
    opacity: 1;
}


/* REMOVE UNDERLINE FROM ANCHOR TAGS */
.no-underline-anchor {
    text-decoration: none;
}


/* STANDARDIZE ANCHOR TAGS */
.RTG_Link {
    color: var(--rtg-main-text) !important;
    text-decoration: underline;
}

    .RTG_Link:hover {
        color: var(--rtg-light-pink) !important;
        text-decoration: none;
    }


/* BOOSTRAP 5 - LIGHT BOX COLOR OVERRIDES */
.ratio {
    background-color: white !important;
}

.modal-body svg {
    fill: black;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23484848' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23484848' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

/* ------ */
/* HEADER */
/* ------ */
.navbar {
    position: relative;
}

/* ==== DESKTOP HOVER-ONLY DROPDOWNS ==== */
@media (min-width: 1200px) {
    /* 1) Hide all dropdown menus by default */
    .navbar .dropdown > .dropdown-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* 2) Show only the one you’re hovering over */
    .navbar .dropdown:hover > .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Tablet & up to XL (576px – 1199.98px): fixed-width, right-anchored overlay */
@media (min-width: 576px) and (max-width: 1199.98px) {
    .navbar-collapse {
        position: absolute !important; /* float above your page content */
        top: 100%; /* drop immediately below the bar */
        right: 0; /* pin its right edge under the toggler */
        left: auto; /* do NOT stretch left */
        width: 375px; /* whatever your ideal dropdown width is */
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        padding: 1rem;
        z-index: 1000;
    }

        .navbar-collapse .navbar-nav {
            flex-direction: column;
        }
}

/*  Collapse becomes an overlay dropdown on mobile    */
/* small-mobile: make the nav overlay span the whole screen */
@media (max-width: 575.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%; /* right under the navbar */
        left: 0; /* hug the left edge */
        right: 0; /* hug the right edge */
        width: 100%; /* fill the screen */
        max-width: none; /* override your 340px */
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        padding: 0.5rem 1rem;
        z-index: 1000;
    }

        .navbar-collapse .navbar-nav {
            flex-direction: column;
            text-align: left;
        }
}


/*  Shrink the brand image on small screens    */
.navbar-brand img {
    max-width: 250px;
    height: auto;
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        max-width: 140px;
    }
}

@media (max-width: 400px) {
    .navbar-brand img {
        max-width: 110px;
    }
}


/* ------ */
/* FOOTER */
/* ------ */
.footer {
    background: var(--rtg-light-brown);
    padding: 20px 0;
}

    .footer #divCopyright {
        font-family: 'Oxygen';
        font-size: 11px;
        line-height: 28px !important;
        word-wrap: break-word;
    }

    .footer #divFooterAwards img {
        max-width: 150px;
    }

    .footer a:not(.btn) {
        color: var(--rtg-main-text) !important;
        font-family: 'Oxygen';
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
    }

        .footer a:not(.btn):hover {
            color: var(--rtg-light-pink) !important;
            font-family: 'Oxygen';
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
        }

    .footer .social-icon {
        width: 40px;
        height: 40px;
        border: 2px solid black;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: black;
        transition: all 0.3s ease-in-out;
        background-color: transparent;
    }

        .footer .social-icon i {
            color: black;
            transition: all 0.3s ease-in-out;
        }

        .footer .social-icon:hover {
            background-color: black;
            color: black;
        }

            .footer .social-icon:hover i {
                background-color: black;
                color: white;
            }

    .footer #divTnCPP a {
        font-weight: 400;
        font-size: 15px;
    }



/* ---- */
/* MISC */
/* ---- */

/* PINK CHECKMARK SVG IMAGE */
.pink-checkmark {
    min-width: 25px;
    height: auto;
    fill: var(--rtg-light-pink);
    max-width: 99%;
    filter: saturate(2.0);
}




.imgFancyRoundedCornersDropShadow {
    border-radius: 50px;
    filter: drop-shadow(2px 2px 10px #222);
}