File size: 2,396 Bytes
a611752 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | class CustomCta extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
:host {
display: block;
padding: 6rem 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
text-align: center;
}
.cta-content {
max-width: 700px;
margin: 0 auto;
}
.cta-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.2;
}
.cta-text {
font-size: 1.125rem;
margin-bottom: 2rem;
opacity: 0.9;
line-height: 1.6;
}
.cta-button {
display: inline-block;
background-color: white;
color: var(--primary);
padding: 1rem 2.5rem;
border-radius: 0.5rem;
font-weight: 600;
transition: transform 0.3s, box-shadow 0.3s;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
.cta-title {
font-size: 2rem;
}
}
</style>
<div class="container" id="contact">
<div class="cta-content observe-me">
<h2 class="cta-title">Ready to elevate your digital presence?</h2>
<p class="cta-text">Let's discuss how we can help you achieve your business goals with a custom digital solution tailored to your needs.</p>
<a href="#contact" class="cta-button">Get in Touch</a>
</div>
</div>
`;
}
}
customElements.define('custom-cta', CustomCta); |