@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Montserrat:wght@300;400;500&display=swap');

/* Base Overrides */
body {
    font-family: 'Montserrat', sans-serif;
    color: #4a4a4a;
    background-color: #fcfbf9; /* Warm off-white */
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Custom Utilities */
.text-gold {
    color: #d4af37;
}

.bg-gold {
    background-color: #d4af37;
}

.border-gold {
    border-color: #d4af37;
}

/* Celestial Gradient */
.bg-celestial {
    background: linear-gradient(135deg, #fdfbf7 0%, #f4f1ea 100%);
}

.bg-celestial-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Card Hover */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Navbar */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #4a4a4a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
