Luke Else 3c1a6e9ce0
All checks were successful
Build and Push Docker Image / build (push) Successful in 57s
Added workflow and dockerfile
2024-12-12 12:35:13 +00:00

237 lines
6.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Divine Couture - Coming Soon</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Montserrat&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #1e1e1e;
color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
/* Default: Show desktop element and hide mobile element */
.desktop-element {
display: block;
}
.mobile-element {
display: none;
}
.video-container {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 9999;
background-color: #1e1e1e;
opacity: 0.95;
}
.video-container video {
width: 50%;
height: 50%;
object-fit: cover;
}
.video-container.fade-out {
animation: fadeOut 1000ms forwards;
}
@keyframes fadeOut {
0% { opacity: 0.95; }
100% { opacity: 0; visibility: hidden; }
}
.container {
text-align: center;
position: relative;
padding: 20px;
}
.logo {
margin-bottom: 20px;
}
.logo img {
min-width: 20rem;
}
h1 {
font-size: 4rem;
font-family: 'Staatliches', sans-serif;
background: linear-gradient(135deg, #B57C1A, #ffd700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 10px;
}
h2 {
font-size: 2rem;
font-family: 'Montserrat', sans-serif;
background: linear-gradient(135deg, #B57C1A, #ffd700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 20px;
}
p {
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
color: #c0c0c0;
max-width: 500px;
margin: 0 auto;
line-height: 1.6;
}
.accent-line {
width: 100px;
height: 4px;
background: #B57C1A;
margin: 20px auto;
border-radius: 2px;
}
.contact {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #1e1e1e;
padding: 20px 0;
font-family: 'Montserrat', sans-serif;
font-size: 0.9rem;
color: #c0c0c0;
}
.contact div {
display: flex;
align-items: center;
gap: 10px;
margin: 0 20px;
}
.contact div img {
width: 20px;
height: 20px;
}
a {
color: inherit;
text-decoration: inherit;
}
@media (max-width: 768px) {
.desktop-element {
display: none; /* Hide desktop element on small screens */
}
.mobile-element {
display: block; /* Show mobile element on small screens */
}
.video-container video {
width: 70%;
height: 70%;
object-fit: cover;
}
.contact {
position: relative;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
}
.contact div {
margin: 10px 0;
}
}
</style>
</head>
<body>
<!-- Video Intro -->
<div class="desktop-element">
<div class="video-container" id="videoContainerDesk">
<video id="introVideoDesk" autoplay muted playsinline>
<source src="assets/vid/Full HD.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div class="mobile-element">
<div class="video-container" id="videoContainerMob">
<video id="introVideoMob" autoplay muted playsinline>
<source src="assets/vid/Full HD vertical.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<!-- Main Content -->
<div class="container" id="mainContent">
<div class="logo">
<img src="assets/img/divine-couture.svg" alt="Company Logo">
</div>
<div class="accent-line"></div>
<p>Our website is on its way. Stay tuned for something special as we look to deliver style, for every occasion. We can't wait to share more.</p>
</div>
<div class="contact">
<div><img src="assets/img/email-icon.png" alt="Email Icon"><a href="mailto:contact@divine-couture.co.uk">contact@divine-couture.co.uk</a></div>
<div><img src="assets/img/phone-icon.png" alt="Phone Icon"><a href="tel:+447713133027">+44 (0) 77 13 13 30 27</a></div>
<div><img src="assets/img/tiktok-icon.png" alt="TikTok Icon"><a href="https://www.tiktok.com/@divinecoutureee">divinecoutureee</a></div>
</div>
<script>
const videoDesk = document.getElementById('introVideoDesk');
const videoContainerDesk = document.getElementById('videoContainerDesk');
const mainContent = document.getElementById('mainContent');
videoDesk.addEventListener('ended', () => {
videoContainerDesk.classList.add('fade-out');
setTimeout(() => {
videoContainerDesk.style.display = 'none';
}, 1000); // Wait for the fade-out animation to finish
});
const videoMob = document.getElementById('introVideoMob');
const videoContainerMob = document.getElementById('videoContainerMob');
videoMob.addEventListener('ended', () => {
videoContainerMob.classList.add('fade-out');
setTimeout(() => {
videoContainerMob.style.display = 'none';
}, 1000); // Wait for the fade-out animation to finish
});
</script>
</body>
</html>