/* Custom Styles for Prime Desk */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800;900&family=Work+Sans:wght@300;400;500;600&display=swap');

html {
    scroll-behavior: smooth;
    font-family: 'Work Sans', sans-serif;
    color: #1e1b17;
    background-color: #fff8f1;
}

h1, h2, h3, h4, h5, h6, .outfit-font {
    font-family: 'Manrope', sans-serif;
}

/* Base structural fixes */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* 🌟 Beautification: Premium Backgrounds & Patterns */
.bg-grid-pattern {
    background-image: radial-gradient(#a26723 0.5px, transparent 0.5px), radial-gradient(#a26723 0.5px, #fff8f1 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-attachment: fixed;
    position: relative;
}

.bg-grid-pattern::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to bottom, transparent, #fff8f1 80%);
    pointer-events: none;
    z-index: 0;
}

/* Radiant Text */
.text-gradient {
    background: linear-gradient(135deg, #854f09 0%, #a26723 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Subtle Hover Animations */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(133, 79, 9, 0.15), 0 10px 20px -15px rgba(133, 79, 9, 0.1);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.floating {
    animation: float 6s ease-in-out infinite;
}

/* Image styling - Beautification fixes */
img {
    background-color: #fcece0; /* graceful fallback color while loading */
}
.image-glow {
    box-shadow: 0 0 40px -10px rgba(162, 103, 35, 0.3);
}

/* Form inputs styling - Premium feels */
input, textarea, select {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #a26723 !important;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(162, 103, 35, 0.15), inset 0 2px 4px 0 rgba(0, 0, 0, 0.02) !important;
    transform: translateY(-1px);
}

/* Soft shadow utilities */
.soft-shadow {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
}

/* Glassmorphism for sticky nav */
.glass-nav {
    background: rgba(255, 248, 241, 0.85); /* New light color */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Button enhancements */
.btn-premium {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}
.btn-premium::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #a26723;
    z-index: -2;
}
.btn-premium::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 100%;
    background-color: #693c00; /* Darker primary */
    transition: all 0.3s ease;
    z-index: -1;
}
.btn-premium:hover::before {
    width: 100%;
}

.sticky-wa {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8,0,1,1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0,0,0.2,1);
    }
}
