/* root variable */
:root{
    --color-primary: rgb(147, 213, 248);
    --color-danger: #ec5834;
    --color-light-black: rgb(58, 68, 69);
    --color-dark: #161616;
    --color-white: #f4f4f4;

}



@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@600&display=swap');

*{
    /* font-family:'Poppins', sans-serif; */
    margin: 0;
    padding: 0;
    /* background-color: var(--color-primary); */

}

body {
  height: 300vh;
  /* font-family: 'Inter', sans-serif; */
  background-color: var(--color-primary);
}

/* Header Styles */
header {
  background: var(--color-primary);
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo and Title */
.logo-section {
    width: 45vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.logo-section img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.logo-section h1 {
  font-size: 30px;
  font-style: 'Poppins', sans-serif;
  font-weight: bolder;
  color: var(--color-dark);
}

/* Buttons */
.auth-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Filled Button */
.btn {
  font-family: 'Inter', sans-serif;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 25px;
  border: 2px solid transparent;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: var(--color-white);
  color: var(--color-light-black);
}

.btn:hover {
  border-color: var(--color-danger);
  color: var(--color-danger);
  box-shadow: 0 4px 12px rgba(255, 56, 92, 0.2);
}

/* Filled / Outline Button */
.btn-outline {
  background-color: var(--color-danger);
  color: var(--color-white);
  border: 2px solid var(--color-danger);
}

.btn-outline:hover {
  background-color: transparent;
  color: var(--color-danger);
  box-shadow: 0 4px 12px rgba(255, 56, 92, 0.2);
  background-color: var(--color-white);
}
/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
  }

  .auth-buttons {
    flex-direction: column;
    width: 100%;
  }

  .auth-buttons .btn,
  .auth-buttons .btn-outline {
    width: 100%;
  }
}


/* header completed */

/* ----------------------------------- */

/* main-container__Started */

main{
    height: 80vh;
    width: 100vw;

}

#main-container{
    height: 80vh;
    width: 95vw;
    display: flex;
    margin: 0 auto;
    border: none;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
}

#inside-main{
    height: 30vh;
    width: 35vw;
    display: flex;
    margin-top: 40px;
    margin-left: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  background-color: rgba(255, 255, 255, 0.2); /* light white tint */
}
#text-inside-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; 
  gap: 10px;

  font-size: 50px; 
  font-weight: 700;
  text-align: center;
  color: var(--color-dark);

  padding: 20px;
  background-color: transparent;
  border-radius: 12px;

  max-width: 25vw; 
  margin: 0 auto;
  word-break: break-word;
  box-sizing: border-box;
}

#world-img {
  width: 8vw; 
  height: 18vh;
  margin-top: 35px ;
  display: flex;
  align-items: center;
  background: transparent;
}

/* main-completed */

/* --------------------- */

/* section-1 started */


.card-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.card {
  background-color: var(--color-white);
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 25vw;
  box-sizing: border-box;
}

.search-card{
    width: 42vw;
}

/* Search Card */
.search-card h3 {
  margin-bottom: 15px;
  background: transparent;
}

.search-box {
  background-color: #dfe0e1;
  padding: 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-box input {
  border: none;
  background: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  padding: 5px 10px;
}

.search-btn {
  background-color: var(--color-danger);
  /* background: transparent; */
  border: none;
  border-radius: 50%;
  color: white;
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-btn>.bx-search{
    background: transparent;
}

/* Discount Card */
.discount-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.discount-card .card-header>h3{
    background: transparent;
}

.discount-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
  margin-top: 10px;
}

.arrow-btn {
  background-color: var(--color-danger);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  width: 35px;
  height: 35px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arrow-btn>.bx-right-arrow-alt{
    background: transparent;
}

/* Testimonials Card */
.testimonial-card .avatars {
  display: flex;
  margin-bottom: 10px;
}

.testimonial-card .avatars img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: -10px;
  object-fit: cover;
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-card p {
  font-weight: bold;
  font-size: 16px;
}

section>div#trending{
    height: 35vh;
    width: 95vw;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

section>div#trending>h1{
    display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; 
  gap: 10px;
  font-size: 150px; 
  font-weight: 700;
  text-align: center;
  color: var(--color-light-black);
  padding: 20px;
  background-color: transparent;
  border-radius: 12px;
  word-break: break-word;
  box-sizing: border-box;
}

section>div#trending>img{
    width: 15vw;
    height: 20vh;
    margin: auto 0;
    background: transparent;
}


/* trending-places */
section > div#trending-img {
  height: 70vh;
  width: 95vw;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  overflow: hidden;
  gap: 10px; 
}


