/* Grendha Sandalias - Prestige theme, terracotta/coral accent */

/* ===== FONTS ===== */
body {
    font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* ===== TERRACOTTA ACCENT (replaces gold) ===== */
.bg-gold-500 { background-color: #C75B4A; }
.bg-gold-500\/5 { background-color: rgba(199, 91, 74, 0.05); }
.bg-gold-500\/20 { background-color: rgba(199, 91, 74, 0.2); }
.text-gold-500 { color: #C75B4A; }
.text-gold-500\/20 { color: rgba(199, 91, 74, 0.2); }
.border-gold-500 { border-color: #C75B4A; }
.fill-gold-500 { fill: #C75B4A; }
.hover\:text-gold-500:hover { color: #C75B4A; }
.hover\:bg-gold-500:hover { background-color: #C75B4A; }
.group:hover .group-hover\:text-gold-500 { color: #C75B4A; }
.group:hover .group-hover\:bg-gold-500 { background-color: #C75B4A; }

/* ===== DARK ===== */
.bg-dark { background-color: #0A0A0A; }
.bg-dark\/85 { background-color: rgba(10, 10, 10, 0.85); }
.text-dark { color: #0A0A0A; }
.border-dark { border-color: #0A0A0A; }
.hover\:bg-dark:hover { background-color: #0A0A0A; }
.hover\:border-dark:hover { border-color: #0A0A0A; }
.group:hover .group-hover\:bg-dark { background-color: #0A0A0A; }

/* ===== CREAM ===== */
.bg-cream { background-color: #F5F0EB; }
.bg-cream\/50 { background-color: rgba(245, 240, 235, 0.5); }
.hover\:bg-cream:hover { background-color: #F5F0EB; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
.animate-scroll-dot { animation: scrollDot 2s ease-in-out infinite; }

/* ===== HEADER ===== */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.08);
}

/* ===== MOBILE MENU ===== */
#mobile-menu { transition: all 0.3s ease-in-out; }

/* ===== FAQ ===== */
.faq-item.active .faq-plus-vertical { display: none; }
.faq-item.active .faq-icon { transform: rotate(0deg); }
.faq-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* ===== TESTIMONIAL CAROUSEL ===== */
#testimonial-carousel { position: relative; }
#testimonial-track { display: flex; transition: transform 0.3s ease; }
#testimonial-track > div { flex: 0 0 100%; padding: 0 0.5rem; }
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}
.testimonial-dot.active {
    background-color: #C75B4A;
    width: 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F5F0EB; }
::-webkit-scrollbar-thumb { background: #C75B4A; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a84a3d; }

/* ===== FOCUS ===== */
button:focus-visible, a:focus-visible, input:focus-visible {
    outline: 2px solid #C75B4A;
    outline-offset: 2px;
}

/* ===== SELECTION ===== */
::selection { background-color: #C75B4A; color: #0A0A0A; }
::-moz-selection { background-color: #C75B4A; color: #0A0A0A; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== PRINT ===== */
@media print {
    header, footer, #mobile-menu, button, .no-print { display: none !important; }
    body { background: white; color: black; }
    a { color: black; text-decoration: underline; }
}
