/* Custom styles for Sumér Aesthetic Interiors */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Custom gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #8B7355 0%, #C4A484 100%);
}

/* Typography enhancements */
.letter-spacing-wide {
    letter-spacing: 0.1em;
}

/* Custom image overlay */
.img-overlay-gradient {
    position: relative;
}

.img-overlay-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

/* Custom button styles */
.btn-primary {
    background-color: #8B7355;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #735a3f;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: white;
    color: #2A2A2A;
}

/* Custom section spacing */
.section-py {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .section-py {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

/* Custom border radius */
.rounded-xl {
    border-radius: 1rem;
}

.rounded-2xl {
    border-radius: 1.5rem;
}

/* Custom shadow */
.shadow-soft {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Page transition */
.page-enter {
    opacity: 0;
    transform: translateY(20px);
}

.page-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s;
}