239 lines
6.0 KiB
HTML
239 lines
6.0 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>
|
|
|
|
main {
|
|
gap: 12rem;
|
|
}
|
|
|
|
#categoryLinks {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
gap: 2rem;
|
|
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
#servicesContainer {
|
|
width: 90%;
|
|
height: 100%;
|
|
}
|
|
|
|
#tableOfContents {
|
|
width: 90%;
|
|
margin-top: 5rem;
|
|
}
|
|
|
|
.card {
|
|
padding: 3rem;
|
|
border: 2px solid var(--gold);
|
|
border-radius: 1rem;
|
|
|
|
transition: 0.5s ease;
|
|
color: white;
|
|
width: 25%;
|
|
}
|
|
.card:hover {
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.card-body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 2rem;
|
|
text-align: left;
|
|
}
|
|
|
|
.card-body span {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-self: stretch;
|
|
|
|
width: 50%;
|
|
}
|
|
.card-body span h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
.book-button {
|
|
background-color: var(--black);
|
|
color: var(--gold);
|
|
width: 50%;
|
|
height: 4rem;
|
|
|
|
border: 1px solid white;
|
|
border-radius: 5rem;
|
|
|
|
padding: .5rem 1rem;
|
|
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
transition: 0.5s ease;
|
|
}
|
|
.book-button:hover {
|
|
cursor: pointer;
|
|
box-shadow: 0px 0px 15px var(--gold);
|
|
}
|
|
.book-button:active {
|
|
background-color: var(--gold);
|
|
}
|
|
|
|
.book-link {
|
|
user-select: none;
|
|
}
|
|
|
|
/** mobile rules */
|
|
/** MOBILE */
|
|
@media screen and (max-width: 850px) {
|
|
section {
|
|
width: 100%;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.75rem;
|
|
}
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<a href="#main-content" class="skipLink">Skip to main content</a>
|
|
|
|
<header>
|
|
<div class="banner" role="banner">
|
|
<a href="index.html" class="logo" aria-label="Company Logo">LUXURY DETAILING</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="ceramic-coating.html">Ceramic Coating</a>
|
|
<a class="navLink" role="navigation" href="services.html">Services</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="tableOfContents">
|
|
<h1>Service Categories</h1>
|
|
<div id="categoryLinks">
|
|
<h2><a href="#packages">Service Packages</a></h2>
|
|
<h2><a href="#ceramic">Ceramic Coating</a></h2>
|
|
<h2><a href="#paint">Polish & Paint Correction</a></h2>
|
|
<h2><a href="#exterior">Exterior Detailing</a></h2>
|
|
<h2><a href="#interior">Interior Detailing</a></h2>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="servicesContainer">
|
|
|
|
<div class="card" >
|
|
<div class="card-head">
|
|
<h2>Service Package One</h2>
|
|
</div>
|
|
<div class="card-body">
|
|
<span>
|
|
<h3>Interior</h3>
|
|
<ul>
|
|
<li>Vacuum & light carpet shampooing</li>
|
|
<li>Plastics, leather, and vinyls cleaning</li>
|
|
<li>Light seat shampooing</li>
|
|
<li>Interior & exterior window cleaning</li>
|
|
<li>Crack & crevice cleaning</li>
|
|
</ul>
|
|
</span>
|
|
<span>
|
|
<h3>Exterior</h3>
|
|
<ul>
|
|
<li>Hand wash & dry</li>
|
|
<li>Bug gut removal</li>
|
|
<li>Tire, wheel, and wheel well cleaning + tire shine</li>
|
|
<li>Window cleaning</li>
|
|
<li>Light door jam cleaning</li>
|
|
</ul>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<div id="footer-left">
|
|
©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>
|
|
function toggleDropdown(headerClicked) {
|
|
let dropdown = headerClicked.parentElement;
|
|
let body = headerClicked.nextElementSibling;
|
|
let arrow = headerClicked.children[0];
|
|
|
|
if (dropdown.classList.contains("longest")) {
|
|
dropdown.classList.toggle("open-longest");
|
|
body.classList.toggle("open-longest");
|
|
arrow.classList.toggle("open");
|
|
}
|
|
else if (dropdown.classList.contains("long")) {
|
|
dropdown.classList.toggle("open-long");
|
|
body.classList.toggle("open-long");
|
|
arrow.classList.toggle("open");
|
|
}
|
|
else {
|
|
dropdown.classList.toggle("open");
|
|
body.classList.toggle("open");
|
|
arrow.classList.toggle("open");
|
|
}
|
|
|
|
let isOpen = dropdown.className.includes("open");
|
|
dropdown.setAttribute('aria-expanded', isOpen);
|
|
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|