/* Variables CSS */
:root {
    --primary-coral: #f9b4ab;
    --cream: #fdebd3;
    --navy: #264e70;
    --sage: #679186;
    --mint: #bbd4ce;
    --white: #ffffff;
    --dark: #1a1a1a;
}

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Amiri', serif;
    font-weight: 700;
    line-height: 1.3;
}

.elegant-text {
    font-family: 'Frank Ruhl Libre', serif;
}

/* Utilidades */
.section-padding {
    padding: 100px 0;
}

.bg-cream {
    background-color: var(--cream);
}

.bg-navy {
    background-color: var(--navy);
}

.bg-mint {
    background-color: var(--mint);
}

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--sage);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

/* Navegación */
.navbar-luxury {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(38, 78, 112, 0.1);
}

.navbar-luxury.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-family: 'Amiri', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--navy);
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

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

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

/* Botones */
.btn-luxury {
    background: linear-gradient(135deg, var(--primary-coral), var(--sage));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sage), var(--primary-coral));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-luxury:hover::before {
    left: 0;
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-luxury {
    border: 2px solid var(--primary-coral);
    background: transparent;
    color: var(--primary-coral);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 180, 171, 0.9), rgba(103, 145, 134, 0.8)),
                url('../images/banner.jpg') center/cover;
    z-index: -2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.3;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Secret Places Cards */
.secret-place-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.secret-place-card:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.card-overlay h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

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

.experience-card.featured {
    border: 3px solid var(--primary-coral);
}

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

.experience-content {
    padding: 30px;
    position: relative;
}

.experience-price {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-coral);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.experience-card h3 {
    margin: 20px 0 15px;
    color: var(--navy);
}

.experience-card h4 {
    margin-bottom: 10px;
    color: var(--navy);
}

.experience-features {
    list-style: none;
    margin: 20px 0;
}

.experience-features li {
    margin: 8px 0;
    color: var(--sage);
}

.experience-features i {
    color: var(--primary-coral);
    margin-right: 10px;
}

.experience-card.compact {
    display: flex;
    height: 120px;
}

.experience-card.compact .experience-img {
    width: 150px;
    height: 100%;
    flex-shrink: 0;
}

.experience-card.compact .experience-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-card.compact h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.experience-card.compact p {
    font-size: 0.9rem;
    color: var(--sage);
    margin: 0;
}

/* Interactive Map */
.interactive-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) saturate(70%) hue-rotate(200deg);
}

.map-pin {
    position: absolute;
    color: var(--primary-coral);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.map-pin:hover {
    transform: scale(1.3);
    animation: none;
}

.pin-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--navy);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.map-pin:hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.pin-tooltip h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.pin-tooltip p {
    font-size: 0.9rem;
    color: var(--sage);
    margin: 0;
}

/* Masonry Gallery */
.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative!important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.gallery-overlay p {
    font-style: italic;
    margin-bottom: 5px;
}

.gallery-overlay span {
    font-weight: 600;
    color: var(--primary-coral);
}

/* Testimonials Netflix Style */
.testimonials-netflix {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-video-card {
    background: #2d2d2d;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.testimonial-video-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--sage);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-info {
    padding: 20px;
    text-align: center;
}

.testimonial-info h4 {
    color: white;
    margin-bottom: 10px;
}

.testimonial-info p {
    color: #ccc;
    font-style: italic;
    margin-bottom: 15px;
}

.stars {
    color: var(--primary-coral);
}

.stars i {
    margin: 0 2px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-label {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--navy);
}

.footer h5 {
    color: var(--primary-coral);
    margin-bottom: 20px;
}

.footer p,
.footer li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

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

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

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

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-coral);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sage);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .masonry-gallery {
        column-count: 1;
    }
    
    .experience-card.compact {
        flex-direction: column;
        height: auto;
    }
    
    .experience-card.compact .experience-img {
        width: 100%;
        height: 200px;
    }
    
    .map-pin {
        font-size: 1.5rem;
    }
    
    .pin-tooltip {
        min-width: 150px;
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .btn-luxury,
    .btn-outline-luxury {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .experience-price {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
}

/* Custom Swiper Styles */
.swiper-pagination-bullet {
    background: var(--primary-coral);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-coral);
}

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

html{
    overflow-x: hidden;
}

.footer .navbar-brand{
    margin-bottom: 20px;
}