/*
Theme Name: Wp-Director Custom Theme
Theme URI: https://www.fiverr.com/sellers/wpdirector/
Author: Nishat Ara
Author URI: https://www.fiverr.com/sellers/wpdirector/
Description: Set sail on a journey of elegance and adventure with our cruise-themed design. Inspired by the serenity of the open sea and the luxury of onboard experiences, this theme brings a refreshing, nautical vibe to every page, making your content feel like a voyage.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simple-elementor-theme
Tags: elementor, one-column, custom-menu, featured-images
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.site-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Header */
.site-header {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

/* Main Content */
.site-content {
    min-height: 50vh;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.site-footer a {
    color: #fff;
}

/* Elementor Compatibility */
.elementor-page {
    margin: 0;
    padding: 0;
}

.elementor-section {
    width: 100%;
}

/* Image Styles - Full Width */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.elementor-widget-image img,
.wp-block-image img,
.elementor-image img {
    width: 100%;
    height: auto;
}

/* Ensure images in containers are full width */
.elementor-widget-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Image Overlay - Elementor Widget Extension */
.has-image-overlay .elementor-widget-container {
    position: relative;
    display: block;
}

.has-image-overlay .elementor-widget-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Ensure image stays below overlay */
.has-image-overlay .elementor-widget-container img {
    position: relative;
    z-index: 1;
}
/* === Custom Header & Mobile Menu Fix === */
.main-header {
    background: #fff;
    border-bottom: 1px solid #fff;
    position: relative;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}
.logo-area img {
    max-height: 50px;
}
.main-navigation .nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}
.main-navigation .nav-menu li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
}
.mobile-menu-toggle {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding-top: 20px;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #000;
}
.mobile-menu {
    display: none;
}
/* === Mobile Styles === */
@media (max-width: 991px) {
    .main-navigation {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
	.mobile-menu {
		display: none;
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: #ff7000;
		z-index: 9999;
		overflow-y: auto;
		padding: 40px 20px;
		transition: left 0.4s ease-in-out;
	}
    .mobile-menu.active {
        display: block;
    }
    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }
    .mobile-menu ul li {
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }
    .mobile-menu ul li a {
        color: #000;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
    }
}

/* === Header Spacing & Mobile Menu Slide Fix === */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navigation .nav-menu li a:hover {
    color: #FF7001;
}

/* Mobile Slide Menu */
	.mobile-menu {
		display: none;
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: #fff;
		z-index: 9999;
		overflow-y: auto;
		padding: 40px 20px;
		transition: left 0.4s ease-in-out;
	}

.mobile-menu.active {
    display: block;
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.mobile-menu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

body.menu-open {
    overflow: hidden;
}

/* === Mobile Menu Close Button === */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    font-weight: 700;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}
.mobile-menu-close:hover {
    color: #0073e6;
}
