@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Styles */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-raleway {
    font-family: 'Raleway', sans-serif;
}
/* Custom gold color - darker/regal */
.text-gold-500 {
    color: #b8860b;
}

.bg-gold-500 {
    background-color: #b8860b;
}

.border-gold-500 {
    border-color: #b8860b;
}

/* Custom gold shades */
.bg-yellow-900\/30 {
    background-color: rgba(184, 134, 11, 0.3);
}

.border-yellow-900\/50 {
    border-color: rgba(184, 134, 11, 0.5);
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Hero section positioning */
#hero {
    min-height: 100vh;
}

/* Adjust Vanta.js globe position on mobile */
@media (max-width: 768px) {
    #vanta-globe {
        transform: translate(30%, -20%) scale(0.7);
    }
}
