/* Custom CSS for Seasaria Yacht Rentals */

:root {
    --primary-blue: #8EACCD;
    --accent-green: #DEE5D4;
    --highlight-yellow: #FEF9D9;
    --background-blue: #D2E0FB;
    --white: #ffffff;
    --dark: #2c3e50;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(142, 172, 205, 0.1);
    --shadow-hover: 0 20px 40px rgba(142, 172, 205, 0.15);
}

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

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

.font-mitr {
    font-family: 'Mitr', sans-serif;
}

.font-martel {
    font-family: 'Martel', serif;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-blue), #6c8fb3);
    color: white;
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(142, 172, 205, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(142, 172, 205, 0.15);
}

.navbar-brand {
    font-family: 'Mitr', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue) !important;
    text-decoration: none;
}

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

html{
    overflow-x: hidden;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    background-color: rgba(142, 172, 205, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
    background-color: rgba(142, 172, 205, 0.15);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--background-blue) 0%, var(--highlight-yellow) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

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

.highlight-text {
    color: var(--primary-blue);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 30px;
    transition: var(--transition);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Mitr', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}


.hero-image video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-image video:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow);
}

.floating-element.element-1 {
    top: 20%;
    right: 10%;
    animation-delay: -1s;
}

.floating-element.element-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: -3s;
}

.floating-element.element-3 {
    top: 60%;
    right: 20%;
    animation-delay: -5s;
}

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

/* Wave Dividers */
.wave-divider {
    position: relative;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    width: calc(100% + 1.3px);
    height: 100%;
    position: relative;
    left: 0;
}

.wave-divider.wave-flip {
    transform: rotate(180deg);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(142, 172, 205, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Mitr', sans-serif;
}

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

.feature-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stat-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Mitr', sans-serif;
}

.stat-text {
    color: #666;
    font-size: 0.9rem;
}

/* Yacht Cards */
.yacht-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.yacht-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.yacht-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.yacht-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.yacht-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Mitr', sans-serif;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
}

.yacht-content {
    padding: 1.5rem;
}

.yacht-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

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

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

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

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

/* Route Cards */
.route-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.route-season {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.route-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

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

.route-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #666;
}

.highlight-item i {
    color: var(--primary-blue);
    width: 16px;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
    margin: 0 0.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

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

/* Gallery */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(142, 172, 205, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Quote Calculator */
.calculator-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.quote-form .form-control,
.quote-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(142, 172, 205, 0.25);
}

.quote-result {
    background: linear-gradient(135deg, var(--background-blue), var(--highlight-yellow));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.result-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.result-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Mitr', sans-serif;
    margin-bottom: 0.5rem;
}

.result-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

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

.footer-brand h3 {
    color: var(--primary-blue);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

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

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bbb;
}

.contact-item i {
    color: var(--primary-blue);
    width: 16px;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #6c8fb3);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6c8fb3, var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .yacht-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .calculator-card {
        padding: 2rem 1.5rem;
    }

    .hero-content{
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

.gallery-overlay{
    display: none;
}
    