

:root {
  --clr-logo-1: #cc003d;
  --clr-logo-2: #136cb9;
  --clr-logo-1-hover: hsl(342, 100%, 60%);
  --clr-logo-2-hover: hsl(208, 81%, 60%);
  /* dark shades of primary color*/
  --clr-primary-1: hsl(184, 91%, 17%);
  --clr-primary-2: hsl(185, 84%, 25%);
  --clr-primary-3: hsl(185, 81%, 29%);
  --clr-primary-4: hsl(184, 77%, 34%);
  /* primary/main color */
  --clr-primary-5: hsl(208, 81%, 40%);
  /* lighter shades of primary color */
  --clr-primary-6: hsl(185, 57%, 50%);
  --clr-primary-7: hsl(184, 65%, 59%);
  --clr-primary-8: hsl(184, 80%, 74%);
  --clr-primary-9: hsl(185, 94%, 87%);
  --clr-primary-10: hsl(186, 100%, 94%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --ff-primary: "Lato", sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --spacing-logo: 0rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  /* Contact Form */
  --bg: #0a0a0a;
  --card-bg: #141414;
  --text: ffffff;
  --text-dim: #a1a1aa;
  --text-muted: #71717a;
  --accent: #e11d48;
  --accent-dark: #be123c;
  --accent-light: rgba(225, 29, 72);
  --border: rgba(255, 255, 255, 0.1);
  --input-bg: rgba(255, 255, 255, 0.05);
  --radius: 12px;
}
/*
=============== 
Global Styles
===============
*/

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

html {
  font-size: 100%;
  min-height: 101%;
} /*16px*/
body {
  font-family: var(--ff-primary);
  background: var(--clr-white);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;

}ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
/*img {
  width: 100%;
  display: block;
}*/
 img:not(.nav-logo) {
  width: 100%;
  display: block;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  block-size: auto; /* Ensures aspect ratio is maintained (equivalent to height: auto) */
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: 2.53rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-5);
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1.3;
  }
}
/*  global classes */

.about-info .btn {
  text-transform: uppercase;
  background: var(--clr-logo-2);
  color: var(--clr-white);
  padding: 0.375rem 0.75rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  /* font-weight: 700; */
  transition: var(--transition);
  border-radius: var(--radius);
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  color: var(--clr-white);
  background: var(--clr-grey-6);
}
.section {
  padding: 3rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title h2 {
  text-transform: uppercase;
}
.section-title span {
  color: var(--clr-primary-5);
}
.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}
@media screen and (min-width: 992px){
  .section-center {
    width: 95vw;
  }
}
/* Styling for the navigation container */
.pagination {
  list-style: none; /* Removes list bullets */
  padding: 0;
  margin: 0;
  display: flex; /* Arranges items horizontally */
  justify-content: center; /* Centers the pagination links */
}

.pagination li {
  margin: 0 4px;
}

.pagination a {
  display: block; /* Makes the entire area clickable */
  padding: 8px 12px;
  text-decoration: none; /* Removes link underlines */
  border: 1px solid gray;
  color: black;
  border-radius: 5px; /* Adds rounded corners */
}

/* Styles the link for the current page */
.pagination a[aria-current="page"] {
  background-color: dodgerblue;
  color: white;
}

