html {
    scroll-behavior: smooth;
}

/* Offset for sticky header when jumping to brand sections */
[id^="brand-"] {
    scroll-margin-top: 120px;
}

/* Custom scrollbar for horizontal lists */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
/* Reel Play Button Pulse Animation */
@keyframes pulse-soft {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}
.animate-pulse-soft {
    animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes icon-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.animate-icon-pulse {
    animation: icon-pulse 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes brand-pulse {
    0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-purple-hex) 40%, transparent); border-color: var(--brand-purple-hex); }
    70% { box-shadow: 0 0 0 15px color-mix(in srgb, var(--brand-purple-hex) 0%, transparent); border-color: var(--brand-purple-hex); }
    100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-purple-hex) 0%, transparent); border-color: var(--brand-purple-hex); }
}
.animate-brand-pulse {
    animation: brand-pulse 1.5s cubic-bezier(0.66, 0, 0, 1);
}
.material-symbols-filled {
    font-variation-settings: 'FILL' 1 !important;
}

/* Page Loader Styles */
.page-loader {
    position: fixed;
    inset: 0;
    background: #28114f;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}
.page-loader.hide-loader {
    opacity: 0;
    visibility: hidden;
}
.loader-inner { text-center: center; }
.loader-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c49a45;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}
.loader-spinner {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 1rem;
}
.loader-spinner span {
    width: 8px;
    height: 8px;
    background: #c49a45;
    border-radius: 50%;
    animation: loader-dots 1.4s infinite ease-in-out both;
}
.loader-spinner span:nth-child(1) { animation-delay: -0.32s; }
.loader-spinner span:nth-child(2) { animation-delay: -0.16s; }
.loader-text {
    color: rgba(255,255,255,0.6);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}
@keyframes loader-dots {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}