@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2A2626;
    background-color: #FCFBF8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
    background: rgba(42, 38, 38, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(253, 228, 230, 0.3); /* Soft pink semi-transparent */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Smooth fade-in animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Specific component styles */
.service-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 30px -5px rgba(200, 142, 145, 0.15), 0 10px 10px -5px rgba(200, 142, 145, 0.05);
    border-color: rgba(200, 142, 145, 0.3);
}

.service-icon-wrapper {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: #C88E91;
    color: #fff;
    transform: scale(1.1);
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}

.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(42, 38, 38, 0.8) 0%, rgba(42, 38, 38, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gradient Buttons */
.btn-gradient {
    background: linear-gradient(135deg, #C88E91 0%, #E3AEB0 100%);
    color: white;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B5797C 0%, #C88E91 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    box-shadow: 0 15px 20px -5px rgba(200, 142, 145, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid #C88E91;
    color: #C88E91;
    background: transparent;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    background: #C88E91;
    color: white;
    box-shadow: 0 15px 20px -5px rgba(200, 142, 145, 0.3);
    transform: translateY(-3px);
}

/* Hide scrollbar for slider */
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Inputs */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #C88E91;
    box-shadow: 0 0 0 4px rgba(200, 142, 145, 0.1);
    outline: none;
}
