Files
luxury-detailing-maine/index.html
T
2025-10-28 21:02:31 -04:00

185 lines
4.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Luxury Detailing Maine provides mobile professional car cleaning services in the Portland Area"
/>
<title>Luxury Detailing Maine</title>
<link href="css/style.css" rel="stylesheet" />
<link href="css/dropdown.css" rel="stylesheet" />
<link href="css/hamburger.css" rel="stylesheet" />
<style>
/** PAGE SPECIFIC STYLING */
main {
min-height: 530px; /** to make sure footer doesn't overlap hero */
gap: 5.5rem;
}
#hero-image {
height: 600px;
width: 100%;
background: url("assets/img/aden-desktop.jpg") 70% 10% / 100% no-repeat;
position: absolute;
top: 0px;
left: 0px;
z-index: -1;
}
#intro {
text-align: center;
background-color: rgba(0, 0, 0, 0.8);
width: 40%;
/** padding: 3rem 4rem 4rem 4rem; */
padding-bottom: 2rem;
}
/** BOOK NOW big button */
#book-button {
height: 7rem;
width: 50%;
min-width: 100%;
background-color: var(--black);
color: var(--gold);
border: 1px solid var(--dark-gold);
border-radius: 5rem;
padding: 2rem 0;
margin: 0;
font-size: 2rem;
font-weight: bold;
text-decoration: none;
transition: 0.5s ease;
}
#book-button:hover {
cursor: pointer;
background-color: #000;
box-shadow: 0px 0px 30px var(--gold);
}
#book-button:active {
background-color: var(--gold);
}
#book-link {
display: block;
width: 50%;
margin-top: 5rem;
}
h2 {
color: white;
}
/** MOBILE */
@media screen and (max-width: 850px) {
#hero-image {
background: url("assets/img/aden-mobile.jpg") center 10% / 100%
no-repeat;
}
main {
gap: 0;
}
#intro {
width: 100%;
padding-bottom: 1.5rem;
}
#book-button {
font-size: 1.75rem;
width: 85%;
}
#book-link {
margin-top: 2.5rem;
}
}
</style>
</head>
<body>
<a href="#main-content" class="skipLink">Skip to main content</a>
<header>
<div class="banner" role="banner">
<a href="#" class="logo" aria-label="Company Logo">LD</a>
<button
id="hamburger"
aria-label="Toggle mobile navigation menu"
aria-expanded="false"
>
<span></span>
<span></span>
<span></span>
</button>
<nav>
<a class="navLink" role="navigation" href="services.html">Services</a>
<a class="navLink" role="navigation" href="ceramic-coating.html">Ceramic Coating</a>
<a class="navLink" role="navigation" href="reviews.html">Reviews</a>
<a class="navLink" role="navigation" href="contact.html">About</a>
</nav>
</div>
</header>
<main id="main-content">
<div id="hero-image"></div>
<section id="intro">
<h1>Restore & Protect<br />Your Vehicle</h1>
<p>with the best mobile car detailing service in the Portland area</p>
</section>
<a
href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5"
target="_blank"
id="book-link"
>
<button id="book-button">BOOK NOW</button>
</a>
<section id="FAQ">
<h1 style="margin-bottom: 2rem">FAQ</h1>
<div class="faq-item">
<div class="faq-question">
<h2>Question 1</h2>
</div>
<div class="faq-answer">
this is where we answer the question in the header
</div>
</div>
</section>
</main>
<footer>
<div id="footer-left">
&copy;Luxury Detailing Maine 2025<br />
All rights reserved<br />
Portland, ME
</div>
<div id="footer-right">
207-807-6770<br />
example@email.com<br />
<a
href="https://www.instagram.com/luxurydetailingmaine/"
target="_blank"
>@luxurydetailingmaine</a
>
</div>
</footer>
<script src="js/hamburger.js"></script>
<script src="js/dropdown.js"></script>
</body>
</html>