﻿.btn_blue {
  background-color: #ecb24b;
  padding: 10px;
  color: white;
  width: 200px;
  clip-path: unset !important;
  border: none;
  border-radius: 5px;
}

.btn_transparent {
  border: 1px solid white;
  padding: 10px;
  color: #ecb24b;
  width: 200px;
  clip-path: unset !important;
  border: none;
  background-color: lightgray;
}

body {
  font-size: calc(12px + 0.390625vw);
}

html {
  font-size: calc(10px + 0.390625vw);
}

@media (max-width: 991px) {
  body {
    font-size: calc(12px + 0.390625vw);
  }
  html {
    font-size: calc(12px + 0.390625vw);
  }
}
* {
  font-size: clamp(14px, 1rem, 1rem);
}

.scroll-prompt {
  position: fixed;
  z-index: 998;
  bottom: -20px;
  left: 50%;
  margin-left: -80px;
  width: 160px;
  height: 160px;
}
.scroll-prompt .scroll-prompt-arrow-container {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -18px;
  animation-name: arrowani;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.scroll-prompt .scroll-prompt-arrow {
  animation-name: opacity;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.scroll-prompt .scroll-prompt-arrow:last-child {
  animation-direction: reverse;
  margin-top: -6px;
}
.scroll-prompt .scroll-prompt-arrow > div {
  width: 36px;
  height: 36px;
  border-right: 8px solid red;
  border-bottom: 8px solid red;
  transform: rotate(45deg) translateZ(1px);
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrowani {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(3px);
  }
  20% {
    transform: translateY(6px);
  }
  30% {
    transform: translateY(9px);
  }
  40% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(15px);
  }
  60% {
    transform: translateY(18px);
  }
  70% {
    transform: translateY(21px);
  }
  80% {
    transform: translateY(24px);
  }
  90% {
    transform: translateY(27px);
  }
  100% {
    transform: translateY(30px);
  }
}
/* =========================================
   PREMIUM HERO SECTION & GLASSMORPHISM
========================================= */
.heromain {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/FIATA BANNER BG.png");
}

.hero {
  display: flex;
  align-items: center;
}

/* =========================================
   "DAYS TO GO" CARD UI
========================================= */
.days-to-go-card {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 40px 60px;
  display: inline-block;
  text-align: center;
  min-width: 280px;
  /* Soft, premium shadow */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Base class for the clipping mask effect */
.text-mask-effect, .dtg-number, .dtg-text {
  /* Mimics the orange and light-blue painted tones from your reference */
  background: linear-gradient(135deg, #df8d66 10%, #9bb6d6 45%, #f1a97d 70%, #9bb6d6 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback */
}

.dtg-text {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2.2rem;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

.dtg-number {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .days-to-go-card {
    padding: 30px 40px;
    min-width: 200px;
  }
  .dtg-text {
    font-size: 1.5rem;
  }
  .dtg-number {
    font-size: 7rem;
  }
}
/* Premium Gradient Button */
.btn-premium {
  background: linear-gradient(135deg, #0080c0 0%, #005186 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 81, 134, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 81, 134, 0.7);
  background: linear-gradient(135deg, #0099e6 0%, #00609e 100%);
}

@media (max-width: 991px) {
  .countdown-wrapper {
    margin-top: 40px;
    padding: 25px 20px;
  }
  .digit-box {
    width: 70px;
    height: 100px;
    font-size: 4.5rem;
  }
  .days-left-text {
    font-size: 1rem;
    letter-spacing: 3px;
  }
  .heromain {
    min-height: auto;
  }
}
/* =========================================
   REMAINING PAGE STYLES
========================================= */
.home h2 {
  color: #ecb24b;
  font-size: clamp(18px, 1.8rem, 2rem);
  margin-bottom: 30px;
}
.home h2 span, .home h2 span > font {
  font-size: 1.3rem;
  display: block;
}
.home h2 > font > font {
  font-size: clamp(18px, 1.8rem, 2rem);
}

.message {
  position: relative;
}
.message .box {
  position: absolute;
  bottom: -49px;
  width: 55%;
  background-color: #F3F3F7;
  height: 209px;
  transform: skewX(-45deg);
  right: -376px;
}

.premiar_event {
  background-image: url("../images/LOGISTICS.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}
.premiar_event .text_cont {
  max-width: 55%;
  position: absolute;
  background-color: white;
  margin-left: auto;
  transform: skewX(-42deg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 12%;
  padding-left: 86px;
  top: 0;
  right: 0;
  bottom: 0;
}
.premiar_event .text_cont .white_part {
  position: absolute;
  height: 100vh;
  background-color: #ffffff;
  width: 500px;
  left: 100%;
  bottom: 0;
}
.premiar_event .text_cont .content {
  transform: skewX(42deg);
  margin-bottom: 0px;
}
.premiar_event .text_cont .content h2 {
  text-align: end;
}

@media (max-width: 768px) {
  .premiar_event {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    overflow: hidden;
    position: relative;
    padding: 15px;
  }
  .premiar_event .text_cont {
    max-width: 95%;
    position: absolute;
    background-color: white;
    margin-left: auto;
    transform: skewX(0deg);
    height: 97%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 15px;
    padding-left: 15px;
    top: 9px;
    right: 0;
    bottom: 0;
  }
  .premiar_event .text_cont .content {
    transform: skewX(0deg);
    margin-bottom: 0px;
  }
  .premiar_event .text_cont .content h2 {
    text-align: end;
  }
}
.VIETNAM_UNIQUE {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/VIETNAM_UNIQUE.png");
  min-height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 100vh;
  color: white;
  position: relative;
  padding-bottom: 70px;
}
.VIETNAM_UNIQUE h2 {
  color: white;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  opacity: 0.2;
  font-size: 15rem;
}
.VIETNAM_UNIQUE h2 font > font {
  font-size: 15rem;
  display: flex;
}
.VIETNAM_UNIQUE h3 {
  text-align: end;
  font-size: 2rem;
}
.VIETNAM_UNIQUE h3 span font {
  font-size: 1.3rem;
  font-weight: unset !important;
}
.VIETNAM_UNIQUE h3 font {
  font-size: 2rem;
}
.VIETNAM_UNIQUE span {
  display: block;
}

.REASON_PARTICIPATE {
  position: relative;
  background-color: #f8f8f8;
  background-image: url("../images/Frame.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.REASON_PARTICIPATE .box {
  position: absolute;
  bottom: 0px;
  width: 70%;
  background-color: white;
  top: 0;
  height: 80%;
  transform: skewX(-15deg);
  left: -210px;
}
.REASON_PARTICIPATE .card_cont {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.REASON_PARTICIPATE .card_cont h4 {
  font-size: 1.3rem;
}
.REASON_PARTICIPATE .card_cont .icon {
  background-color: #ecb24b;
  width: 180px;
  height: 20px;
  display: inline-block;
  transform: skewX(-30deg);
}

.TOURISM_IN_VIETNAM {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/VIETNAM_UNIQUE.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}
.TOURISM_IN_VIETNAM h2, .TOURISM_IN_VIETNAM h2 font {
  font-size: 2rem;
}
.TOURISM_IN_VIETNAM .ribben {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 700px;
}

.form_cont {
  position: relative;
}
.form_cont .box {
  position: absolute;
  bottom: 0px;
  width: 320px;
  background-color: #78b1d7;
  top: 0;
  transform: skewX(-15deg);
  left: -210px;
}
.form_cont h2, .form_cont h2 font {
  font-size: 2rem;
}
.form_cont .box2 {
  position: absolute;
  bottom: 0px;
  width: 319px;
  background-color: #ecb24b;
  top: 0;
  transform: skewX(-15deg);
  right: -210px;
}
.form_cont .form > div {
  margin-bottom: 15px;
}

.GALLERY {
  position: relative;
}
.GALLERY img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.GALLERY .col-lg-4 {
  margin-bottom: 30px;
}
.GALLERY h2, .GALLERY h2 font {
  font-size: 2rem;
}
.GALLERY .box {
  position: absolute;
  bottom: 0px;
  width: 319px;
  background-color: #005186;
  height: 209px;
  transform: skewX(-15deg);
  left: -124px;
}

body {
  font-size: calc(12px + 0.390625vw);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat-Bold";
}

h1 font {
  font-family: "Montserrat-Bold";
}

h2 > font > font, h2 > font {
  font-family: "Montserrat-Bold";
}

h3 font {
  font-family: "Montserrat-Bold";
}

* {
  font-size: 1rem;
}

footer {
  background-color: #4492c6;
  min-height: 50vh;
  color: white;
  background-image: url("../images/Mask group (1).png");
  background-position: right;
  background-repeat: no-repeat;
}

.copyright {
  background-color: #ecb24b;
}

header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
header .navbar {
  overflow-x: hidden;
  border: 2px solid white;
}
header .navbar .nav-link {
  color: black !important;
}
header .logo_cont {
  width: 180px;
  padding-left: 48px;
  padding-bottom: 5px;
}
.top-bar {
  background-color: #ecb24b;
}

@media (min-width: 992px) {
  .navbar .nav-link {
    font-size: clamp(14px, 0.9vw, 2rem);
  }
  .navbar .navbar-nav {
    flex-wrap: wrap;
  }
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
}
* {
  font-family: Montserrat-Regular;
}

body, html {
  width: 100%;
  overflow-x: hidden;
}
