@charset "utf-8";
/* CSS Document */

CSS
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;

}

.carousel {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    background-image: url(images/bg.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   

    color: white;
    text-align: center;
}

.logo {
    max-width: 600px;
    margin-bottom: 20px;
}

.textbox {
    font-size: 24px;
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
	max-width: 600px;
    margin-bottom: 20px;
}

.tours-section {
    padding: 50px;
    text-align: center;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns */
    gap: 20px;
}

.tour-column {
	
    padding: 20px;
    box-sizing: border-box;
    background-color:rgba(30, 144, 255, 0.5); 
	
    border-radius: 10px; /* Rounded corners */
	border:2px,double,#000000;
}

.tour-column img {
	
}

.column2 {
	
}
.tour-column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 20px;
	box-shadow:  5px 10px 8px 4px rgba(0, 0, 0, 0.5);
	text-shadow: 10px 5px 8px 4px rgba(0, 0, 0, 0.5);
}

.book-now {
    display: inline-block;
    padding: 10px 10px;
    background-color: #830508;
    color: white;
    text-decoration: none;
    border-radius: 20px;
	box-shadow:  5px 10px 8px 4px rgba(0, 0, 0, 0.5);
	text-shadow: 10px 5px 8px 4px rgba(0, 0, 0, 0.5);
}

.two-column-section {
  display: flex;
  justify-content: space-around;
  padding: 50px;
}

.two-column-section img {
	width: 200px;
	height: 100px;
}

