
/* Custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #fef7ff;
    position: relative;
}
/* Tantralove brand typography */
.brand-heading {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.brand-subtitle {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    font-style: italic;
}

/* Remove navbar styles */
custom-navbar {
    display: none;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://huggingface.co/spaces/msadowski246/tantralove-testimonial-magic/resolve/main/images/smoki%20z%20mg%C5%82y%20FIN.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}
/* Transparent sections */
section {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.bg-white {
    background-color: rgba(255, 255, 255, 0.7);
}
.bg-purple-50 {
    background-color: rgba(250, 245, 255, 0.7);
}
.bg-gradient-to-r {
    background: linear-gradient(to right, rgba(139, 92, 246, 0.7), rgba(192, 132, 252, 0.7);
}
.bg-indigo-50 {
    background-color: rgba(238, 242, 255, 0.7);
}
.bg-fuchsia-50 {
    background-color: rgba(253, 244, 255, 0.7);
}
.bg-indigo-100 {
    background-color: rgba(224, 231, 255, 0.7);
}
.bg-purple-100 {
    background-color: rgba(243, 232, 255, 0.7);
}
.bg-indigo-500 {
    background-color: rgba(99, 102, 241, 0.7);
}
.bg-gradient-to-br {
    background: linear-gradient(to bottom right, rgba(253, 242, 248, 0.7), rgba(250, 245, 255, 0.7), rgba(253, 242, 248, 0.7);
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f4ff;
}

::-webkit-scrollbar-thumb {
    background: #c084fc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a855f7;
}

/* Image styling */
img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(168, 85, 247, 0.2);
}

/* Animation for cards */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(168, 85, 247, 0.15);
}

/* Custom bullet points */
.custom-bullet {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    color: white;
    text-align: center;
    line-height: 1.5rem;
    margin-right: 0.5rem;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #c084fc, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Tantralove brand colors */
.brand-primary {
    color: #8b5cf6;
}

.brand-secondary {
    color: #c084fc;
}

.brand-bg {
    background-color: #fef7ff;
}

.brand-gradient {
    background: linear-gradient(135deg, #c084fc, #a855f7);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}
/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #c084fc, #a855f7);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(168, 85, 247, 0.4);
}

/* Section backgrounds */
.section-light {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(243, 232, 255, 0.7);
}
.section-accent {
    background: linear-gradient(135deg, #f3e8ff, #faf5ff);
}

/* Border styles */
.brand-border {
    border-color: #e9d5ff;
}
