/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Star invisible */
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

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

/* Apple Roofing Inspired Polish */
h1, h2, h3, h4, 
.font-serif {
    /* Using Playfair for that elegant header feel, slightly adjusted */
    letter-spacing: -0.01em; 
}

.bg-secondary {
    /* Slightly more reddish-orange to match the 'Apple' vibe if desired, or stick to brand */
    /* keeping brand color for now but defining a utility if needed */
}

/* Quote styling for testimonials */
.italic {
    font-style: italic;
}


/* Text Selection Color */
::selection {
    background: #c2410c; /* Secondary color */
    color: white;
}