/* Adds a hover effect for non-active links */
.pagination a:hover:not([aria-current="page"]) {
  background-color: #ddd;
}
/*
=============== 
Navbar
===============
*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--clr-white);
  box-shadow: var(--dark-shadow);
  z-index: 2;
}
.nav-icons {
  display: none;
}
.nav-center {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.nav-toggle {
  background: transparent;
  border: transparent;
  font-size: 1.5rem;
  color: var(--clr-logo-2);
  cursor: pointer;
  transition: var(--transition);
}
.nav-toggle:hover {
  transform: scale(1.2);
}
.nav-header h2 {
  font-size: 2rem;
  color: var(--clr-logo-1);
  letter-spacing: var(--spacing-logo);
}
.nav-header h2 span {
  color: var(--clr-primary-5);
}
.nav-link {
  display: block;
  padding: 1rem 2rem;
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  transition: var(--transition);
  color: var(--clr-grey-1);
  cursor: pointer;
  font-size: 1.2rem;
}
.nav-link:hover {
  color: var(--clr-primary-1);
  background: var(--clr-primary-8);
  padding-left: 2.25rem;
}
/* 280px  */
.nav-links {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.show-links {
  height: 380px;
}
@media screen and (min-width: 992px) {
  /* hide toggle button  */
  .nav-toggle {
    display: none;
  }
  .navbar {
    padding: 1rem 2rem;
  }
  .nav-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* optional */
    flex-wrap: wrap;
  }
  .nav-links {
    height: auto;
    display: flex;
  }
  .nav-header {
    padding: 0;
  }
  .nav-link {
    padding: 0;
    margin-right: 0.7rem;
  }
  .nav-link:hover, .nav-link.active {
    padding: 0;
    color: var(--clr-logo-1);
    background: transparent;
  }
  .nav-icons {
    display: flex;
  }
  .nav-icon {
    margin-right: 0.7rem;
    color: var(--clr-primary-5);
    font-size: 1.2rem;
    transition: var(--transition);
  }
  .nav-icon:hover {
    color: var(--clr-primary-8);
  }
}
/*
=============== 
Hero
===============
*/
/* The main wrapper spreads 100% full screen width */
.hero-banner.home {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Adjust height as needed */
}

/* This creates the restricted background behind the text */
.hero-banner.home::before {
  min-height: 100vh;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* Centers the background */
  width: 100%;
  max-width: 1200px; /* Your desired image max-width */
  height: 100%;
  background: url('../images/mapship2-cropped.jpg') center/cover no-repeat;
  z-index: 1; /* Puts it behind the text */
}

/* The text box can now safely stretch full screen width */
.text-area {
  position: relative;
  z-index: 2; /* Pulls text in front of the background */
  width: 100%; 
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* Optional: adds tint so text is readable */
  color: white;
  padding: 40px 20px;
  margin-top:50px;
}

