/* Custom Luxury Styles */

:root {
    --luxury-white: #FDFBF7; /* Exact warm ivory from logo background */
    --luxury-beige: #F9F7F2;
    --luxury-sand: #EBE6E0;
    --luxury-charcoal: #1A365D;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--luxury-white);
    /* RESTORING the original paper texture you liked */
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
}

/* Scroll Fade Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar specific */
nav.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(26, 54, 93, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

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

::-webkit-scrollbar-track {
    background: var(--luxury-white);
}

::-webkit-scrollbar-thumb {
    background: var(--luxury-sand);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dcd7cf;
}
