/* Hotel Waffle Maker - Custom Styles */

/* ===== 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;
}

/* ===== GOLD COLOR PALETTE (Warm Waffle Golden) ===== */
.bg-gold-500 {
    background-color: #C8913B;
}
.bg-gold-500\/5 {
    background-color: rgba(200, 145, 59, 0.05);
}
.bg-gold-500\/20 {
    background-color: rgba(200, 145, 59, 0.2);
}
.text-gold-500 {
    color: #C8913B;
}
.text-gold-500\/20 {
    color: rgba(200, 145, 59, 0.2);
}
.border-gold-500 {
    border-color: #C8913B;
}
.fill-gold-500 {
    fill: #C8913B;
}
.hover\:text-gold-500:hover {
    color: #C8913B;
}
.hover\:bg-gold-500:hover {
    background-color: #C8913B;
}
.group:hover .group-hover\:text-gold-500 {
    color: #C8913B;
}
.group:hover .group-hover\:bg-gold-500 {
    background-color: #C8913B;
}

/* ===== DARK COLOR (Espresso Brown) ===== */
.bg-dark {
    background-color: #1C1108;
}
.bg-dark\/85 {
    background-color: rgba(28, 17, 8, 0.85);
}
.text-dark {
    color: #1C1108;
}
.border-dark {
    border-color: #1C1108;
}
.hover\:bg-dark:hover {
    background-color: #1C1108;
}
.hover\:border-dark:hover {
    border-color: #1C1108;
}
.group:hover .group-hover\:bg-dark {
    background-color: #1C1108;
}

/* ===== CREAM BACKGROUND (Warm Batter) ===== */
.bg-cream {
    background-color: #FBF5E9;
}
.bg-cream\/50 {
    background-color: rgba(251, 245, 233, 0.5);
}
.hover\:bg-cream:hover {
    background-color: #FBF5E9;
}

/* ===== 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 STYLES ===== */
#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 TRANSITIONS ===== */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* ===== FAQ STYLES ===== */
.faq-item.active .faq-plus-vertical {
    display: none;
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* ===== TESTIMONIAL CAROUSEL (MOBILE) ===== */
#testimonial-carousel {
    position: relative;
}

#testimonial-track {
    display: flex;
    transition: transform 0.3s ease;
}

#testimonial-track > div {
    flex: 0 0 100%;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-dot.active {
    background-color: #C8913B;
    width: 24px;
}

/* ===== INNER PAGE STYLES ===== */
.prose h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1rem;
}

.prose ul, .prose ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.prose th, .prose td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.prose th {
    background-color: #FBF5E9;
    font-weight: 700;
    color: #1C1108;
}

.prose tr:hover {
    background-color: rgba(251, 245, 233, 0.3);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FBF5E9;
}

::-webkit-scrollbar-thumb {
    background: #C8913B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b07e30;
}

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

/* ===== SELECTION STYLES ===== */
::selection {
    background-color: #C8913B;
    color: #1C1108;
}

::-moz-selection {
    background-color: #C8913B;
    color: #1C1108;
}

/* ===== 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 STYLES ===== */
@media print {
    header,
    footer,
    #mobile-menu,
    button,
    .no-print {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}
