/*
Theme Name: Luxury Daily Cruises
Description: A premium yacht rental WordPress theme with WooCommerce integration, inspired by maritime elegance and luxury experiences.
Version: 1.0
Author: Custom Theme Developer
Text Domain: luxury-daily-cruises
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: yacht-rental, woocommerce, luxury, maritime, booking
*/

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




body {
   font-family: 'Roboto', sans-serif;
	
	
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Transparent header on front page */
.home .site-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home .site-header .site-logo {
    color: white;
}

.home .site-header .main-navigation a {
    color: white;
}

.home .site-header .header-phone {
    color: rgba(255, 255, 255, 0.9);
}

.home .site-header .header-cta {
    border-color: white;
    color: white;
}

.home .site-header .header-cta:hover {
    background: white;
    color: #2c5aa0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.home .site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.home .site-header.scrolled .site-logo {
    color: #2c5aa0;
}

.home .site-header.scrolled .main-navigation a {
    color: #333;
}

.home .site-header.scrolled .header-phone {
    color: #666;
}

.home .site-header.scrolled .header-cta {
    border-color: #2c5aa0;
    color: #2c5aa0;
}

.home .site-header.scrolled .header-cta:hover {
    background: #2c5aa0;
    color: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 2rem;
    font-weight: 300;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.site-logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.site-branding {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.main-navigation a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-navigation a:hover {
    color: #2c5aa0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
}

.header-cta {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-cta:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-2px);
}

/* Mobile Menu */
.menu-toggle {
    display: none; /* Will be overridden in responsive styles */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.menu-toggle-icon {
    width: 25px;
    height: 2px;
    background: white;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.home .menu-toggle-icon {
    background: white;
}

.home .menu-toggle-icon::before,
.home .menu-toggle-icon::after {
    background: white;
}

.home .site-header.scrolled .menu-toggle-icon {
    background: #333;
}

.home .site-header.scrolled .menu-toggle-icon::before,
.home .site-header.scrolled .menu-toggle-icon::after {
    background: #333;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    width: 25px;
    height: 2px;
    background: white;
    position: absolute;
    transition: all 0.3s ease;
}

/* Menu toggle active state */
.menu-toggle.active .menu-toggle-icon {
    background: transparent;
}

.menu-toggle.active .menu-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .menu-toggle-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    top: 8px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
	
	background: linear-gradient(rgba(44, 90, 160, 0.2), rgba(44, 90, 160, 0.2)), url('https://www.luxurydailycruises.com/wp-content/uploads/2025/06/Photo-15-6-23-14-23-14-scaled.jpg');
  
  background-position: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    background: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero-cta:hover {
    background: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

/* Search Form */
.yacht-search-form {

	    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

	background: rgba(255, 255, 255, 0.45);
  padding: 2.5rem;
  border-radius: 15px;
  display: grid;
  gap: 1rem;
  margin: 3rem auto 0;
  max-width: 600px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-field-group {
    position: relative;
}

.search-field-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-field {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.search-field:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
    transform: translateY(-2px);
}

.search-field::placeholder {
    color: #999;
    font-weight: 400;
}

.search-button {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.search-button:hover {
    background: linear-gradient(135deg, #1e3f73 0%, #2c5aa0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.3;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-item i {
    color: #2c5aa0;
    font-size: 1.2rem;
}

.about-video {
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(45deg, #2c5aa0, #1a2332);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: url('https://www.luxurydailycruises.com/wp-content/uploads/2025/06/Photo-15-6-23-14-23-14-scaled.jpg');
    background-size: cover;
    background-position: center;
	
	background-position: center;
    background: url(https://www.luxurydailycruises.com/wp-content/uploads/2025/06/Photo-15-6-23-14-23-14-scaled.jpg);
    background-size: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.5rem;
    color: #2c5aa0;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

/* Yacht Grid */
.yacht-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .yacht-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .yacht-grid {
        grid-template-columns: 1fr;
    }
}

/* Apply the same styles to yacht cards in the grid as in the archive */
.yacht-grid .yacht-card-modern {
    height: 100%;
}

.yacht-image-container {
    position: relative;
    overflow: hidden;
}

.yacht-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yacht-card:hover .yacht-image {
    transform: scale(1.05);
}

.yacht-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(44, 90, 160, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yacht-info {
    padding: 2rem;
}

.yacht-name {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.yacht-name a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.yacht-name a:hover {
    color: #2c5aa0;
}

.yacht-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.yacht-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.yacht-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yacht-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
}

.price-period {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
}

/* Dark Sections */
.dark-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c5aa0 100%);
    color: white;
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.dark-section .container {
    position: relative;
    z-index: 2;
}

.dark-section .section-title {
    color: white;
}

.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #ffffff;
}

/* Experiences Content */
.experiences-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.experiences-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 800px;
}

.experiences-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experiences-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.experience-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.highlight-item i {
    color: #2c5aa0;
    font-size: 1.2rem;
}

/* Mobile Responsive for Experiences */
@media (max-width: 900px) {
    .experiences-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experiences-video {
        height: 300px;
    }
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 2rem;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.star.filled {
    color: #ffc107;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.author-location {
    color: #999;
    font-size: 0.9rem;
}

.yacht-booked {
    color: #2c5aa0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Crew Grid */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.crew-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.crew-photo {
    height: 250px;
    overflow: hidden;
}

.crew-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.crew-card:hover .crew-photo img {
    transform: scale(1.05);
}

.crew-info {
    padding: 2rem;
}

.crew-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.crew-position {
    color: #2c5aa0;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.crew-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.crew-details {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.crew-detail {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.difficulty-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.difficulty-easy {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.difficulty-moderate {
    background: rgba(255, 193, 7, 0.9);
    color: white;
}

.difficulty-challenging {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.destination-info {
    padding: 2rem;
}

.destination-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.destination-name a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.destination-name a:hover {
    color: #2c5aa0;
}

.destination-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.destination-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a2332 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;

}
