:root {
    --color-primary: #00aeef;
    --color-secondary: #e31e24;
}
* {
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--color-primary);
}
h1{
    font-size: 3.75rem;
    line-height: 1.2;
    margin-top: 20px;
}
h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 15px;
}
img {
    max-width: 100%;
    height: auto;
}
figure.image {
    margin: 0;
}
.text-size-l{
        font-size: 1.5rem;
        line-height: 2rem;
    }
.text-size-m{
        font-size: 1.5rem;
        line-height: 2rem;
    }  
.text-size-s{
        font-size: 1.125rem;
        line-height: 1.625;
    }   
    
.text-size-xs{
        font-size: 1.1rem;
        line-height: 1.3;
    }  
    
.font-bold {
    font-weight: 700;
}
.font-normal {
    font-weight: normal;
}
.font-lite {
    font-weight: 300;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
header {
    background: #fff;
    border-bottom: 1px solid #ddd;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
}
.nav-toggle {
    display: none;
    cursor: pointer;
}
.nav-menu {
    display: flex;
    gap: 3rem;
}
.header-btn {
    background: var(--color-secondary);
    padding: .5rem 1.5rem;
    border-radius: 8px;
    color: #fff;
}
section {
    overflow: hidden;
}
iframe.home-bg-video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    z-index: -1;
    margin-top:-60px;
    position: relative;
    pointer-events: none;
}
.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000010;
    background: linear-gradient(0deg, #f9fafb 8%, #00000010 8%);
}

.hero-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fdfdfdf7;
    padding: 0.5rem 1.5rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px -5px #161616;
}
.bg-gray-50{
    background-color: #f9fafb;
}

.travel-experts {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.travel-experts .container {
  max-width: 900px;
  margin: 0 auto;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature {
  width: 250px;
  margin-bottom: 30px;
}

.feature img {
  height: 40px;
  margin-bottom: 10px;
}

.feature h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature p {
  color: #555;
}
.box-shadow{
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
.box-shadow:hover{
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.gradient-text {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(160deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
h1.hero-head {
    /*margin-bottom: 0;*/
    line-height: 1.2;
}
p.hero-subhead {
    margin: 10px 20px 30px;
}
.clamp-text {
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  padding-bottom: 1em; 
  max-height: 4.5em; 
}

.clamp-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; 
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none; 
}

.socialgroup ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.cart-icon {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #333;
  text-decoration: none;
}

.cart-icon:hover {
  color: #007BFF;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: red;
  color: white;
  font-size: 10px;
  border-radius: 50%;
  /* padding: 2px 6px; */
  font-weight: bold;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
}
.header-btn:hover {
    color: #fff;
    background: #f7141b;
}

/***** Footer **/


.menu_wapper strong {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1rem;
}
.menu_wapper ul {
    list-style: none;
    padding-left: 10px;
    font-size: 16px;
}
.menu_wapper ul li a {
    text-decoration: none;
    color: #ccc;
    display: block;
    margin-bottom: 0.5rem;
}
.menu_wapper ul li a:hover {
    color: #fff;
}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    h1.hero-head {
    font-size: 35px;
}

div.hero-content {
    width: 98%;
    min-width: auto;
}

nav#nav-menu {
    position: absolute;
    top: 65px;
    width: 200px;
    z-index: 9;
    background: #fff;
    right: 5px;
    text-align: center;
    box-shadow: 0px 2px 3px -2px #000;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
}

nav#nav-menu>a {
    padding: 8px;
}

nav#nav-menu>a:hover {
    background: var(--color-primary);
    color: #fff;
}
div#nav-toggle {
        font-size: 30px;
        width: 48px;
        text-align: center;
        background: var(--color-primary);
        color: #fff;
        border-radius: 4px;
    }
    .header-btn{
        display:none;
    }
}
