updated contact page banner

This commit is contained in:
Gary 2026-03-20 08:56:13 +00:00
parent 0d2aa8857b
commit 9f839e954f
2 changed files with 112 additions and 4 deletions

View File

@ -7,11 +7,20 @@ include_once $URLcorrection . "includes/header.php";
?> ?>
<section class="contact-banner">
<div class="banner-overlay"></div>
<div class="banner-content">
<div class="text-container">
<span class="top-tag">North East Loft Boarding</span>
<h1 class="stand-out-text">Lets Build Something Together</h1>
<p>Reach out to our team to discuss your next project, technical requirements, or loft storage needs.
<strong>Simply complete the form below to get started</strong> and we will be in touch shortly.
</p>
<section class="padding-top-100 padding-bottom-100 company-background"> <div class="contact-icons">
<div class="container text-center"> <p>Or give us a call at:</p>
<div class="row justify-content-center"> <a href="tel:01913561008" title="Call Us"><i class="fas fa-phone"></i></a>
<h1 class="margin-top-20"><?= $PageTitle ?></h1> </div>
</div> </div>
</div> </div>
</section> </section>

View File

@ -10763,3 +10763,102 @@ textarea.form-control {
padding: 15px !important; padding: 15px !important;
text-align: center; text-align: center;
} }
/* Contact Banner Styles */
.contact-banner {
position: relative;
width: 100%;
min-height: 500px;
display: flex;
align-items: center;
background-color: #002b49; /* fallback brand blue */
background-image: url('/images/boarding.jpg'); /* ADD YOUR BRITISH LOFT IMAGE HERE */
background-size: cover;
background-position: center;
overflow: hidden;
color: #ffffff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Subtle dark overlay to make text pop */
.banner-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, rgba(0, 43, 73, 0.8) 0%, rgba(0, 43, 73, 0.2) 100%);
z-index: 1;
}
.banner-content {
position: relative;
z-index: 2;
padding: 0 10%;
width: 100%;
}
.text-container {
max-width: 600px;
}
.top-tag {
display: inline-block;
color: #ff6600; /* Your Brand Orange */
text-transform: uppercase;
font-weight: 700;
font-size: 0.9rem;
letter-spacing: 2px;
margin-bottom: 10px;
}
.contact-banner h1 {
font-size: 3rem;
line-height: 1.2;
margin: 0 0 20px 0;
font-weight: 800;
}
.contact-banner p {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 30px;
color: #e0e0e0;
}
/* Contact Symbols */
.contact-icons {
display: flex;
gap: 20px;
}
.contact-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border: 2px solid #ff6600;
border-radius: 50%;
color: #ff6600;
font-size: 1.2rem;
text-decoration: none;
transition: all 0.3s ease;
}
.contact-icons a:hover {
background-color: #ff6600;
color: #ffffff;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.contact-banner h1 { font-size: 2.2rem; }
.contact-banner { min-height: 400px; text-align: center; }
.banner-content { padding: 0 5%; }
.contact-icons { justify-content: center; }
.banner-overlay { background: rgba(0, 43, 73, 0.7); }
}