/* ============================================
   DYNAMIC HEADER STYLES - LAZZORA VOYAGES
   ============================================ */

/* Header Top Bar */
.header-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 0;
}

/* Company Branding */
.company-logo {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.company-name:hover {
    color: #764ba2;
}

.company-tagline {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Contact Information */
.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
    transform: translateY(-1px);
}

.contact-item i {
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Navigation */
.navbar {
    background: white !important;
    padding: 8px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: #667eea !important;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: #667eea !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
}

/* Book Now Button */
.btn-book-now {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.2);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    color: white;
    background: linear-gradient(135deg, #FF5555 0%, #FF7777 100%);
}

.btn-book-now i {
    margin-right: 5px;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Styles */
.tour-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Dynamic Hero Slideshow */
.lazzora-hero-slideshow {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

.lazzora-hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    transition: opacity 2s ease-in-out !important;
    z-index: 1 !important;
}

.lazzora-hero-slide.active {
    opacity: 1 !important;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
}

/* Loading States */
.hero-loading {
    opacity: 0.6;
    animation: pulse 1.5s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Tour Code Badge */
.tour-code-display {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Typography */
.tour-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.tour-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.tour-duration {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
}

.tour-duration i {
    margin-right: 8px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #FF5555 0%, #FF7777 100%);
}

.hero-buttons .btn-white {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-white:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Slideshow Info Overlay */
.slide-info-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    z-index: 4;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-day {
    font-weight: 600;
    margin-bottom: 4px;
    color: #FF6B6B;
}

.slide-location {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tour-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .tour-title {
        font-size: 2.8rem;
    }
    
    .tour-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        text-align: center;
        padding: 12px 0;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .company-tagline {
        font-size: 0.8rem;
    }
    
    .tour-hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 40px 0;
        text-align: center;
    }
    
    .tour-title {
        font-size: 2.5rem;
    }
    
    .tour-subtitle {
        font-size: 1.2rem;
    }
    
    .tour-duration {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .slide-info-overlay {
        bottom: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-main {
        padding: 8px 0;
    }
    
    .company-logo {
        max-height: 45px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .tour-title {
        font-size: 2rem;
    }
    
    .tour-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-book-now {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
}/* ============================================
   DYNAMIC HEADER STYLES - LAZZORA VOYAGES
   ============================================ */

/* Header Top Bar */
.header-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 0;
}

/* Company Branding */
.company-logo {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.company-name:hover {
    color: #764ba2;
}

.company-tagline {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Contact Information */
.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
    transform: translateY(-1px);
}

.contact-item i {
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Navigation */
.navbar {
    background: white !important;
    padding: 8px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: #667eea !important;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: #667eea !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
}

/* Book Now Button */
.btn-book-now {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.2);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    color: white;
    background: linear-gradient(135deg, #FF5555 0%, #FF7777 100%);
}

.btn-book-now i {
    margin-right: 5px;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Styles */
.tour-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Dynamic Hero Slideshow */
.lazzora-hero-slideshow {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

.lazzora-hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    transition: opacity 2s ease-in-out !important;
    z-index: 1 !important;
}

.lazzora-hero-slide.active {
    opacity: 1 !important;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
}

/* Loading States */
.hero-loading {
    opacity: 0.6;
    animation: pulse 1.5s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Tour Code Badge */
.tour-code-display {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Typography */
.tour-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.tour-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.tour-duration {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
}

.tour-duration i {
    margin-right: 8px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #FF5555 0%, #FF7777 100%);
}

.hero-buttons .btn-white {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-white:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Slideshow Info Overlay */
.slide-info-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    z-index: 4;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-day {
    font-weight: 600;
    margin-bottom: 4px;
    color: #FF6B6B;
}

.slide-location {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tour-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .tour-title {
        font-size: 2.8rem;
    }
    
    .tour-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        text-align: center;
        padding: 12px 0;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .company-tagline {
        font-size: 0.8rem;
    }
    
    .tour-hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 40px 0;
        text-align: center;
    }
    
    .tour-title {
        font-size: 2.5rem;
    }
    
    .tour-subtitle {
        font-size: 1.2rem;
    }
    
    .tour-duration {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .slide-info-overlay {
        bottom: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-main {
        padding: 8px 0;
    }
    
    .company-logo {
        max-height: 45px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .tour-title {
        font-size: 2rem;
    }
    
    .tour-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-book-now {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
}