/* Custom CSS for Smiling Coast Beauty */

:root {
    --burgundy: #800020;
    --blush: #FCE4EC;
    --stone-50: #FAFAF9;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

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

::-webkit-scrollbar-track {
    background: var(--stone-50);
}

::-webkit-scrollbar-thumb {
    background: var(--burgundy);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5c0017;
}

/* Blob Animations */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--blush);
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--burgundy);
    opacity: 0.1;
    bottom: 10%;
    left: -50px;
    animation-delay: 2s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: var(--blush);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Animation Delays */
.animation-delay-2000 {
    animation-delay: 2s;
}

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

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-blur-md;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Button Hover Effects */
.btn-primary {
    background: var(--burgundy);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5c0017;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(128, 0, 32, 0.3);
}

.btn-secondary {
    border: 2px solid var(--burgundy);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--blush);
    border-color: var(--blush);
    color: var(--burgundy);
}

/* Card Hover Effects */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.2);
}

/* Image Hover Zoom */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

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

/* Form Focus Styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.2);
}

/* Mobile Menu Animation */
.mobile-menu {
    transition: all 0.3s ease;
}

/* Geometric Decorations */
.geo-shape {
    position: absolute;
    z-index: -1;
}

.geo-circle {
    border-radius: 50%;
    background: var(--blush);
    opacity: 0.3;
}

.geo-square {
    background: var(--burgundy);
    opacity: 0.1;
    transform: rotate(45deg);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blob {
        display: none;
    }
}
