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

/* Base Overrides */
html {
    scroll-behavior: smooth;
}
body {
    background-color: #F8F5F0;
    color: #111111;
    overflow-x: hidden;
}
body.dark {
    background-color: #111111;
    color: #F8F5F0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #C9A227;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a9851c;
}

/* Glassmorphism */
.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);
}
.dark .glass {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Image Zoom on Hover */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom-container img {
    transition: transform 0.5s ease;
}
.img-zoom-container:hover img {
    transform: scale(1.05);
}

/* Ripple Button Effect */
.btn-luxury {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-luxury::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.btn-luxury:hover::after {
    width: 300%;
    height: 300%;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background-color: #111111;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    border-top-color: #C9A227;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll reveal initial state */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}