.column {
  width: 45%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.column img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.column private {
	background-color: #eacda1;
}

.column fieldtrip {
	background-color: #94ab91;
}

.leftside {
	text-align: left;
	width: 50%;
	padding: 20px;
}

.rightside {
	align: right;
	
	padding-right: 30px;
}


.info {
	background-color:#1D1A1A;
	color: white;
	max-height: 500px;
	}
.info img {
	width: 200px;
	height: 150px;
}

.contactus {
	align-content: center
}

.contactus img {
	width: 100;
	height: auto;
}

.group-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.group-type {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.group-type img {
    margin-bottom: 15px;
}

.trip-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.trip-option {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.trip-option img {
    margin-bottom: 15px;
	width: 150px;
}

/* Tour Page Styles */
.tour-page {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tour-page header {
    text-align: center;
    margin-bottom: 30px;
}

.tour-page .subtitle {
    font-size: 1.2em;
    color: #666;
}

.tour-page .intro {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tour-page .intro img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.tour-page .highlights {
    margin-bottom: 30px;
}

.tour-page .highlights ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tour-page .tour-stops {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.tour-page .tour-stops .stop {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.tour-page .tour-stops .stop img {
    margin-bottom: 15px;
}

.tour-page .details ul {
    list-style: disc;
    padding-left: 40px;
}

.tour-page .booking {
    text-align: center;
}

.tour-page .learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;   

}

.tour-page .learn-more:hover {
    background-color: #0069d9;
}



.nav {
	background-color: transparent;
}

.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;

	
}

.nav li {
  float: Left;
}

.nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
.nav li a:hover {
  background-color: #444;
} 


.u-section-1 {
  background-image: linear-gradient(0deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url("images/bg.jpg");
  background-position: 50% 50%;
}

.u-section-1 .u-sheet-1 {
  min-height: 706px;
}

.u-section-1 .u-layout-wrap-1 {
  margin-top: 0;
  margin-bottom: -6px;
}

.u-section-1 .u-layout-cell-1 {
  min-height: 788px;
}

.u-section-1 .u-container-layout-1 {
  padding: 0;
}

.u-section-1 .u-image-1 {
  width: 532px;
  height: 313px;
  margin: 2px auto 0 -3px;
}

.u-section-1 .u-text-1 {
  letter-spacing: normal;
  text-transform: uppercase;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(128,128,128,1);
  margin: 10px 79px 0 16px;
}

.u-section-1 .u-text-2 {
  font-size: 1.25rem;
  text-shadow: 2px 2px 8px rgba(15,73,127,1);
  font-weight: 700;
  margin: 34px 32px 0 16px;
}

.u-section-1 .u-layout-cell-2 {
  min-height: 706px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-sheet-1 {
    min-height: 464px;
  }

  .u-section-1 .u-layout-wrap-1 {
    margin-bottom: 0;
  }

  .u-section-1 .u-layout-cell-1 {
    min-height: 650px;
  }

  .u-section-1 .u-image-1 {
    width: 486px;
    height: 286px;
    margin-left: 0;
  }

  .u-section-1 .u-text-1 {
    font-size: 2.25rem;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-1 .u-text-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-1 .u-layout-cell-2 {
    min-height: 582px;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    min-height: 322px;
  }

  .u-section-1 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-1 .u-image-1 {
    width: 372px;
    height: 219px;
  }

  .u-section-1 .u-text-1 {
    font-size: 1.875rem;
  }

  .u-section-1 .u-layout-cell-2 {
    min-height: 446px;
  }
}

@media (max-width: 767px) {
   .u-section-1 {
    background-position: 38.07% 0%;
  }

  .u-section-1 .u-sheet-1 {
    min-height: 1022px;
  }

  .u-section-1 .u-layout-wrap-1 {
    margin-top: -36px;
  }

  .u-section-1 .u-layout-cell-2 {
    min-height: 599px;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 508px;
  }

  .u-section-1 .u-layout-wrap-1 {
    margin-top: 60px;
  }

  .u-section-1 .u-container-layout-1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .u-section-1 .u-image-1 {
    width: 340px;
    height: 200px;
  }

  .u-section-1 .u-text-1 {
    font-size: 1.5rem;
  }

  .u-section-1 .u-layout-cell-2 {
    min-height: 377px;
  }
}.u-section-2 .u-sheet-1 {
  min-height: 749px;
}

.u-section-2 .u-text-1 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.25rem;
  margin: 47px auto 0 323px;
}

.u-section-2 .u-list-1 {
  grid-template-rows: auto;
  margin-top: 47px;
  margin-bottom: 60px;
}

.u-section-2 .u-repeater-1 {
  grid-template-columns: calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px);
  grid-gap: 10px 10px;
  min-height: 552px;
}

.u-section-2 .u-image-1 {
  background-image: linear-gradient(0deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url("images/Galveston-The-Strand_800x490.jpg");
  background-position: 50% 50%;
}

.u-section-2 .u-container-layout-1 {
  padding: 30px 0;
}

.u-section-2 .u-text-2 {
  text-shadow: 2px 2px 8px rgba(128,128,128,1);
  margin: 16px 23px 0 55px;
}

.u-section-2 .u-text-3 {
  text-shadow: 2px 2px 8px rgba(128,128,128,1);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 23px 8px 0;
}

.u-section-2 .u-image-2 {
  background-image: linear-gradient(0deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url("images/moody1.jpg");
  background-position: 50% 50%;
}

.u-section-2 .u-container-layout-2 {
  padding: 30px 0;
}

.u-section-2 .u-text-4 {
  text-shadow: 2px 2px 8px rgba(128,128,128,1);
  margin: 16px 23px 0 55px;
}

.u-section-2 .u-text-5 {
  text-shadow: 2px 2px 8px rgba(128,128,128,1);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 23px 8px 0;
}

.u-section-2 .u-image-3 {
  background-image:  url("images/treats.jpg");
  background-position: 50% 50%;
	
}

.u-section-2 .u-container-layout-3 {
  padding: 30px 0;
}

.u-section-2 .u-text-6 {
  text-shadow: 2px 2px 8px black;
  margin: 16px 23px 0 55px;
}

.u-section-2 .u-text-7 {
  text-shadow: 2px 2px 8px rgba(128,128,128,1);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 23px 8px 0;
}

@media (max-width: 1199px) {
  .u-section-2 .u-text-1 {
    margin-top: 26px;
    margin-left: 266px;
  }

  .u-section-2 .u-list-1 {
    margin-top: 56px;
  }

  .u-section-2 .u-repeater-1 {
    min-height: 375px;
  }

  .u-section-2 .u-text-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-2 .u-text-3 {
    margin-left: 1px;
    margin-right: 1px;
  }

  .u-section-2 .u-text-4 {
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-2 .u-text-5 {
    margin-left: 1px;
    margin-right: 1px;
  }

  .u-section-2 .u-text-6 {
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-2 .u-text-7 {
    margin-left: 1px;
    margin-right: 1px;
  }
}

@media (max-width: 991px) {
  .u-section-2 .u-text-1 {
    margin-top: 497px;
    margin-left: 204px;
  }

  .u-section-2 .u-list-1 {
    margin-top: -398px;
    margin-bottom: 0;
  }

  .u-section-2 .u-repeater-1 {
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
  }
}

@media (max-width: 767px) {
  .u-section-2 .u-text-1 {
    margin-top: 893px;
    margin-left: 153px;
  }

  .u-section-2 .u-list-1 {
    margin-top: -826px;
  }

  .u-section-2 .u-repeater-1 {
    grid-template-columns: 100%;
  }

  .u-section-2 .u-container-layout-1 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-2 .u-container-layout-2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-2 .u-container-layout-3 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .u-section-2 .u-text-1 {
    font-size: 1.5rem;
    margin-top: 944px;
    margin-left: 96px;
  }

  .u-section-2 .u-list-1 {
    margin-top: -941px;
  }
} .u-section-3 {
  background-image: none;
}

.u-section-3 .u-sheet-1 {
  min-height: 422px;
}

.u-section-3 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-section-3 .u-layout-cell-1 {
  min-height: 302px;
}

.u-section-3 .u-container-layout-1 {
  padding: 30px;
}

.u-section-3 .u-text-1 {
  margin-bottom: 0;
  margin-top: 27px;
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.u-section-3 .u-text-2 {
  font-size: 1.25rem;
  margin: 21px 0 0;
}

.u-section-3 .u-layout-cell-2 {
  min-height: 302px;
}

.u-section-3 .u-container-layout-2 {
  padding: 21px 30px;
}

.u-section-3 .u-image-1 {
  width: 299px;
  height: 260px;
  margin: 0 auto 0 0;
}

@media (max-width: 1199px) {
  .u-section-3 .u-sheet-1 {
    min-height: 369px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 249px;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 249px;
  }

  .u-section-3 .u-image-1 {
    width: 253px;
    height: 220px;
  }
}

@media (max-width: 991px) {
  .u-section-3 .u-sheet-1 {
    min-height: 220px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 191px;
  }

  .u-section-3 .u-image-1 {
    width: 180px;
    height: 157px;
  }
}

@media (max-width: 767px) {
  .u-section-3 .u-sheet-1 {
    min-height: 320px;
  }

  .u-section-3 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 430px;
  }

  .u-section-3 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-3 .u-text-1 {
    font-size: 1.5rem;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 271px;
  }
}.u-section-4 .u-sheet-1 {
  min-height: 641px;
}

.u-section-4 .u-text-1 {
  text-transform: uppercase;
  font-weight: 700;
  margin: 60px auto 0;
}

.u-section-4 .u-layout-wrap-1 {
  margin: 40px 0 60px;
}

.u-section-4 .u-layout-cell-1 {
  min-height: 447px;
}

.u-section-4 .u-container-layout-1 {
  padding: 30px;
}

.u-section-4 .u-image-1 {
  height: 383px;
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-4 .u-layout-cell-2 {
  min-height: 400px;
}

.u-section-4 .u-container-layout-2 {
  padding: 30px;
}

.u-section-4 .u-form-1 {
  margin-bottom: 0;
  margin-top: 0;
}

.u-section-4 .u-form-group-2 {
  margin-left: 0;
}

.u-section-4 .u-form-group-3 {
  margin-left: 0;
}

.u-section-4 .u-btn-1 {
  width: 100%;
  padding: 10px 0;
}

@media (max-width: 1199px) {
  .u-section-4 .u-sheet-1 {
    min-height: 571px;
  }

  .u-section-4 .u-layout-wrap-1 {
    margin-right: initial;
    margin-left: initial;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 369px;
  }

  .u-section-4 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-4 .u-image-1 {
    height: 308px;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 330px;
  }
}

@media (max-width: 991px) {
  .u-section-4 .u-sheet-1 {
    min-height: 494px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 283px;
  }

  .u-section-4 .u-image-1 {
    height: 225px;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 100px;
  }
}

@media (max-width: 767px) {
  .u-section-4 .u-sheet-1 {
    min-height: 721px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 425px;
  }

  .u-section-4 .u-image-1 {
    height: 390px;
  }

  .u-section-4 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-4 .u-sheet-1 {
    min-height: 580px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 268px;
  }

  .u-section-4 .u-image-1 {
    height: 240px;
  }
}







/* Responsive Styles */
@media (max-width: 768px) {
    .tour-page .intro {
        flex-direction: column;
    }

    .tour-page .intro img {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }
    .textbox {
        font-size: 18px;
        padding: 15px;
    }
    .tour-grid {
        grid-template-columns: repeat(1, 1fr); /* Single column on mobile */
    }
    .tour-column {
        width: 100%;
        padding: 10px;
    }
.two-column-section {
    flex-direction: column;
    align-items: center;
  }
	
	.two-column-section img {
	width: 200px;
	height: auto;
}

  .column {
    width: 90%;
    margin-bottom: 20px;
  }
}