/* GENERAL */

:root {
    --antonio: "Antonio", sans-serif;
    --antonio-700: 700;
    --antonio-600: 600;
    --antonio-500: 500;
    --antonio-400: 400;
    --antonio-300: 300;
    --antonio-200: 200;
    --antonio-100: 100;
    --drop-shadow: drop-shadow(1px 1px 1px rgba(0,0,0,.8));
    --red: #cc0000;
    --dark-red: #bd1c18;
    --grey: #747474;
    --dark-semitransparent: rgba(0,0,0,.1)
}
html {
    scroll-padding-top: 75px;
    scroll-behavior: smooth;
}
/* [id]::before {
    content: "";
    display: block;
    height: 75px;
    margin-top: -75px;
    visibility: hidden;
} */
body {
    overflow-x: hidden !important;
    height: 100%;
    overflow-x: hidden;
}

/* COLORS */

.text-red {
    color: var(--red);
}
.text-dark-red {
    color: var(--dark-red);
}
.bg-light-grey {
    background-color: #f1f1f1;
}
.bg-grey {
    background-color: var(--grey);
}
.text-grey {
    color: var(--grey);
}

/* TYPOGRAPHY */

h1, h2, h3 {
    font-family: var(--antonio);
}
p, .offcanvas .list-group-item, .btn {
    font-family: var(--antonio);
    font-weight: 300;
}
a {
    text-decoration: none;
}
.antonio {
    font-family: var(--antonio);
}
.antonio-700 {
    font-weight: 700;
}
.antonio-600 {
    font-weight: 600;
}
.antonio-500 {
    font-weight: 500;
}
.antonio-400 {
    font-weight: 400;
}
.antonio-300 {
    font-weight: 300;
}
.antonio-200 {
    font-weight: 200;
}
.antonio-100 {
    font-weight: 100;
}
a {
    text-decoration: none !important;
}

/* SIZES, BUTTON HOVER EFFECTS & SCROLL DOWN ANIMATION */

.vh-100 {
    height: 100dvh !important;
} 
.scroll-down-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    width: fit-content;
    height: auto;
    z-index: 1;
}
.chevron {
    position: absolute;
    width: 2.1rem;
    height: 0.48rem;
    opacity: 0;
    transform: scale(0.3);
    animation: move-chevron 3s ease-out infinite;
}
.chevron:first-child {
    animation: move-chevron 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
    animation: move-chevron 3s ease-out 2s infinite;
}
.chevron:before, .chevron:after {
    content: "";
    position: absolute;
    top: 10px;
    height: 100%;
    width: 50%;
    background: #cc0000;
}
.chevron:before {
    left: 0;
    transform: skewY(30deg);
}
.chevron:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
}
@keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }
    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }
    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}

/* NAVBAR */

#main-navbar-wrapper.navbar {
    top: 0;
    filter: drop-shadow(0px 1px 3px rgba(0,0,0,0));
    height: 76px !important;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    transition: .3s linear all;
}
.main-navbar-wrapper-scrolled {
    height: 76px !important;
    background-color: #f1f1f1 !important;
    filter: drop-shadow(0px 1px 3px rgba(0,0,0,.3)) !important;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    transition: .3s linear all;
}
.navbar-brand img {
    max-height: 50px;
    margin-left: 0;
}
.navbar-toggler {
    transition: .3s linear all;
}
.navbar-toggler:hover {
    background-color: #212121 !important;
    transition: .3s linear all;
}
.navbar-toggler:hover .menu-icon {
    color: #f1f1f1 !important;
}
.navbar-toggler:focus {
    outline: 0;
    box-shadow: none !important;
}
a.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: default;
}

/* OFFCANVAS */

.offcanvas-list {
    width: 100%;
}
.offcanvas-link {
    transition: .3s linear all;
}
.offcanvas-link::after {
    font-family: 'Material Icons'; 
    content: 'arrow_forward';
    font-size: 1.25rem;
    color: var(--dark-red);
    margin-left: 0px;
    vertical-align: middle;
    opacity: 0;
    transition: .3s linear all;
}
.offcanvas-link:hover::after {
    margin-left: 10px;
    opacity: 1;
    transition: .3s linear all;
}

/* SECTIONS */

@media (min-width: 1025px){
    #home, #home .row {
        height: calc(100dvh - 75px);
    }
}
.animated-grape  {
    max-width: 70% !important;
    width: 100%;
    height: auto;
}
.ipad-portrait {
    display: none;
}

/* MEDIA */

@media only screen and (max-width: 1366px) and (orientation: landscape) {
    img.main-logo {
        max-width: 60% !important;
    }
    .fixed-background-image {
        background-position: top center;
        background-attachment: scroll !important;
        height: auto !important;
        min-height: unset !important;
    }
}
@media (max-width: 1024px) and (orientation: portrait){
    .ipad-portrait {
        display: block;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 100% !important;
    }
}
@media (max-width: 1024px) and (orientation: landscape){
    .col-lg-6 {
        flex: 0 0 auto;
        width: 60% !important;
    }
}
@media (max-width: 700px) and (orientation: portrait){
    img.main-logo {
        max-width: 80% !important;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 100% !important;
    }
}
@media (max-width: 700px) and (orientation: landscape){
    img.main-logo {
        max-width: 80% !important;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 100% !important;
    }
}
@media (max-width: 700px) and (orientation: portrait){
    #home .row {
        margin-top: 0px;
        height: 100dvh !important;
    }
    img.main-logo {
        max-width: 50% !important;
    }
}
@media (max-width: 699px){
    #home .row {
        margin-top: 0px;
        height: 100dvh !important;
    }
    .offcanvas {
        width: 100% !important;
    }
    a.d-inline-block.btn.btn-lg.bg-dark.text-white.rounded-0 {
        display: block !important;
        float: none !important;
        margin: 0 auto !important;
    }
    img.img-fluid.wine-bottle {
        max-height: 70vh !important;
    }
    .animated-grape {
        max-width: 60% !important;
    }
    .fs-3 {
        font-size: calc(1.3rem + .3vw) !important;
    }
    p.home-description {
        font-size: 1.1rem !important;
    }
}