﻿@font-face {
    font-family: 'HighlandsCoffee';
    src: url('UTM Alexander.ttf') format('truetype');
}

a:link,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
}

/* 🧵 STANDARD MODERN BROWSERS */
input::placeholder,
textarea::placeholder {
    color: #d1d3d4; /* Your desired color */
    opacity: 1; /* Reset Firefox’s default opacity */
    font-weight: normal;
    font-style: italic;
}

/* 🌐 WebKit / Blink Browsers (Chrome, Safari, Opera, Edge chromium) */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #d1d3d4;
    font-weight: normal;
    font-style: italic;
}

/* 🧩 Firefox 4–18 */
input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #d1d3d4;
    opacity: 1;
    font-weight: normal;
    font-style: italic;
}

/* 🧩 Firefox 19+ */
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #d1d3d4;
    opacity: 1;
    font-weight: normal;
    font-style: italic;
}

/* 🧼 Internet Explorer 10–11 */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #d1d3d4;
    font-weight: normal;
    font-style: italic;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    /*overflow: hidden;*/
}
img {
    max-width:100%;
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center; /* vertical */
}

.form-input {
    position:absolute;
    bottom:0;
    text-align:center;
}

.modal-content {
    background-color:#fbd2a6;
    width:100%;
}

.modal-footer {
   border-top:none;
}

.modal-body p {
    padding-left:5%;
    padding-right:5%;
    color: #660000;
    font-family:'HighlandsCoffee';
    font-size:13pt;
    text-align:center;
}

.modal-backdrop
{
    opacity:0.5 !important;
}

.flag {
    filter: grayscale(1); 
    margin-left:15px;
    cursor:pointer;
}

.logo {
    position: absolute;
    top: 50px;
    right: 100px;
}

.textbox-fill {
    color: #fff !important;
    width: 100%;
    border: 1px solid #fff; /* Light gray border */
    border-radius: 20px; /* Rounded corners */
/*    padding: 12px 20px;*/
    outline: none;
    background-color: transparent;
    text-align:center;
}

    .textbox-fill:focus {
        border-color: #fff; /* Blue border on focus */
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

.btn-ok {
  display: inline-block;
  border: none;
  font-size: 14px;
  padding: 12px 35px;
  border-radius: 10px;
  text-transform: uppercase;
  color: #fff;
  line-height: normal;
  cursor: pointer;
  text-align: center;  
}

.center {
  display: block;
  /*margin-left: auto;
  margin-right: auto;
  margin-bottom:-10px;*/
  width: 80%;
  cursor:pointer;
  margin:0 auto;
  height: 100%;
}

.flex-box {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* horizontal */
    align-items: center;      /* vertical */
    height: 100vh;            /* full viewport height */
}

.region-text {
    color:#ffffff;
    font-size:1.5rem;
    font-family: "Red Rose", serif;
    font-weight: bold;
    font-style: normal;
}

.detailed-text {
    color:#ffffff;
    font-size:1.3rem;
    font-family: "Red Rose", serif;
    font-style: normal;
    width: 60%;
}

.header-text {
    color:#000;
    font-size:1.2rem;
    font-family: "Red Rose", serif;
    font-style: normal;
    width: 100%;
    padding-left:5%;
    padding-right:5%;
    text-align:left;
}

.body-text {
    color: rgb(241,90,37);
    font-size: 1rem;
    font-family: "Red Rose", serif;
    font-weight: bold;
    font-style: normal;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
}

video {
    width:60%;
}

.card-box {
    background-color:#fff;
    border-radius:20px;
    width:90%;
    margin-top:3%;
    margin-left:5%;
    margin-right:5%;
    margin-bottom:3%;
}

.btn-access {
    border: none;
    background-color: #fff;
    font-family: "Red Rose", serif;
    font-weight: bold;
    font-style: normal;
    padding: 0.2rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    margin: 20px 0;
    display: inline-block;
}

.btn-access  > span {
    color: #000;
}

    .btn-access:focus {
        outline: none; /* Remove the focus outline */
        border: none; /* Optional: remove border completely */
    }


.container {
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    height:100%;
  }

.desktop{
    display:block;
}
    
.mobile {
    display:none;
}

.tablet {
    display:none;
}

/***********************************************/
@media only screen and (max-width: 767px) {
    .desktop{
        display:none;
    }
    
    .mobile {
        display:block;
    }

    .tablet {
        display:none;
    }

    .region-text{
        font-size:1.3rem;
    }

    .textbox-fill {
        width:90%;
    }

    video {
        width:90%;
    }

    .logo {
        width: 40%;
        top:20px;
    }

    .card-box {
        border-radius:10px;
        width:90%;
        margin-left:5%;
        margin-right:5%;
        margin-bottom:3%;
       margin-top:3%;
       padding:10px 0;
    }

    .detailed-text {
        font-size:1.1rem;
        width:100%;
    }

    .btn-access {
        font-size:1rem;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .desktop{
        display:none;
    }
    
    .mobile {
        display:none;
    }

    .tablet {
        display:block;
    }

    .textbox-fill {
        width:80%;
    }

    video {
        width:80%;
    }

    .region-text{
        font-size:1.3rem;
    }

    .card-box {
        border-radius:10px;
        width:90%;
        margin-left:5%;
        margin-right:5%;
        margin-bottom:3%;
       margin-top:3%;
       padding:10px 0;
    }

    .detailed-text {
        font-size:1.3rem;
        width:80%;
    }

    .btn-access {
        font-size:1rem;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and  (max-width: 1024px) {
     .desktop{
        display:none;
    }
    
    .mobile {
        display:none;
    }

    .tablet {
        display:block;
    }

    .textbox-fill {
        width:80%;
    }

    video {
        width:80%;
    }

    .region-text{
        font-size:2.5rem;
    }

    .card-box {
        border-radius:10px;
        width:80%;
        margin-left:10%;
        margin-right:10%;
        margin-bottom:3%;
       margin-top:3%;
       padding:10px 0;
    }

    .detailed-text {
        font-size:2.5rem;
        width:80%;
    }

    .btn-access {
        font-size:2rem;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {
    .desktop{
        display:none;
    }
    
    .mobile {
        display:none;
    }

    .tablet {
        display:block;
    }

    video {
        width:80%;
    }

    .textbox-fill {
        width:80%;
    }

    .region-text{
        font-size:1.3rem;
    }

    .card-box {
        border-radius:10px;
        width:90%;
        margin-left:5%;
        margin-right:5%;
        margin-bottom:3%;
       margin-top:3%;
       padding:10px 0;
    }

    .detailed-text {
        font-size:1rem;
        width:60%;
    }

    .btn-access {
        font-size:1rem;
        margin:10px 0;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}

