/* serenpass-page.css */

:root {
    /* Serenpass-specific color variables */
    --serenpass-gradient: linear-gradient(135deg, #ED1E79 0%, #f35595 100%);
    --serenpass-primary: #ED1E79;
    --serenpass-secondary: #ED1E79; /* Kept the same as primary based on your original CSS */
}

/* Main Navigation and Hero Background */
nav {
    background: var(--serenpass-primary); /* #ED1E79 */
}

.hero-section {
    background: var(--serenpass-gradient);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Demo Form Card Header Color (Notice it uses a different color than the primary/gradient) */
.demo-form-card h2 {
    display: block;
    text-align: center;
    font-size: 24px;
    padding: 15px;
    background: var(--wootzoo-success); /* #2BD7A2 */
    color: white;
}

/* Primary Button (Specific to Serenpass) */
.btn-serenpass-primary {
    border: 3px var(--wootzoo-primary) solid; /* Note: This uses the common Wootzoo primary */
    background: var(--serenpass-gradient);
    color: #fff !important;
    position: relative;
    overflow: hidden;
    /* Other shared button styles are in global-landing.css */
}

.btn-serenpass-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-serenpass-primary:hover::before {
    left: 100%;
}

/* Hover effect uses the common Wootzoo primary color (#2AA9E3) based on original code */
.btn-serenpass-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(42, 169, 227, 0.4);
    background-color: #fff;
    color: var(--wootzoo-primary) !important;
}

/* Avatar Group Background */
.avatar {
    background: var(--serenpass-gradient);
}

/* Feature Card Border Color */
.feature-card {
    /* Border uses a color from the Serenpass theme */
    border: 1px solid rgba(102, 126, 234, 0.1); 
}

/* CTA Section Background */
.cta-section {
    background: var(--serenpass-gradient);
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Alert Demo Card */
.ratio-alert-demo {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}