/* Qulento - Custom Styles */

/* Root Variables */
:root {
    --primary-blue: #0066cc;
    --secondary-turquoise: #17a2b8;
    --accent-gold: #ffd700;
    --deep-blue: #003d6b;
    --light-blue: #e6f3ff;
    --white: #ffffff;
    --dark-text: #2c3e50;
    --light-text: #6c757d;
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-sunset: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-medium: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-strong: 0 20px 60px rgba(0,0,0,0.2);
}

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

body {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    font-style: italic;
}

.text-gradient {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* Navigation */
.navbar {
    background: rgba(0, 51, 102, 0.9);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-scrolled {
    background: rgba(0, 51, 102, 0.95);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: white !important;
    display: flex;
    align-items: center;
}

.brand-icon {
    font-size: 2.5rem;
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

.brand-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #0066cc 0%, #003d6b 50%, #001a2e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-waves {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cpath d='M0,160L48,149.3C96,139,192,117,288,122.7C384,128,480,160,576,165.3C672,171,768,149,864,128C960,107,1056,85,1152,90.7L1200,96L1200,200L1152,200C1056,200,960,200,864,200C768,200,672,200,576,200C480,200,384,200,288,200C192,200,96,200,48,200L0,200Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
    animation: waveAnimation 3s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    border: none;
    color: var(--dark-text);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-yacht-container {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.hero-yacht-container:hover {
    transform: perspective(1000px) rotateY(-10deg) scale(1.05);
}

.hero-yacht-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    filter: brightness(1.1) contrast(1.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 9px;
    width: 8px;
    height: 8px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Experiencias Section */
.experiencias-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.experiencias-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.03'%3E%3Cpath d='M50 30c11.046 0 20 8.954 20 20s-8.954 20-20 20-20-8.954-20-20 8.954-20 20-20zm0 5c-8.284 0-15 6.716-15 15s6.716 15 15 15 15-6.716 15-15-6.716-15-15-15z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.experiencia-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

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

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

.experiencia-card:hover .card-image img {
    transform: scale(1.1);
}

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

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

.experiencia-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.experiencia-card .price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.experiencia-card .price span {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 400;
}

/* Servicios Section */
.servicios-section {
    background: var(--gradient-ocean);
    position: relative;
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill-opacity='0.1'%3E%3Cpath d='M30 30l15-15v30l-15-15zm-15 0L0 15v30l15-15z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

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

.yacht-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.yacht-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

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

.yacht-info {
    padding: 2rem;
    color: white;
}

.yacht-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.yacht-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.yacht-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.yacht-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.yacht-price span {
    font-size: 1rem;
    opacity: 0.8;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--accent-gold);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-gold);
}

/* Destinos Section */
.destinos-section {
    padding: 5rem 0;
}

.destino-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.destino-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 51, 102, 0.8), transparent);
    display: flex;
    align-items: end;
    padding: 2rem;
    transition: all 0.3s ease;
}

.destino-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.destino-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destino-content p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.destino-content i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.destino-card:hover img {
    transform: scale(1.1);
}

.destino-card:hover .destino-overlay {
    background: linear-gradient(45deg, rgba(0, 51, 102, 0.9), rgba(0, 102, 204, 0.3));
}

.destino-card:hover .destino-content {
    transform: translateY(0);
}

/* Contacto Rápido Section */
.contacto-rapido-section {
    background: var(--gradient-sunset);
    position: relative;
    overflow: hidden;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.hero-subtitle{
    margin: 20px auto;
}
/* .contact-method:hover {
    color: white;
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
} */

.contact-method i {
    font-size: 2rem;
    color: var(--accent-gold);
    width: 60px;
    text-align: center;
}

.contact-method h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: white;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #001a2e 0%, #003d6b 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer h5 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--accent-gold);
    width: 20px;
    margin-right: 10px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.made-in-spain {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--dark-text);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-yacht-container {
        transform: none;
        margin-top: 2rem;
    }
    
    .contact-methods {
        margin-bottom: 2rem;
    }
    
    .yacht-specs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .destino-card {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .brand-icon {
        font-size: 2rem;
    }
    
    .experiencia-card .card-content,
    .yacht-info,
    .contact-form {
        padding: 1.5rem;
    }

    .hero-section{
        padding-top: 120px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

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

html{
    overflow-x: hidden;
}