/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

*{
	box-sizing: border-box;
}

:root{
	--primary-color: #01507e;
	--secondary-color: #f69710;
}

img{
	max-width: 100%;
}

.container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Header Styles */
.cruise-header {
    background: #fff;
    border-radius: 15px;
    padding: 10px 15px;
    position: fixed;
    top: 20px;
    left: 10px;
    right: 10px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: calc(100% - 20px);
    transition: all 0.3s ease;
}

.cruise-header.cruise-header-scrolled {
    top: 0;
}

.cruise-menu-toggle{
	border: none;
	background: transparent;
	outline: none;
	color: var(--primary-color);
}

.cruise-mobile-menu {
    position: relative;
    overflow-y: scroll;
    width: 100%;
    height: 100vh;
    background: rgb( 0 0 0 / 55% );
    z-index: 1001;
    opacity: 0;
 	visibility: hidden;
	display: none;
    transition: all .3s ease;
}

.cruise-mobile-menu .menu-primary-container {
    position: absolute;
    width: 70%;
    z-index: 1001;
    background: #fff;
    height: 100%;
    right: 0;
    padding: 30px 10px 20px;
}

.cruise-mobile-menu.visible{
	display: block;
}
.cruise-mobile-menu.show{
	opacity: 1;
	visibility: visible;
}

.cruise-menu-toggle.menu-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1002;
}

.cruise-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
.cruise-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cruise-desktop-menu{
	display: none;
}

.cruise-menu-item {
    position: relative;
}

.cruise-menu-item a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.cruise-menu-item a:hover {
    color: var(--secondary-color);
}

/* Mega Menu */
.cruise-mega-menu .cruise-submenu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 600px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cruise-mega-columns-2 .cruise-submenu {
    grid-template-columns: repeat(2, 1fr);
}

.cruise-mega-columns-4 .cruise-submenu {
    grid-template-columns: repeat(4, 1fr);
}

.cruise-submenu h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #0073aa;
}

/* Main Content */
.cruise-main {
    padding: 20px 0;
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

img.custom-logo {
    max-width: 120px;
    height: auto;
}

.banner {
    min-height: 50vh;
    background: url(https://images.pexels.com/photos/1117773/pexels-photo-1117773.jpeg) no-repeat center / cover;
}

/* Cruise Card */

.cruise-card{
	background: #fff;
	border-radius: 8px;
	position: relative;
	height: 100%;
}

.cruise-card-body{
	padding: 10px;
}

.cruise-card img{
	height: 100%;
}

.card-top-img {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.card-bottom-img {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.card-rounded-img{
	border-radius: 8px;
}

.card-title {
    color: var(--primary-color);
    text-decoration: none;
}

.card-title.sticky{
    position: absolute;
    background: #eee8;
    padding: 5px 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.sticky.bottom-right{
    bottom: 20px; 
    right: 0px;
}


.section-top-cruise{
	padding: 40px 0;
	background: url(/wp-content/uploads/2025/07/background-ocean.webp) no-repeat center / cover;
	position: relative;
}
.section-top-cruise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #01517dc9;
    z-index: 1;
}

.section-top-cruise .container-fluid{
	position: relative;
	z-index: 2;
}

.heading-title{
	color: #fff;
	font-size: 1.8rem;
	margin-top: 0;
	margin-bottom: 1.8rem;
}

.text-start{
	text-align: left !important; 
}

.text-center{
	text-align: center !important;
}

.text-end{
	text-align: right !important;
}

.cruise-footer-widgets {
    display: flex;
	flex-flow: wrap column;
}
.cruise-footer-widget-area {
    width: 100%;
}
footer.cruise-footer {
    background-color: #014f81;
	padding: 30px 0px;
}
h2.wp-block-heading {
    color: #fff;
}
p.widget.widget_block.widget_text {
    color: #fff;
}
/* blog page css */
.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.img-fluid {
  border-bottom: 1px solid #eee;
  border-radius: 8px 8px 0px 0px;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.card-text {
  color: #555;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}
/* single post css */
  .post-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}


@media screen and (min-width: 786px){
	
}

@media screen and (min-width: 1080px){
	.container-fluid {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.cruise-header{
		max-width: calc(100% - 80px);
		padding: 10px 30px;
		left: 40px;
		right: 40px;
	}
	
	.banner.home-banner{
		min-height: 100vh;
	}
	
	.cruise-desktop-menu{
		display: flex;
	}
	
	.cruise-menu-toggle{
		display: none;
	}
	.cruise-mobile-menu{
		display: none;
	}
	
	.text-lg-start{
		text-align: left !important; 
	}

	.text-lg-center{
		text-align: center !important;
	}

	.text-lg-end{
		text-align: right !important;
	}
	
	.cruise-footer-widgets {
		flex-flow: wrap row;
	}
	.cruise-footer-widget-area {
		width: 25%;
	}
	
}

