/* =========================
   Pleuroid - Custom Styles
   ========================= */

:root {
    --primary-color: #f9b4ab;
    --secondary-color: #fdebd3;
    --dark-color: #264e70;
    --accent-color: #679186;
    --light-bg: #bbd4ce;
    --white: #ffffff;
    --black: #000000;
    
    --font-primary: 'Dosis', sans-serif;
    --font-secondary: 'Prompt', sans-serif;
    --font-tertiary: 'Karma', serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Navigation */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.custom-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 2rem;
    color: var(--dark-color);
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 78, 112, 0.7) 0%, rgba(249, 180, 171, 0.3) 100%);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    transform: rotate(180deg);
}

.hero-waves svg {
    display: block;
    width: 100%;
    height: 120px;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding-top: 50px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
}

.price-label {
    font-size: 1rem;
    margin-right: 0.5rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.hero-buttons .btn {
    margin: 0.5rem 0;
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #f7a299;
    border-color: #f7a299;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 180, 171, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Section Styling */
.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

/* Experience Cards */
.experiences-section {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    transform: rotate(180deg);
}

.section-decoration svg {
    display: block;
    width: 100%;
    height: 120px;
}

.experience-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}


.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}
.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-card .card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.experience-card .card-content {
    padding: 2rem;
}

.experience-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.experience-card p {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Calendar Section */
.calendar-section {
    background: var(--secondary-color);
}

.calendar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-header h4 {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 1rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.calendar-day.available {
    background: var(--light-bg);
    color: var(--dark-color);
}

.calendar-day.available:hover {
    background: var(--accent-color);
    color: var(--white);
}

.calendar-day.booked {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: var(--white);
}

.calendar-legend {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.available {
    background: var(--light-bg);
}

.legend-color.booked {
    background: #e9ecef;
}

.legend-color.selected {
    background: var(--primary-color);
}

.availability-info {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.info-content {
    padding: 2rem;
}

.info-content h3 {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Yacht Cards */
.yachts-section {
    background: var(--white);
}

.yacht-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.yacht-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.yacht-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.yacht-price .price {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.yacht-price .period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.yacht-info {
    padding: 2rem;
}

.yacht-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.yacht-specs {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.yacht-description {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.yacht-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.feature i {
    color: var(--primary-color);
}

/* Why Us Section */
.why-us-section {
    position: relative;
    background: var(--secondary-color);
}

.decorative-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.decorative-shape svg {
    display: block;
    width: 100%;
    height: 120px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.why-us-section h3 {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-us-section p {
    color: var(--accent-color);
}

/* Testimonials */
.testimonials-section {
    background: var(--white);
    overflow: hidden;
}

.testimonial-swiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
}

.testimonial-content .stars {
    margin-bottom: 1rem;
}

.testimonial-content .stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

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

.author-info h4 {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Themed Trips */
.themed-trips-section {
    background: var(--light-bg);
}

.themed-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.themed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.themed-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.themed-content {
    padding: 2rem;
}

.themed-content h3 {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.themed-content h3 i {
    color: var(--primary-color);
}

.themed-content p {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.quote-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    color: var(--dark-color);
}

.widget-header h2 {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.widget-header p {
    color: var(--accent-color);
}

.quote-form .form-label {
    font-weight: 500;
    color: var(--dark-color);
}

.quote-form .form-control,
.quote-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(249, 180, 171, 0.25);
}

.quote-summary {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.summary-item span:last-child {
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-brand {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: var(--white);
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.newsletter h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 0;
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 0.5rem 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .calendar-grid {
        font-size: 0.8rem;
    }
    
    .yacht-features {
        justify-content: center;
    }
    
    .quote-widget {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        margin: 0 1rem;
    }

    .legal-page{
        padding-top: 80px!important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .experience-card .card-content,
    .yacht-info,
    .themed-content {
        padding: 1.5rem;
    }
    
    .quote-widget {
        padding: 1.5rem 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f7a299;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .hero-section,
    .quote-section,
    .footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .section-title {
        font-size: 18pt;
        margin-bottom: 12pt;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #d63384;
        --dark-color: #000000;
        --accent-color: #0d6efd;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}