/* Custom styles for La Casa Del Sol */

/* Smooth scroll offset for fixed navbar */
html {
    scroll-padding-top: 80px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a1628;
}
::-webkit-scrollbar-thumb {
    background: #d4a843;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e0b95e;
}

/* Selection color */
::selection {
    background: rgba(212, 168, 67, 0.3);
    color: #0a1628;
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid #d4a843;
    outline-offset: 2px;
}

/* Image loading placeholder */
img {
    background: linear-gradient(135deg, #0f2140 0%, #142d58 100%);
}

/* Subtle pattern for warm sections */
.bg-warm-pattern {
    background-image: radial-gradient(circle at 25% 25%, rgba(212, 168, 67, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(10, 22, 40, 0.03) 0%, transparent 50%);
}

/* Print styles */
@media print {
    nav, #contact-form, .reveal { display: none; }
    body { color: #000; background: #fff; }
}
