﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

:root {
    --first-color: #2b2669;
    --second-color: #ecc12b;
    --third-color: #ecc12b;
}

.bg-footer {
    background-color: var(--first-color);
}

.footer-container {
    padding-top: 1px;
    padding-bottom: 1px;
}
.footer-container p {
    font-size:0.8em;
}
.footer-container a {
    color: #fff;
}
.footer-container a:hover {
    color: #fff;
}



.main-menu {
    position: relative;
    color: var(--first-color) !important;
    text-decoration: none;
}

    .main-menu:hover {
        color: var(--first-color);
    }

    .main-menu::before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--second-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .main-menu:hover::before {
        transform: scaleX(1);
    }

    .main-menu.voucher {
        position: relative;
        color: var(--third-color) !important;
        text-decoration: none;
    }
    .main-menu.voucher::before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--first-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .main-menu.voucher:hover::before {
        transform: scaleX(1);
    }


.separator {
    width: 20%;
    height: 4px;
    background-color: var(--second-color);
    margin: 5px auto 20px auto;
}

.home-content-header{
    color: var(--first-color);
}

body {
    color: #484848;
}
h1, h2, h3, h4  {
    color: var(--first-color);
}

.homepage-menu-text {
    position: relative;
    color: var(--first-color) !important;
    text-decoration: none;
}

.homepage-menu-container {
    position: relative;
    color: var(--first-color) !important;
    text-decoration: none;
}

    .homepage-menu-container img:hover, .homepage-menu-container a:hover {
        color: var(--first-color);
        cursor: pointer;
    }

    .homepage-menu-container::before {
        content: "";
        position: absolute;
        display: block;
        width: 33%;
        margin-left:auto;
        margin-right:auto;
        text-align:center;
        left:0px;
        right:0px;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--second-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .homepage-menu-container:hover::before  {
        transform: scaleX(1);
    }

.btn-home-first {
    background-color: var(--first-color);
    color: #fff;
    border-radius: 15px;
}

    .btn-home-first:hover{
        background-color: #fff;
        color: var(--first-color);
        border-color: var(--first-color);
    }


.btn-home-second {
    background-color: var(--second-color);
    color: #fff;
    border-radius: 15px;
}

    .btn-home-second:hover {
        background-color: #fff;
        color: var(--second-color);
        border-color: var(--second-color);
    }

.gallery-picture{
    border: 1px solid #ced4da;
    max-height:254px;
}

.form-control.error {
    border: 1px solid red;
}

.btn-contact-us {
    background-color: var(--first-color);
    color: #fff;
    border-radius: 15px;
}

    .btn-contact-us:hover {
        background-color: #fff;
        color: var(--first-color);
        border-color: var(--first-color);
    }

.btn-portoblue {
    background-color: var(--first-color);
    color: #fff;
    border-radius: 15px;
}

    .btn-portoblue:hover {
        background-color: #fff;
        color: var(--first-color);
        border-color: var(--first-color);
    }  

label.error {
    color: red;
}