@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;600&display=swap');

:root {
    --gold-primary: #F2D06B;
    --gold-light: #f7e09d;
    --gold-dark: #ccaa4a;
    --emerald-deep: #000000;
    /* Re-purposed for Main Black Theme */
    --emerald-rich: #1a1a1a;
    --emerald-light: #333333;
    --dark-bg: #000000;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #e2e8f0;
    background-color: var(--dark-bg);
    background-image: url('images/Gemini_Generated_Image_l2bto7l2bto7l2bt.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    /* All headings Gold */
}

/* Override text-gold to simple gold for headings if desired, or keep gradient but use new colors */
.text-gold {
    color: var(--gold-primary);
    background: none;
    /* Removed gradient for cleaner Dark Vibe pop */
    -webkit-text-fill-color: var(--gold-primary);
    background-clip: border-box;
}

.border-gold {
    border-color: var(--gold-primary) !important;
}

.bg-gold {
    background-color: var(--gold-primary);
}

.btn-primary {
    background: var(--gold-primary);
    color: #000000;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(242, 208, 107, 0.4);
}

/* Glass card update for black theme */
.glass-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 208, 107, 0.3);
    /* Gold border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.gem-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(242, 208, 107, 0.2);
    transform: scale(1.03);
}

.gem-card {
    padding: 2rem;
    /* Increased padding */
}

.gem-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .gem-card img {
        width: 120px;
        height: 120px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

/* Shop Styles */
.shop-card-img-container {
    background: radial-gradient(circle at center, rgba(242, 208, 107, 0.1) 0%, transparent 70%);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Enhancements */
@keyframes zoomSlow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.animate-zoom-slow {
    animation: zoomSlow 20s ease-in-out infinite alternate;
}

.text-glow {
    text-shadow: 0 0 30px rgba(242, 208, 107, 0.4);
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}