.hero-banner h1 {
  text-transform: uppercase;
}
.hero-banner p {
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--clr-white);
  letter-spacing: var(--spacing);
}
.hero-banner blockquote{
    font-size: 1.4em;
    font-style:italic;
    color: black;
    margin: 0 auto;
    padding:1.2em 30px 1.2em 75px;
    border-left:8px solid var(--clr-primary-5);
    line-height:1.6;
    position: relative;
    background-color: rgba(255, 255, 255, .7);
}
.hero-banner blockquote::before{
    font-family:Arial;
    content: "\201C";
    color: var(--clr-primary-5);
    font-size:4em;
    position: absolute;
    left: 10px;
    top:-10px;
}
.hero-banner blockquote::after{
    content: '';
}
.hero-banner blockquote span{
    display:block;
    color:#333333;
    font-style: normal;
    font-weight: bold;
    margin-top:1em;
}
.hero-btn {
  padding: 0.9rem 1.6rem;
  font-size: 1.25rem;
  background: var(--clr-white);
  color: var(--clr-primary-5);
}
.hero-btn:hover {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}
.hero-page.about {
  background: url('../images/about-header.jpg') center/cover no-repeat;
}
.hero-page.featured {
  background: url('../images/featured-header.jpg') center/cover no-repeat;
}
.hero-page.gallery {
  background: url('../image s/featured-header-03.png') center/cover no-repeat;
}
.hero-page.blog {
  background: url('../images/header-07.jpg') center/cover no-repeat;
}
@media screen and (min-width: 768px){
  /*.hero {
    background: url('../images/hero-image-19.jpg') center/cover no-repeat;
  }*/
  .hero-banner p {
    max-width: 45rem;
  }
  /*.hero-banner blockquote {
    max-width: 60vw;
  }*/

}
@media screen and (min-width: 1125px){
  .hero-banner blockquote {
    max-width: 70%;
  }
}
/*
=============== 
About
===============
*/
/* section add to globals */
/* title add to globals */
/* section center add to globals */
.about-img,
.about-info {
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .about-center {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .about-img,
  .about-info {
    flex: 0 0 calc(50% - 2rem);
    margin-bottom: 0;
    align-self: center;
  }
}
@media screen and (min-width: 1170px) {
  .about-img::before {
    content: "";
    position: absolute;
    border: 0.5rem solid var(--clr-primary-5);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    top: -1.5rem;
    left: -1.5rem;
  }
  .about-img {
    position: relative;
  }
  .about-photo {
    position: relative;
  }
}
/*
=============== 
blogs
===============
*/
.blog-card {
  /*transition: var(--transition);
  background: var(--clr-grey-10);*/
  box-shadow: var(--light-shadow);
  margin-bottom: 2rem;
}
.blog-content {
  
  padding: 1.25rem 1.5rem 2.25rem 1.5rem;
}
/*.blog-card:hover {
  box-shadow: var(--dark-shadow);
  transform: scale(1.02);
}*/
.blog-img-container {
  position: relative;
}
.blog-img {
  height: 15rem;
  object-fit: cover;
}
.blog-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--clr-primary-8);
  margin-bottom: 0;
  color: var(--clr-primary-1);
  text-transform: capitalize;
  padding: 0.25rem 0.5rem;
}
/*.blog-info {
  padding: 1.25rem 1.5rem 2.25rem 1.5rem;
}*/
.blog-footer {
  display: flex;
  align-items: center;
}
.blog-footer p {
  font-size: .8rem;
  line-height: 0;
  margin-bottom: 0;
  margin-left: 20px;
  text-transform: capitalize;
  color: var(--clr-primary-5);
}
.blog-footer p:first-child {
  margin-left: 0;
}
.blog-btn {
  text-align: center;
}
.search-widget {
  margin-bottom: 40px;
}
/* ===== Search widget wrapper ===== */
.search-widget {
  max-width: 100%; /* adjust as needed */
}
/* ===== Input group ===== */
.search-widget .input-group {
  display: flex;
  position: relative;
}
/* ===== Text input ===== */
.search-widget .form-control {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.search-widget .form-control:focus {
  border-color: #66afe9;
  box-shadow: 0 0 0 2px rgba(102, 175, 233, 0.3);
}
/* ===== Input group ===== */
.input-group {
  position: relative;
  width: 100%;
}

/* ===== Text input ===== */
.form-control {
  width: 100%;
  padding: 12px 48px 12px 16px; /* space for button on right */
  font-size: 16px;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  border-color: #66afe9;
  box-shadow: 0 0 0 2px rgba(102, 175, 233, 0.3);
}

/* ===== Button wrapper ===== */
.input-group-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

/* ===== Button ===== */
.btn {
  height: 100%;
  padding: 0 16px;
  background: transparent;
  border: none;
  color: #777;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  color: #333;
}

/* ===== Icon ===== */
.btn i {
  font-size: 16px;
}
.input-group-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #ddd;
}
.btn:hover {
  background: rgba(0, 0, 0, 0.04);
}


