/* ==========================================================================
   Élite Vernis — Premium Styles
   ========================================================================== */

/* Shorthand imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
    --primary: #B76E79;        /* Rose Gold */
    --primary-light: #E8A7B0;  /* Light Rose Gold */
    --primary-dark: #8C4B55;   /* Deep Rose Gold */
    --secondary: #D4AF37;      /* Champagne Gold */
    --neutral-dark: #1C1C1C;   /* Charcoal Black */
    --neutral-light: #FFF0F2;  /* Dusty Rose Background */
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(183, 110, 121, 0.15);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --shadow-premium: 0 20px 40px -15px rgba(183, 110, 121, 0.12);
    --shadow-glow: 0 0 25px rgba(183, 110, 121, 0.35);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, #FFF0F2 0%, #FFF9FA 25%, #FFF0F2 50%, #FFFDFD 75%, #FFF0F2 100%) !important;
    color: var(--neutral-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Premium cosmetic micro-dots and wide vertical pinstripes for luxury editorial feel */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(rgba(183, 110, 121, 0.12) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(183, 110, 121, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 240px 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0.9;
}

/* High-end magazine style solid ultra-fine vertical column margins */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 4%;
    right: 4%;
    width: calc(100vw - 8%);
    height: 100vh;
    border-left: 1px solid rgba(183, 110, 121, 0.08);
    border-right: 1px solid rgba(183, 110, 121, 0.08);
    pointer-events: none;
    z-index: 9;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
    border: 2px solid var(--neutral-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography Helpers */
.font-serif {
    font-family: var(--font-serif);
}

.font-sans {
    font-family: var(--font-sans);
}

/* Glassmorphism Elements */
.glass-nav {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(183, 110, 121, 0.35);
    box-shadow: 0 25px 50px -12px rgba(183, 110, 121, 0.2);
}

/* Premium Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px -10px var(--primary-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

.btn-gold:hover::before {
    opacity: 1;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--neutral-dark);
    background: transparent;
    font-weight: 500;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-outline:hover {
    background: rgba(183, 110, 121, 0.08);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Glow Elements */
.glow-text {
    text-shadow: 0 2px 10px rgba(183, 110, 121, 0.25);
}

.glow-border-focus:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(183, 110, 121, 0.2);
}

/* Animating background mesh blobs */
.hero-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
}

.hero-glow-blob:nth-child(1) {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(232, 167, 176, 0.75) 0%, rgba(255, 240, 242, 0) 70%);
    animation: float-blob-1 25s infinite ease-in-out;
}

.hero-glow-blob:nth-child(2) {
    width: 850px;
    height: 850px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, rgba(255, 240, 242, 0) 70%);
    animation: float-blob-2 30s infinite ease-in-out;
}

.hero-glow-blob:nth-child(3) {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.65) 0%, rgba(255, 240, 242, 0) 70%);
    animation: float-blob-3 28s infinite ease-in-out;
}

@keyframes float-blob-1 {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(100px, -120px) scale(1.15); }
    66% { transform: translate(-60px, 60px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes float-blob-2 {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(-140px, 120px) scale(1.25); }
    100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes float-blob-3 {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(80px, -80px) scale(0.85); }
    66% { transform: translate(-50px, 100px) scale(1.15); }
    100% { transform: translate(0px, 0px) scale(1); }
}

/* Luxury Gold SVG Background Decorations */
.gold-svg-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85 !important;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.25)) drop-shadow(0 2px 6px rgba(183, 110, 121, 0.15));
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Hover Grid */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 28, 28, 0.8) 0%, rgba(183, 110, 121, 0.3) 100%);
    opacity: 0;
    display: flex;
    flex-col: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    transition: opacity 0.5s ease;
}

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

/* Custom Interactive Form Fields */
.input-elegant {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(28, 28, 28, 0.2);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.4s ease;
}

.input-elegant:focus {
    outline: none;
    border-bottom-color: var(--primary);
    box-shadow: 0 4px 10px -10px rgba(183, 110, 121, 0.3);
}

/* Reviews Stars */
.star-gold {
    color: var(--secondary);
}

/* Master Cards */
.master-card {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.master-card:hover {
    transform: scale(1.02);
}

/* Booking Modal */
.modal-backdrop {
    background: rgba(28, 28, 28, 0.4);
    backdrop-filter: blur(8px);
}

/* Floating Spec/Price Info Tag Styles */
.vertical-text {
    writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    transform: rotate(180deg);
}

@keyframes pulse-gold {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

.pulse-gold-icon {
    animation: pulse-gold 2.5s infinite ease-in-out;
}
