/* GOA Luxury Property - Custom Luxury Styles */

@layer utilities {
    .text-shadow-luxury {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #14171A;
}
::-webkit-scrollbar-thumb {
    background: #C5A880;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9C7E55;
}

/* Hero Section */
.hero-gradient-overlay {
    background: linear-gradient(180deg, rgba(20, 23, 26, 0.4) 0%, rgba(20, 23, 26, 0.75) 70%, #14171A 100%);
}

/* Luxury Property Card Image Zoom */
.property-card-image {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.group:hover .property-card-image {
    transform: scale(1.05);
}

/* Subtle Gold Borders */
.border-gold-subtle {
    border-color: rgba(197, 168, 128, 0.3);
}

/* Aspect Ratios */
.aspect-card {
    aspect-ratio: 4 / 3;
}
.aspect-hero {
    aspect-ratio: 16 / 9;
}