.widget {
  border: 1px solid #e7e7e7;
  min-width: 100%; 
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02);
  margin-bottom: 40px;
}
.widget-heading {
  padding: 20px;
  border-bottom: 1px solid #e7e7e7;
  background: rgba(0, 0, 0, 0.02) none repeat scroll 0 0;
}
.widget-heading h4 {
  margin: 0;
  color: #888;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2rem;
}
ul.categories {
  list-style: none;
  padding: 20px;
  margin-bottom: 0;
}
ul.categories li {
  border-bottom: 1px solid #e7e7e7;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
ul.categories li a {
  color: #888;
}
.pull-right {
  float: right !important;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}
ul.tags {
  padding: 5px;
  margin-bottom: 0;
}
ul.tags li {
  display: inline-block;
  margin: 9px 2px;
}
ul.tags li a {
  border: 1px solid #e7e7e7;
  color: #333;
  font-size: 13px;
  padding: 5px 8px;
  text-decoration: none;
}

@media screen and (min-width: 750px) {
  .blog-container {
    display: flex;
    gap: 2rem;
  }
}
@media screen and (min-width: 1170px) {
  /*.blog-container {
    display: flex;
    gap: 2rem;
  }*/
  .blog-cards-container {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .blog-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    /*align-items: flex-start; /* ← THIS FIXES IT */*/
  }

  .blog-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .right-sidebar {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
ul.popular-posts {
  list-style: none;
  padding: 20px;
  margin-bottom: 0;
}
ul.popular-posts li {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.popular-posts .post-image {
  float: left;
  margin-right: 20px;
  position: relative;
  vertical-align: middle;
  width: 100px;
}
.popular-posts .post-image img {
  width: 100%;
}
ul.popular-posts li img {
  float: left;
  margin-right: 15px;
}
.popular-posts .post-body h6 a{
  font-size: 16px;
  /* font-weight: bold; */
  color: #999;
}
/*
=============== 
SBlog Comments
===============
*/
.post-author {
  font-size: 14px;
  box-shadow: var(--light-shadow);
  margin-bottom: 2rem;
}
.post-author-count a {
  color: var(--clr-grey-5);
}
.media {
  display: flex;
  padding: 20px;
}
.media-left {
  margin-right: 10px;
}
.media img {
  border-radius: 100%;
  margin-right: 10px;
}
.post-author h4 {
  font-size: 1.3rem;
}
.post-author h4 a {
  font-weight: 600;
  color: #333;
}
.post-comments {
  padding-top: 10px;
  box-shadow: var(--light-shadow);
  margin-bottom: 20px;
}
.post-comments h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}
.comment-body {
  padding: 20px;
}
.comment-footer {
  padding: 20px;
}
ul.comments-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
li.comment-item:first-child {
  margin-top: 0;
}
li.comment-item {
  background: rgba(0, 0, 0, 0.02) none repeat scroll 0 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 15px 0;
  padding: 10px 20px;
}
.comment-author-meta h4 {
  font-weight: 700;
  font-size: 20px;
}

/*
=============== 
Featured Tours
===============
*/

.tour-card {
  transition: var(--transition);
  background: var(--clr-grey-10);
  box-shadow: var(--light-shadow);
  margin-bottom: 2rem;
}
/*.tour-card:hover {
  box-shadow: var(--dark-shadow);
  transform: scale(1.02);
}*/
.tour-img-container {
  position: relative;
}
.tour-img {
  height: 15rem;
  object-fit: cover;
}
.tour-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--clr-primary-8);
  margin-bottom: 0;
  color: var(--clr-primary-1);
  text-transform: capitalize;
  padding: 0.25rem 0.5rem;
}
.tour-info {
  padding: 1.25rem 1.5rem;
}
.tour-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.tour-footer p {
  line-height: 0;
  margin-bottom: 0;
  text-transform: capitalize;
  color: var(--clr-primary-5);
}
.tour-btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .featured-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .tour-card {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media screen and (min-width: 1170px) {
  .tour-card {
    flex: 0 0 calc(33.333% - 2rem);
  }
}

/*
=============== 
Gallery
===============
*/
.gallery-img-container {
  position: relative;
  background: var(--clr-primary-5);
}
.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  transform: translate(-50%, -50%);
  color: var(--clr-white);
  opacity: 0;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-img {
  height: 17rem;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-img-container:hover .gallery-img {
  opacity: 0.5;
}
.gallery-img-container:hover .gallery-icon {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .gallery-center {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery-img-container {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 992px) {
  .gallery-img-container {
    flex: 0 0 25%;
  }
}
.slider-width {
    padding: 0 10%;
    /*margin-top: 100px;*/
}
/*.bx-wrapper {
    margin-bottom: 25px !important;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background: #fff !important;
}
.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover {
    background: #000 !important;
}*/
#slider-loader {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* hide slider until ready */
.slider {
    visibility: hidden;
}
/*
=============== 
Footer
===============
*/
.footer {
  background: var(--clr-grey-1);
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.footer-links, .footer-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-link {
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1rem;
  margin-right: 1rem;
  letter-spacing: var(--spacing);
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--clr-primary-5);
}
.footer-link.active {
  color: var(--clr-logo-1);
}
.footer-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: var(--clr-primary-8);
  transition: var(--transition);
}
.footer-icon:hover {
  color: var(--clr-primary-5);
}
.copyright {
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  color: var(--clr-white);
}

