:root {
    --primary-color: #39A7FF;
    --secondary-color: #87C4FF;
    --accent-color: #E0F4FF;
    --warm-color: #FFEED9;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(57,167,255,0.95), rgba(135,196,255,0.95));
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--warm-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57,167,255,0.8), rgba(135,196,255,0.6));
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--text-light);
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bubble {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.bubble-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Wave Animation */
.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ffffff'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ffffff'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
    animation: wave 3s linear infinite;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

/* Section Styles */
.section-title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Weather Section */
.weather-section {
    background: var(--accent-color);
    position: relative;
}

.weather-widget {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.weather-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57,167,255,0.05), rgba(135,196,255,0.05));
    z-index: 1;
}

.weather-item {
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.weather-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.weather-item h4 {
    font-family: 'Droid Sans', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.weather-item p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Quiz Section */
.yacht-quiz {
    background: linear-gradient(135deg, var(--warm-color), #fff);
}

.quiz-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 0 auto;
}

.quiz-question {
    display: none;
    text-align: center;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    background: var(--accent-color);
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quiz-option:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.quiz-result {
    text-align: center;
}

.quiz-result h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Route Generator */
.route-generator {
    background: var(--accent-color);
}

.route-selector {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-select {
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(57,167,255,0.25);
}

#generated-route {
    background: var(--accent-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    display: none;
}

/* Parallax Gallery */
.parallax-gallery {
    margin: 4rem 0;
}

.parallax-item {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.parallax-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    transition: transform 0.3s ease;
}

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

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(57,167,255,0.8), rgba(135,196,255,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.parallax-overlay h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.parallax-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Customer Stories */
.customer-stories {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

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

.story-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: var(--shadow-heavy);
    color: var(--text-dark);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex-direction: column;
}



.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 0;
    margin-bottom: 15px;
    object-fit: cover;
}

.story-header h4 {
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 0.25rem;
}

.story-content p {
    font-style: italic;
    line-height: 1.6;
}

/* Availability Calendar */
.availability-calendar {
    background: var(--accent-color);
}

.calendar-widget {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

.calendar-header h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    color: var(--text-dark);
    margin: 0;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day.available {
    background: var(--accent-color);
    color: var(--text-dark);
}

.calendar-day.occupied {
    background: #ffcccb;
    color: #d32f2f;
}

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

.calendar-day:hover {
    transform: scale(1.1);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

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

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

.legend-color.occupied {
    background: #ffcccb;
}

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

/* Nautical Phrases */
.nautical-phrases {
    background: var(--primary-color);
    color: white;
    overflow: hidden;
}

.phrases-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.phrase-item {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 1.2rem;
    margin-right: 3rem;
    font-weight: 500;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Reviews Wave */
.reviews-wave {
    background: var(--accent-color);
    position: relative;
}

.wave-reviews {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.review-wave {
    position: relative;
    width: 100%;
    height: 100%;
}

.review-bubble {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    animation: wave-float 4s ease-in-out infinite;
    max-width: 250px;
}

.bubble-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.bubble-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

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

.review-content {
    text-align: center;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-content p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.review-content small {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #34495e);
    color: var(--text-light);
}

.footer h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer h5 {
    font-family: 'Droid Sans', sans-serif;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}
.navbar-brand img{
    max-width: 200px;
}

html{
    overflow-x: hidden;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-banner .btn {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .parallax-image {
        background-attachment: scroll;
    }
    
    .quiz-options {
        gap: 0.5rem;
    }
    
    .quiz-option {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phrase-item {
        font-size: 1rem;
    }
    
    .review-bubble {
        max-width: 200px;
        padding: 1rem;
    }
    
    .bubble-1, .bubble-3 {
        left: 5%;
    }
    
    .bubble-2, .bubble-4 {
        right: 5%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .weather-item {
        margin-bottom: 1rem;
    }
    
    .parallax-item {
        height: 300px;
    }
    
    .parallax-overlay h3 {
        font-size: 1.5rem;
    }
    
    .story-card {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .calendar-legend {
        align-items: center;
    }
}

.yacht-image img{
    height: 300px;
    object-fit: cover;
}

.stat-number{
    font-size: 2rem;
    font-weight: bold;
}

.hero-section-page{
    height: 100vh;
}

.hero-section-page .container{
    position: relative;
    z-index: 10;
    padding-top: 120px;
}
.hero-section-legal{
    padding-top: 100px;
}