💌 📖
Skip to main content

Basque CTA Buttons

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

.basque-cta-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
padding: 40px 20px;
background: linear-gradient(135deg, #2c1f14, #4a3728);
border-radius: 16px;
max-width: 600px;
margin: 20px auto;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.basque-btn {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 18px 42px;
font-family: ‘Inter’, system-ui, sans-serif;
font-size: 18px;
font-weight: 600;
letter-spacing: 0.5px;
text-transform: uppercase;
color: #f8e9d7;
background: linear-gradient(145deg, #8c5c2a, #5c3a1a);
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow:
0 10px 25px rgba(140, 92, 42, 0.4),
inset 0 2px 4px rgba(255,255,255,0.3),
inset 0 -4px 6px rgba(0,0,0,0.4);
overflow: hidden;
text-decoration: none;
min-width: 260px;
}

.basque-btn:hover {
transform: translateY(-6px) scale(1.05);
box-shadow:
0 20px 35px rgba(140, 92, 42, 0.6),
inset 0 2px 4px rgba(255,255,255,0.4);
color: #fff;
}

.basque-btn:active {
transform: translateY(-2px) scale(0.98);
}

.basque-btn::before {
content: ”;
position: absolute;
top: 0;
left: -100%;
width: 50%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255,255,255,0.4),
transparent
);
transition: 0.7s;
}

.basque-btn:hover::before {
left: 200%;
}

.basque-btn.phone {
background: linear-gradient(145deg, #6b4420, #3f2a14);
}

.basque-btn .icon {
margin-right: 10px;
font-size: 22px;
}

.basque-label {
font-family: ‘Playfair Display’, serif;
font-size: 14px;
color: #d4b99f;
text-align: center;
margin-bottom: 8px;
letter-spacing: 2px;
opacity: 0.9;
}

Basque

Author Basque

More posts by Basque

Leave a Reply