﻿:root {
    --navbar-height: 0px;

    /* COLORS */
    --snow: #f5f0f0;
    --white-smoke: #f8f8f8;
    --white-smoke-2: #f1f1f1;
    --black: black;
    --black-2: #333;
    --grey: #8e8987;
    --grey-2: rgba(142, 137, 135, .11);

    /* Instead of Pure White #FFFFFF */
    --off-white: #FAF9F6;
    --alice-blue: #F0F8FF;
    --pearl: #FBFCF8;
    --egg-shell: #FFF9E3;
    --coconut: #FFF1E6;
    --parchment: #FBF5DF;
    --creame: #FEF5EA;
    --candy-floss: #FFEDFA;
    --lavender-whip: #FAF5FF;
    --cold-steel: #E3EDF8;
    --mojito-breeze: #FFEDFA;
    --cloud-wisp: #E7F6FF;

    /* Instead of Pure Black #000000 */
    --light-black: #121212;
    --medium-black: #0E0E10;
    --dark-black: #0B0B0C;

    /* THEMES */
    /* Theme - Green/Blue */
    --green-blue-1: #213A57;
    --green-blue-2: #0B6477;
    --green-blue-3: #14919B;
    --green-blue-4: #0AD1C8;
    --green-blue-5: #45DFB1;
    --green-blue-6: #80ED99;
    /* Theme - Orange/Violet */
    --orange-violet-1: #F4E7FB;
    --orange-violet-2: #F3DCDC;
    --orange-violet-3: #F5BCBA;
    --orange-violet-4: #E3AADD;
    --orange-violet-5: #C8A8E9;
    --orange-violet-6: #C3C7F3;
    /* Theme - Rainbow */
    --rainbow-1: #EF476F;
    --rainbow-2: #F78C6B;
    --rainbow-3: #FFD166;
    --rainbow-4: #06D6A0;
    --rainbow-5: #118AB2;
    --rainbow-6: #073B4C;
    /* Theme - Khaki/White */
    --khaki-white-1: #E9F5DB;
    --khaki-white-2: #CFE1B9;
    --khaki-white-3: #B5C99A;
    --khaki-white-4: #97A97C;
    --khaki-white-5: #87986A;
    --khaki-white-6: #718355;
    /* Theme - Red/Grey */
    --red-grey-1: #A36361;
    --red-grey-2: #D3A29D;
    --red-grey-3: #E8B298;
    --red-grey-4: #EECC8C;
    --red-grey-5: #BDD1C5;
    --red-grey-6: #9EABA2;
}

/* Fonts */
@font-face {
    font-family: 'Nevolasty';
    src: url(/Media/Fonts/Nevolasty/NevolastyLight-MVPYx.otf);
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url(/Media/Fonts/OpenSans/static/OpenSans-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url(/Media/Fonts/Poppins/Poppins-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url(/Media/Fonts/Raleway/static/Raleway-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Suissnord';
    src: url(/Media/Fonts/Suissnord/Suissnord-aJR9.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Ace Sans';
    src: url(/Media/Fonts/AceSansFree.otf);
    font-display: swap;
}

.hidden{
    display: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, header, body, footer, section, div, span, p, a {
    padding: 0;
    margin: 0;
}
body {
    color: var(--white-smoke);
    font-family: 'Open Sans', sans-serif;
}

/*
h1, .h1 {
    font-size: 5rem;
}

h2, .h2 {
    font-size: 3.5rem;
}

h3, .h3 {
    font-size: 3rem;
}

h4, .h4 {
    font-size: 2.5rem;
}

h5, .h5 {
    font-size: 2rem;
}

h6, .h6 {
    font-size: 1.5rem;
}
*/

section {
    /* Full height */
    max-height: 100vh;
    max-height: calc(100vh - var(--navbar-height));
}


section#hero {
    /* The image used */
    background-image: url("/media/images/melon.jpg");
    background-image: url("/media/images/63729072b366898bb6bd27d4_BostonPhoto-min.jpg");

    /* Full height */
    height: calc(100vh - var(--navbar-height));

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section#o-mne.hero div.mask {
    height: inherit;
    background-color: #00000080;
}

/*
html {
    scroll-padding-top: 67px; height of sticky header
}

.body {
    padding-top: 4.5rem;
}
*/

/* Navbar */
#navbar-padding {
    padding-top: var(--navbar-height);
}

.navbar {
    backdrop-filter: blur( 1rem );
    -webkit-backdrop-filter: blur( 1rem );
    height: 6rem;
}
nav#navbar {
    background-color: #00000000;
    box-shadow: none;
}
ul.left {
    padding-inline-start: 40px;
    padding-inline-end: 0;
}
ul.right {
    padding-inline-start: 0;
    padding-inline-end: 40px;
}
nav ul li a.nav-link-desktop {
    font-size: 2rem;
}
nav ul li a.nav-link-desktop:hover, nav ul li a.nav-link-desktop.active {
    background-color: #00000000 !important;
    color: var(--red-grey-4);
    transition: color 0.15s;
}
ul#nav-mobile.sidenav li a.nav-link-mobile {
    border-radius: 0;
}
ul#nav-mobile.sidenav li a.nav-link-mobile:hover, ul#nav-mobile.sidenav li a.nav-link-mobile:focus {
    background-color: var(--orange-violet-2);
    transition: background-color 0.25s;
}
.nav-link-mobile {
    font-size: 1rem !important;
}
.hvr-underline-from-center:before {
    background: var(--red-grey-4);
    height: 4px;
    transition-duration: 0.15s;
}
.hvr-underline-from-left:before {
    background: var(--red-grey-4);
    height: 4px;
    transition-duration: 0.25s;
}

