💌 📖
Skip to main content

Zephyr CTAs

@import url(‘https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@500&display=swap’);

.zephyr-cta-wrap {
display: flex;
flex-wrap: wrap;
gap: 18px;
justify-content: center;
padding: 20px;
font-family: ‘Inter’, system-ui, sans-serif;
}

.zephyr-btn {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-width: 220px;
padding: 16px 28px;
border: none;
border-radius: 50px;
font-size: 16px;
font-weight: 500;
letter-spacing: 0.3px;
text-decoration: none;
color: #fff;
cursor: pointer;
overflow: hidden;
transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
box-shadow: 0 8px 20px rgba(232, 93, 4, 0.35);
}

/* Poppy orange gradient */
.zephyr-btn.primary {
background: linear-gradient(135deg, #E85D04 0%, #F48C06 45%, #FF9F1C 100%);
}

.zephyr-btn.secondary {
background: linear-gradient(135deg, #DC2F02 0%, #E85D04 50%, #F48C06 100%);
}

.zephyr-btn:hover {
transform: translateY(-4px) scale(1.03);
box-shadow: 0 14px 28px rgba(232, 93, 4, 0.45);
}

.zephyr-btn:active {
transform: translateY(-1px) scale(0.98);
}

/* Soft petal shine */
.zephyr-btn::before {
content: “”;
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
opacity: 0;
transition: opacity 0.4s ease;
}

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

.zephyr-btn .icon {
font-size: 18px;
line-height: 1;
}

.zephyr-btn .label {
font-family: ‘Playfair Display’, Georgia, serif;
font-weight: 600;
font-size: 17px;
}

/* Tiny poppy accent */
.zephyr-btn .poppy {
font-size: 15px;
opacity: 0.9;
}

Leave a Reply

error: Content is protected !!