/* Custom Fonts - if not loaded via Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Base Styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevent scrolling on Coming Soon page */
    cursor: none; /* Hide default cursor for custom cursor */
}

::selection {
    background-color: #D4AF37;
    color: #000;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #D4AF37;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

/* Cursor Hover State */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}
body.hovering .cursor-dot {
    opacity: 0; /* Hide inner dot on hover */
}

/* Typography Utilities */
.reveal-text {
    transform: translateY(100%);
    opacity: 0;
}

/* Links and Interactive Elements */
a, button {
    cursor: none; /* Rely on custom cursor */
}
