@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

.font-title {
    font-family: 'Cormorant Garamond', serif;
}

.hero-section {
    background: linear-gradient(rgba(234, 226, 214, 0.8), rgba(234, 226, 214, 0.8)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #B03A64;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

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

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(176, 58, 100, 0.3);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.mobile-menu {
    transition: all 0.3s ease;
}

.price-font {
    font-family: 'Space Grotesk', sans-serif;
}

.bg-primary {
    background-color: #1E8373;
}

.text-primary {
    color: #1E8373;
}

.bg-secondary {
    background-color: #8C5DAF;
}

.text-secondary {
    color: #8C5DAF;
}

.bg-accent {
    background-color: #FFC847;
}

.text-accent {
    color: #FFC847;
}

.bg-cream {
    background-color: #F7F4EC;
}


/* Quill JS */
/* Custom Quill color picker styles */
.ql-color-picker {
    width: auto !important;
    height: auto !important;
}

.ql-picker.ql-color .ql-picker-label {
    padding: 0 4px;
}

.custom-color-picker {
    display: inline-block;
    position: relative;
    top: 3px;
    margin-left: 5px;
}

.custom-color-btn {
    width: 28px;
    height: 24px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #bababa !important;
}

.custom-color-btn:focus {
    outline: none;
}

.custom-color-btn .color-sample {
    width: 100%;
    height: 3px;
    background-color: #000;
    display: block;
}

.custom-color-picker input[type="color"] {
    opacity: 0;
    position: absolute;
    width: 28px;
    height: 24px;
    top: 0;
    left: 0;
    cursor: pointer;
    padding: 0;
    margin: 0;
}