/* Custom Styles & Utilities */
body {
    background-color: theme('colors.base');
    color: theme('colors.dark');
    overflow-x: hidden;
}

/* Subtle Fade In Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Button Hover Effect */
.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0) rotate(45deg);
    transition: transform 0.6s ease;
    border-radius: 50%;
    z-index: 0;
}

.btn-premium:hover::after {
    transform: translate(-50%, -50%) scale(1) rotate(45deg);
}

.btn-premium>span {
    position: relative;
    z-index: 1;
}

/* Outline Button Hover */
.btn-outline:hover {
    background-color: theme('colors.primary');
    color: theme('colors.base');
    border-color: theme('colors.primary');
}

/* Soft Shadow for Cards */
.card-shadow {
    box-shadow: 0 10px 40px -10px rgba(92, 26, 43, 0.08);
}

/* Image Mask for Hero */
.hero-image-mask {
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: theme('colors.base');
}

::-webkit-scrollbar-thumb {
    background: theme('colors.secondary');
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: theme('colors.primary');
}