.section-textarea{
    background-color: var(--red-grey-2);
}

.content {
    width: 100%;
    /* max-height: 100vh; */
    /* aspect-ratio: 1 / 1; */
    overflow: hidden;
}
.content-text {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-divider{
    margin: 0 0.5rem;
    width: 0.08em;
    background-color: rgba(255,255,255,0.6);
}

.hero-box {
    backdrop-filter: blur( 1rem );
    border: 1px solid var(--red-grey-4);
    border-radius: 3rem;
    place-self: center;
}

.contact-col-icon {
    place-self: center;
}
.contact-col-text {
    align-self: center;
}

.contact-icon {
    display: flex;
    padding: 0.5rem;
    color: #FFFFFF;
    font-size: 5rem;
    border-radius: 50%;
    background-color: var(--red-grey-4);
    transition: background-color 0.2s;
}

.contact-icon:hover {
    color: #FFFFFF;
}

a.contact-item {
    text-decoration: none;
    color: var(--white-smoke) !important;
    transition-duration: 0.2s;
}
a.contact-item:hover {
    color: var(--red-grey-4) !important;
}

.contact-item-text {
    margin: 0;
}

.contact-map {
    border: 0; /* original */
    width: 100%;
    height: 100%;
}

.contact-form{
    max-width: 995px;
}

div.form-floating label{
    color: rgba(128, 128, 128, 1) !important;
}

.form-message{
    height: 150px !important;
}

textarea {
    resize: none;
}

.submit-button {
    padding: 0.5rem;
    border: 1px solid #495057;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}
.submit-button:hover {
    text-decoration: none;
}

.submit-button-icon{
    font-size: 2rem;
}

.field-validation-error {
    color: var(--bs-danger);
}

#FormSubmitSuccess{
    color: var(--bs-success);
}

#FormSubmitFail{
    color: var(--bs-danger);
}
/*
:root {
    --f-carousel-width: 100%;
    --f-carousel-height: 75vh;
    --f-carousel-color-red: #ff3520;
}
.f-carousel {
    --f-carousel-slide-width: 100%;
    --f-carousel-spacing: 0.5rem;
    --f-button-width: 3rem;
    --f-button-height: var(--f-button-width);
    --f-button-svg-width: calc(var(--f-button-width)/2);
    --f-button-svg-height: calc(var(--f-button-height)/2);
    --f-button-svg-stroke-width: 2.5;
    --f-button-color: rgb(71, 85, 105) !important;
    --f-button-bg-site: #fff !important;
    --f-button-hover-bg-site: #eee !important;
    --f-button-active-bg-site: #ddd !important;
    --f-button-border-radius: 50%;
    --f-button-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%), 0 3px 7px -3px rgb(0 0 0 / 30%);
    display: flex;
    justify-content: center;
    height: var(--f-carousel-height);
}
.f-carousel, .f-thumbs{
    max-width: var(--f-carousel-width);
    margin: 0 auto;
}
.f-carousel-slide {
    width: 100%;
}
.f-carousel__slide img{
    max-height: var(--f-carousel-height);
    max-width: 100%;
    height: auto;
}
.f-carousel__track{
    align-items: center;
}
.f-progress{
    background-color: var(--f-carousel-color-red) !important;;
}
div.f-carousel__nav button.f-button{
    background: var(--f-button-bg-site) !important;
}
div.f-carousel__nav button.f-button:hover{
    background: var(--f-button-hover-bg-site) !important;
}
div.f-carousel__nav button.f-button:active{
    background: var(--f-button-active-bg-site) !important;
}
div.f-carousel__nav button.f-button.is-prev{
    left: calc(-1*var(--f-button-width)/2) !important;
}
div.f-carousel__nav button.f-button.is-next{
    right: calc(-1*var(--f-button-width)/2) !important;
}

:root {
    --owl-button-font-size: 3rem;
    --owl-button-width: var(--owl-button-font-size);
    --owl-button-height: var(--owl-button-font-size);
    --owl-button-svg-width: calc(var(--owl-button-width)/2);
    --owl-button-svg-height: calc(var(--owl-button-height)/2);
    --owl-button-svg-stroke-width: 2.5;
    --owl-button-color: rgb(71, 85, 105);
    --owl-button-hover-color: #706f6c;
    --owl-button-active-color: var(--owl-button-hover-color);
    --owl-button-bg: #fff;
    --owl-button-hover-bg: #eee;
    --owl-button-active-bg: #ddd;
    --owl-button-border-radius: 50%;
    --owl-button-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%), 0 3px 7px -3px rgb(0 0 0 / 30%);
}
div.owl-carousel.owl-theme{
    width: 100%;
}
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.owl-stage {
    justify-content: center;
}
.owl-item{
    margin-right: 10px;
}
.owl-item img{
    margin-right: -10px;
}
.owl-carousel .caption {
    text-align: center;
}
img.owl-lazy{
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 75vh;
}
.owl-theme .owl-nav {
    justify-content: center;
}
.owl-theme .owl-dots .owl-dot span {
    background: var(--owl-button-bg);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--owl-button-color);
}
button.owl-prev, button.owl-next{
    width: var(--owl-button-width);
    height: var(--owl-button-height);
    color: #00000000;
    background: none !important;
    margin: 2px !important;
    border-radius: 50% !important;
    box-shadow: var(--owl-button-shadow);
}
button.owl-prev i, button.owl-next i {
    font-size: var(--owl-button-font-size);
    width: var(--owl-button-width);
    height: var(--owl-button-height);
    border-radius: 50%;
    color: var(--owl-button-color);
    background-color: var(--owl-button-bg);
    transition: color 0.25s, background-color 0.25s;
    line-height: 1.05;
}
button.owl-prev i:hover, button.owl-next i:hover {
    color: var(--owl-button-hover-color);
}
button.owl-prev i:active, button.owl-next i:active {
    color: var(--owl-button-active-color);
    background-color: var(--owl-button-active-bg);
}
button.owl-carousel-btn {
    color: var(--owl-button-color);
    background-color: var(--owl-button-bg);
    border: none;
    border-radius: 0.5rem;
    padding: 0;
    width: calc(2*var(--owl-button-height));
    height: var(--owl-button-height);
    transition: background-color 0.25s;
    align-items: center;
}
button.owl-carousel-btn:hover {
    color: #000;
}
button.owl-carousel-btn:active {
    background-color: var(--owl-button-active-bg);
}
button.owl-carousel-btn i.bx {
    font-size: var(--owl-button-font-size);
    line-height: 1.05;
}

:root {
    --swiper-navigation-size: 44px;
    --swiper-navigation-top-offset: 50%;
    --swiper-navigation-sides-offset: 10px;
    --swiper-navigation-color: var(--swiper-theme-color);
    --swiper-pagination-color: var(--swiper-theme-color);
    --swiper-pagination-left: auto;
    --swiper-pagination-right: 8px;
    --swiper-pagination-bottom: 8px;
    --swiper-pagination-top: auto;
    --swiper-pagination-fraction-color: inherit;
    --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
    --swiper-pagination-progressbar-size: 4px;
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-width: 8px;
    --swiper-pagination-bullet-height: 8px;
    --swiper-pagination-bullet-inactive-color: #000;
    --swiper-pagination-bullet-inactive-opacity: 0.2;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-vertical-gap: 6px;
    --swiper-scrollbar-border-radius: 10px;
    --swiper-scrollbar-top: auto;
    --swiper-scrollbar-bottom: 4px;
    --swiper-scrollbar-left: auto;
    --swiper-scrollbar-right: 4px;
    --swiper-scrollbar-sides-offset: 1%;
    --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
    --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
    --swiper-scrollbar-size: 4px;
}
.swiper {
    width: auto;
    max-height: calc(75vh + 2.2rem);
}
div.swiper-wrapper {
    padding-bottom: 2.2rem;
}
img.swiper-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}
img.swiper-img-thumb {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 20vh;
    object-fit: contain;
}

.gallery-item {
    filter: grayscale(100%);
    max-height: 400px;
    padding: 50px;
}

.gallery-item:hover {
    filter: grayscale(0%);
    padding: 0;
}
*/
/* fade image in after load */
.lazyload,
.lazyloading {
    opacity: 0;
    min-height: 200px;
}

.lazyloaded {
    opacity: 1;
    transition: opacity 300ms;
}

img.lazyload:not([src]) {
    visibility: hidden;
}

footer.page-footer {
    border: none;
    font-size: 2rem;
}

.footer-text {
    text-decoration: none;
    color: var(--red-grey-4) !important;
    vertical-align: unset;
    overflow: unset;
}