.trending-places{
  width: 100%;
  height: 300px; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px; 
  position: relative;
  overflow: hidden;
}

.trending-places:hover{
     box-shadow:
    inset 0 -3em 3em rgb(0 200 0 / 30%),
    0 0 0 2px white,
    0.3em 0.3em 1em rgb(200 0 0 / 60%);
}

.trending-places::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to top, rgba(14, 13, 13, 0.7), transparent);
}

#trending-img > div:nth-child(2n) {
  margin-top: 70px;
}

.cityname{
  background: transparent;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 40px;
  font-weight: bold;
  z-index: 2;
  text-shadow: 0 0 5px rgba(0,0,0,0.6); /* to improve readability on bright images */
}


/* ------------Planning Cart------------- */

.travel-cart {
  position: fixed;
  bottom: 20px;
  right: -400px;
  width: 320px;
  background-color: #fff !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 12px;
  padding: 20px;
  transition: right 0.5s ease-in-out;
  z-index: 1000;
}

.travel-cart * {
  background: transparent;
}


.travel-cart.active {
  right: 20px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.close-btn {
  cursor: pointer;
  font-size: 1.2rem;
}

.cart-content label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.cart-content input,
.cart-content select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button[type="submit"] {
  margin-top: 15px;
  background-color: var(--color-danger);
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background-color: #45a049;
}


/* ------------Authentication - Page------------ */
#blur-container.modal-blur {
  filter: blur(6px);
  transition: filter 0.3s ease;
}

/* Modal wrapper */
.modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal content box */
.modal-box {
  position: relative;
  width: 400px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.modal-close:hover {
  color: red;
}

/* Embedded iframe */
#signupIframe {
  width: 100%;
  height: 400px;
  border: none;
}

#signupIframe {
  width: 400px;
  border: none;
  overflow: hidden;
}
/* 

.profile{
  display: flex;
    gap: 2rem;
    text-align: right;
    right: 20px;
}

.profile-photo{
  width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid black;
}

.profile-photo>img{
  display: block;
  width: 100%;
} */

.profile-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.profile-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-danger);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 1000;
}

.dropdown button {
  padding: 10px 20px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.dropdown button:hover {
  background-color: #f0f0f0;
}

/* --------------------------------------Seciton---------------------------------------- */
.package-section {
  width: 90vw;
  margin: 40px auto;
  padding: 60px 30px;
  background-color: #f3f9ff;
  border-radius: 40px 40px 0 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.package-header .badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #0077cc;
  border-radius: 20px;
  color: #0077cc;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
}

.package-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 12px;
  max-width: 600px;
}

.package-header p {
  max-width: 520px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
}

.package-header span {
  font-weight: 600;
}

.package-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 270px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card h3 {
  font-size: 20px;
  padding: 10px 16px 0;
}

.package-card .tag {
  padding: 0 16px;
  font-size: 13px;
  color: #0077cc;
  margin-top: 4px;
}

.package-card .price {
  padding: 6px 16px;
  font-weight: 600;
  font-size: 15px;
}

.package-card .card-footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 16px;
  font-size: 13px;
  color: #555;
}

.rating {
  background-color: #e5f3ff;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.view-all-btn {
  margin-top: 20px;
}

.view-all-btn button {
  background-color: #ff5a3c;
  color: white;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn button:hover {
  background-color: #e64a2b;
}



/* ----------Footer---------------- */

.travel-footer {
  /* background: linear-gradient(to bottom, #42a9f0, #0f92df); */
  padding: 40px 0;
  color: white;
  text-align: center;
  border-radius: 30px 30px 0 0;
  margin-top: 40px;
  font-family: 'Segoe UI', sans-serif;
  
}

.footer-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  max-width: 95vw;
  margin: 0 auto;
}

.footer-blur {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1752834370400-da734c87f565?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  /* filter: blur(5px); */
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(3px); 
  /* -webkit-backdrop-filter: blur(5px); */
  border-radius: 20px;
  color: white;
}


.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.travel-footer h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.subscribe-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto 30px;
}

.subscribe-box input {
  border: none;
  padding: 15px;
  flex: 1;
  border-radius: 30px 0 0 30px;
  outline: none;
  font-size: 14px;
}

.subscribe-box button {
  background: #0f92df;
  border: none;
  padding: 0 20px;
  height: 100%;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer-links span {
  margin-bottom: 10px;
}

.legal-links a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
}

.social-icons i {
  font-size: 20px;
  margin: 0 8px;
  cursor: pointer;
}


