/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

/* === Reset and Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

/* === Header === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0077b6;
  text-decoration: none;
  cursor: pointer;   
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

nav ul li {
  margin-left: 25px;
}

    nav ul li a {
        font-size: 16px;
        padding: 8px 12px;
    }

nav ul li a:hover {
  color: #0077b6;
}

/* === Main Section === */
.main {
    background: linear-gradient( rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) ), url('images/main.jpg') no-repeat center top;
    background-size: cover;
    width: 100%;
    height: auto;
    color: white;
    text-align: center;
    padding: 150px 20px;
}

.main h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.main p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  background: #0077b6;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn:hover {
  background: #023e8a;
  transform: translateY(-2px);
}

/* === Section Headings === */
section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #023e8a;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}

/* === Destinations === */
.destinations {
    padding: 80px 60px;
    background: #f9f9f9;
    text-align: center;
    margin: 0 auto;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

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

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

.card h3 {
  margin: 15px;
  color: #0077b6;
  font-family: 'Montserrat', sans-serif;
}

.card p {
  margin: 0 15px 20px;
}

/* === About Us === */
.about {
  padding: 80px 60px;
  background: #f9f9f9;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about p {
  font-size: 1.1rem;
  color: #555;
}

/* === Services === */
.services {
  padding: 80px 60px;
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service {
  background: #e6f4ff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service h3 {
  color: #0077b6;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

/* === Testimonials === */
.testimonials {
  padding: 80px 60px;
  background: #f9f9f9;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.testimonial {
  background: #ffffff;
  border-left: 5px solid #0077b6;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

/* === Contact Form === */
.contact {
  padding: 80px 60px;
  background: #ffffff;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #0077b6;
}

/* === Footer === */
footer {
    background: #2D68C4;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
}

.destination-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

    .destination-header .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
    }

    .destination-header h1 {
        position: relative;
        color: white;
        font-size: 3rem;
    }

.destination-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.7;
}
    .destination-content h2:nth-of-type(2) {
        margin-top: 40px;
    }

    .destination-content h2:nth-of-type(3) {
        margin-top: 40px;
    }

    .destination-content h2:nth-of-type(4) {
        margin-top: 40px;
    }

    .destination-content ul {
        margin: 20px 0;
        padding-left: 20px;
    }

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background: #0077b6;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

    .back-btn:hover {
        background: #00b4d8;
    }

.gallery-title {
    margin-top: 40px;
    font-size: 2rem;
    text-align: center;
}

.gallery-grid {
    margin: 30px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    padding: 0 20px;
}

    .gallery-grid img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }

.highlight-list {
    max-width: 900px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 20px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-wrap: nowrap; 
}

    .highlight-item img {
        width: 200px;
        height: 140px;
        border-radius: 10px;
        object-fit: cover;
        flex-shrink: 0; 
    }

    .highlight-item div {
        flex: 1; 
        min-width: 250px; 
    }

    .highlight-item h3 {
        margin: 0 0 6px 0;
        font-size: 1.3rem;
        color: #0077b6;
    }

    .highlight-item p {
        margin: 0;
        line-height: 1.5;
    }

.about-list {
    margin: 20px 0;
    padding-left: 20px;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.team-member {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .team-member img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        object-position: 50% 18%;
        border-radius: 50%;
        margin-bottom: 12px;
    }

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .navbar .logo {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.7rem;
        font-weight: 700;
        color: #0077b6;
    }

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

    .nav-links li a {
        text-decoration: none;
        color: #333;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .nav-links li a:hover {
            color: #0077b6;
        }

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

.dest-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    margin-top: 40px;
}

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

    .dest-card h3 {
        margin: 15px 0 5px;
        color: #0077b6;
        font-size: 1.3rem;
    }

    .dest-card p {
        padding: 0 15px;
        font-size: 0.95rem;
        line-height: 1.4;
    }

.dest-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #0077b6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

    .dest-btn:hover {
        background: #005f8d;
    }

.lang-switcher select {
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

@media (min-width: 900px) {
    .dest-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: auto;
    }
}


}
