* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  background-color: #f5f7fb;
}

/* ---------- Navigation ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 8%;

  background: #123c69;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: .3s;
}

.nav-links a:hover {
  color: #FFD166;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;

  background:
  linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
  url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e");

  background-size: cover;
  background-position: center;
}

.hero-content {

  max-width: 700px;

  background: rgba(255,255,255,.12);

  backdrop-filter: blur(12px);

  border-radius: 20px;

  padding: 45px;

  text-align: center;

  color: white;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  line-height: 1.8;
}

.btn {

  display: inline-block;

  margin-top: 35px;

  padding: 15px 35px;

  border-radius: 50px;

  background: #ff9f1c;

  color: white;

  text-decoration: none;

  font-weight: bold;

  transition: .3s;
}

.btn:hover {
  background: #ff8500;
  transform: scale(1.05);
}

/* ---------- Cards ---------- */

.destinations {

  display: grid;

  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));

  gap: 30px;

  padding: 70px 8%;
}

.card {

  background: white;

  border-radius: 20px;

  padding: 35px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,.08);

  transition: .3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card h2 {
  margin-bottom: 15px;
  color: #123c69;
}

.card p {
  line-height: 1.7;
}

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

footer {

  background: #123c69;

  color: white;

  text-align: center;

  padding: 30px;
}

/* ---------- Shared Pages ---------- */

.page {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.page h1 {
  color: #123c69;
  margin-bottom: 20px;
  text-align: center;
}

.page p {
  line-height: 1.9;
  margin-bottom: 20px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  margin-top:40px;
}

.gallery-grid img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:18px;
  transition:.3s;
}

.gallery-grid img:hover{
  transform:scale(1.03);
}

.contact-box{
  background:white;
  border-radius:20px;
  padding:35px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-box input,
.contact-box textarea{

  width:100%;

  padding:15px;

  margin:10px 0 20px;

  border-radius:10px;

  border:1px solid #ddd;

  font-size:16px;
}

.contact-box textarea{
  min-height:150px;
  resize:vertical;
}

.contact-box button{

  background:#123c69;

  color:white;

  border:none;

  padding:15px 35px;

  border-radius:50px;

  cursor:pointer;

  transition:.3s;
}

.contact-box button:hover{
  background:#0f3155;
}

/* ---------- Mobile ---------- */

@media (max-width:768px){

.navbar{
flex-direction:row;
justify-content:space-between;
padding:15px 20px;
}

.logo{
font-size:20px;
}

.nav-links{
flex-direction:row;
gap:12px;
}

.nav-links a{
font-size:15px;
}

.hero h1{
font-size:38px;
}

.hero-content{
padding:30px;
}

.hero p{
font-size:18px;
}

}
.gallery-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.gallery-card:hover{
    transform:translateY(-6px);
}

.gallery-card h3{
    color:#1e3a8a;
    padding:18px 20px 8px;
    margin:0;
}

.gallery-card p{
    padding:0 20px 20px;
    margin:0;
    color:#555;
    line-height:1.6;
}
.page-intro{
    max-width:700px;
    margin:20px auto 40px;
    text-align:center;
    font-size:20px;
    color:#555;
    line-height:1.8;
}

.contact-box{
    max-width:700px;
    margin:0 auto;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:left;
}

.contact-box h2{
    color:#1e3a8a;
    margin-bottom:15px;
}

.contact-box p{
    margin:15px 0;
    font-size:18px;
    line-height:1.7;
    color:#555;
}

.contact-box hr{
    margin:30px 0;
    border:none;
    border-top:1px solid #ddd;
}

.contact-box .btn{
    margin-top:25px;
    display:inline-block;
}.page-intro{
    max-width:700px;
    margin:20px auto 40px;
    text-align:center;
    font-size:20px;
    color:#555;
    line-height:1.8;
}

.contact-box{
    max-width:700px;
    margin:0 auto;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:left;
}

.contact-box h2{
    color:#1e3a8a;
    margin-bottom:15px;
}

.contact-box p{
    margin:15px 0;
    font-size:18px;
    line-height:1.7;
    color:#555;
}

.contact-box hr{
    margin:30px 0;
    border:none;
    border-top:1px solid #ddd;
}

.contact-box .btn{
    margin-top:25px;
    display:inline-block;
}