:root{
    --primary:#ff6b35;
    --secondary: #004e89;
  --accent: #f7b801;
  --dark: #0a0f1c;
  --darker: #050810;
  --light: #ffffff;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
     background: var(--dark);
  color: var(--light);
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 78, 137, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 90%,
      rgba(247, 184, 1, 0.1) 0%,
      transparent 50%
    );
  animation: ambient 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes ambient {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(5%, -5%) rotate(1deg);
  }
  66% {
    transform: translate(-5%, 5%) rotate(-1deg);
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(10, 15, 28, 0.9), transparent);
  animation: slideDown 0.8s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease 0.3s both;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 45px;
}

nav li {
  animation: fadeIn 1s ease both;
}

nav li:nth-child(1) {
  animation-delay: 0.4s;
}
nav li:nth-child(2) {
  animation-delay: 0.5s;
}
nav li:nth-child(3) {
  animation-delay: 0.6s;
}
nav li:nth-child(4) {
  animation-delay: 0.7s;
}

nav a {
  text-decoration: none;
  color: var(--light);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0, 78, 137, 0.7), rgba(255, 107, 53, 0.5)),
    url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop&q=80")
      center/cover;
  animation: parallaxZoom 25s ease-in-out infinite;
}

@keyframes parallaxZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark), transparent);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 10;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease 0.5s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 82px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-content h2 span {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 45px;
  opacity: 0.85;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-btn {
  padding: 18px 55px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--dark);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
}

.hero-btn:hover::before {
  left: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator::after {
  content: "↓";
  font-size: 24px;
  color: var(--light);
  opacity: 0.6;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 80px 80px;
  margin-top: -50px;
  position: relative;
  z-index: 100;
}

.feature {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease both;
}

.feature:nth-child(1) {
  animation-delay: 0.1s;
}
.feature:nth-child(2) {
  animation-delay: 0.2s;
}
.feature:nth-child(3) {
  animation-delay: 0.3s;
}
.feature:nth-child(4) {
  animation-delay: 0.4s;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.section-title span {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.destinations {
  padding: 120px 80px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.place {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
  aspect-ratio: 3/4;
  animation: fadeInUp 0.8s ease both;
}

.place:nth-child(1) {
  animation-delay: 0.1s;
}
.place:nth-child(2) {
  animation-delay: 0.2s;
}
.place:nth-child(3) {
  animation-delay: 0.3s;
}
.place:nth-child(4) {
  animation-delay: 0.4s;
}

.place img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.8);
}

.place:hover img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.place:hover .overlay {
  transform: translateY(0);
}

.experience {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.exp-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.exp-text h2 span {
  font-weight: 700;
  color: var(--primary);
}

.exp-text p {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.8;
  font-weight: 300;
}

.exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exp-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 50px 30px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.exp-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.exp-card:hover::before {
  left: 100%;
}

.exp-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.exp-card-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.gallery {
  padding: 120px 80px;
  background: linear-gradient(to bottom, transparent, rgba(0, 78, 137, 0.05));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0.3) brightness(0.9);
}

.gallery-grid img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  filter: grayscale(0) brightness(1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.booking {
  padding: 120px 80px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0L0 30l30 30 30-30L30 0z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.booking h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  color: var(--light);
}

.booking-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.booking-box input,
.booking-box button {
  padding: 18px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--light);
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease;
  min-width: 200px;
}

.booking-box input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.booking-box input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.booking-box button {
  background: linear-gradient(135deg, var(--accent), #ffdd00);
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
  border-color: transparent;
  letter-spacing: 1px;
  box-shadow: 0 10px 40px rgba(247, 184, 1, 0.3);
}

.booking-box button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(247, 184, 1, 0.5);
}

footer {
  padding: 60px 80px;
  background: var(--darker);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  opacity: 0.6;
  line-height: 1.8;
  font-size: 14px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.5;
  font-size: 13px;
}

@media (max-width: 992px) {
  .hero-btn {
    width: 200px;
    color: white;
    height: 70px;
  }

  .exp-card {
    width: 18vh;
  }
}

@media (max-width: 768px) {
  .hero-btn {
    width: 25vw;
    height: 8vh;
  }
  .features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .feature{
    width: 60vw;
  }

  .destination-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
   .gallery-grid{
    grid-template-columns: repeat(1,1fr);
  }

  .place {
    height: 70vh;
  }

  .experience {
    grid-template-columns: repeat(1, 1fr);
  }
  .exp-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .exp-card {
    width: 50vw;
    height: 25vh;
  }
}



@media (max-width:576px){
  nav{
    flex-direction: column;
    gap: 1rem;
  }
  .hero-content h2{
    font-size: 4rem;
  }
  .hero-btn{
    height:10vh;
    width: 34vw;
    font-size: 15px;
  }
  .exp-card{
    width: 70vw;
  }
  .gallery-grid{
    grid-template-columns: repeat(1,1fr);
  }
  .booking-box{
    justify-content: center;
    align-items: center;
  }

  .booking-box input{
    width: 50vw;
  }

  footer{
    grid-template-columns: repeat(1,1fr);
  }

}
