/*@import 'tailwindcss';*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Inter', 'Source Sans Pro', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', 'Noto Color Emoji';
    --font-serif: 'Playfair Display', ui-serif, serif;
    --font-mono: ui-monospace, SFMono-Regular, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* ===== LUXURY HOTEL THEME STYLES ===== */

/* Global Luxury Styles */
body {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    letter-spacing: 0.025em;
    font-weight: 400;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
}

/* ===== HEADER LUXURY STYLES ===== */

.luxury-header {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.luxury-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    z-index: -1;
}

/* Logo hover effects */
.luxury-header .group:hover .w-12 {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

/* Navigation link animations */
.luxury-header nav a {
    position: relative;
    overflow: hidden;
}

.luxury-header nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s;
}

.luxury-header nav a:hover::before {
    left: 100%;
}

/* CTA Button luxury styling */
.luxury-cta {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.luxury-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.luxury-cta:hover::before {
    left: 100%;
}

.luxury-cta:hover {
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Mobile menu luxury styling */
.mobile-menu {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ===== MAIN CONTENT LUXURY STYLES ===== */

/* Luxury page containers */
.luxury-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.1);
    overflow: hidden;
    position: relative;
}

.luxury-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

/* Luxury cards */
.luxury-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(251, 191, 36, 0.2);
}

.luxury-card:hover::before {
    opacity: 1;
}

/* Luxury buttons */
.luxury-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1e293b;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.luxury-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

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

.luxury-btn:active {
    transform: translateY(0);
}

/* Secondary luxury button */
.luxury-btn-secondary {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #f1f5f9;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.luxury-btn-secondary:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    border-color: rgba(251, 191, 36, 0.4);
}

/* Luxury form elements */
.luxury-input {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #1e293b;
}

.luxury-input:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
    background: #ffffff;
}

.luxury-input::placeholder {
    color: #64748b;
    font-weight: 400;
}

/* Luxury typography - Updated for Serif Headings and Sans-serif Body */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.tierra-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 100;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: #8D3F2B !important;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}

.tierra-body {
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.tierra-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.tierra-h1 {
    font-size: 2.5rem;
    font-weight: 100;
    letter-spacing: 0.02em;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .tierra-h1 {
        font-size: 1.5rem !important;
        font-weight: 100;
        letter-spacing: 0.02em;
        font-family: 'Playfair Display', serif;
    }
}

.tierra-h2 {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: 'Playfair Display', serif;
}

.tierra-h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    font-family: 'Playfair Display', serif;
}

.tierra-body-lg {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.tierra-body-sm {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

/* Sticky Navigation Styles */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.navbar-sticky.show {
    transform: translateY(0);
}

.navbar-sticky .container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Abstract Decorative Elements */
.abstract-element {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.abstract-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.abstract-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(245, 158, 11, 0.3);
}

.abstract-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.abstract-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
}

/* Video Hero Styles */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
}

.logo-subtext {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: -2px;
}

/* Enhanced Button Styles - Tierra Atacama Style */
.btn-tierra {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 0;
    border: 1px solid #f59e0b;
    background: transparent;
    color: #f59e0b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-tierra:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-tierra-filled {
    background: #f59e0b;
    color: white;
}

.btn-tierra-filled:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Section Spacing - Tierra Atacama Style */
.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-padding-lg {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Enhanced Card Styles */
.card-tierra {
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

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

.card-tierra img {
    transition: transform 0.6s ease;
}

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

/* Room Gallery Styles */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.room-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image {
    transform: scale(1.08);
}

.room-content {
    padding: 1.5rem;
}

.room-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.room-description {
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.room-price {
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #f59e0b;
    letter-spacing: 0.02em;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .tierra-h1 {
        font-size: 3rem;
        font-weight: 700;
        font-family: 'Playfair Display', serif;
    }

    .tierra-h2 {
        font-size: 1.875rem;
        font-weight: 600;
        font-family: 'Playfair Display', serif;
    }

    .tierra-h3 {
        font-size: 1.25rem;
        font-weight: 600;
        font-family: 'Playfair Display', serif;
    }

    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-padding-lg {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* ===== FOOTER LUXURY STYLES ===== */

.luxury-footer {
    position: relative;
    overflow: hidden;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

/* Footer link hover effects */
.luxury-footer a {
    position: relative;
    transition: all 0.3s ease;
}

.luxury-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    transition: width 0.3s ease;
}

.luxury-footer a:hover::after {
    width: 100%;
}

/* ===== ANIMATIONS AND EFFECTS ===== */

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Luxury loading animation */
@keyframes luxuryPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.luxury-pulse {
    animation: luxuryPulse 2s ease-in-out infinite;
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* ===== RESPONSIVE LUXURY ADJUSTMENTS ===== */

@media (max-width: 768px) {
    .luxury-container {
        border-radius: 16px;
        margin: 0 16px;
    }

    .luxury-card {
        border-radius: 12px;
    }

    .luxury-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .luxury-input {
        padding: 14px 16px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* ===== UTILITY CLASSES ===== */

.luxury-gradient-text {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.luxury-shadow {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.luxury-shadow-lg {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}

.luxury-border {
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.luxury-bg {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.luxury-bg-dark {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */

/* Focus styles for better accessibility */
.luxury-focus:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.5);
    border-radius: 8px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .luxury-card {
        border: 2px solid #1e293b;
    }

    .luxury-btn {
        border: 2px solid #1e293b;
    }
}

/* Parallax Hero Effects */
.parallax-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    perspective: 1px;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateZ(-1px) scale(2);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 10;
    transform: translateZ(0);
}

/* Smooth parallax scrolling */
@media (prefers-reduced-motion: no-preference) {
    .parallax-bg {
        transition: transform 0.1s ease-out;
    }
}

/* Disable parallax on mobile for better performance */
@media (max-width: 768px) {
    .parallax-bg {
        transform: none;
        background-attachment: scroll;
    }
}

/* Enhanced slow zoom animation */
@keyframes slowZoom {
    0% {
        transform: translateZ(-1px) scale(2);
    }
    100% {
        transform: translateZ(-1px) scale(2.2);
    }
}

.parallax-bg.with-zoom {
    animation: slowZoom 20s infinite alternate ease-in-out;
}

/* Parallax layers for depth */
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.parallax-layer-back {
    transform: translateZ(-2px) scale(3);
}

.parallax-layer-mid {
    transform: translateZ(-1px) scale(2);
}

.parallax-layer-front {
    transform: translateZ(0) scale(1);
}

.luxury-footer {

    background: black;
}
.luxury-header nav a {
    position: relative;
    overflow: hidden;
    color: #fff !important;
}
