diff --git a/Html-files/about.html b/Html-files/about.html index a1b9a884..424fb6d1 100644 --- a/Html-files/about.html +++ b/Html-files/about.html @@ -675,15 +675,25 @@

Why Choose Retro?

-

Contact US

- -
- - - -
+

Contact Us

+
+
+ + +
+ +
+ + +
+ + +
-
+ +
@@ -920,4 +930,4 @@

Follow Us

- \ No newline at end of file + diff --git a/Html-files/contact.html b/Html-files/contact.html index 37ee9e05..42ea9d98 100644 --- a/Html-files/contact.html +++ b/Html-files/contact.html @@ -38,20 +38,20 @@ @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); #sr { -display: none; -position: fixed; -bottom: 70px; -right: 15px; -z-index: 99; -font-size: 18px; -border: none; -outline: none; -background-color: transparent; -color: rgb(17, 17, 17); -cursor: pointer; -padding: 15px; -border-radius: 4px; -} + display: none; + position: fixed; + bottom: 20px; + right: 30px; + z-index: 99; + font-size: 18px; + border: none; + outline: none; + background-color: transparent; + color: white; + cursor: pointer; + padding: 15px; + border-radius: 4px; + } #sr:hover { background-color: transparent; @@ -664,182 +664,105 @@

Feel Free to Contact





-
+
+
-

Feel Free to Contact Us!

-

- +

+ Feel Free to Contact Us! +

+
+
+
-
-
-
-
-
-
-
-
- -
- - -
-
-
-
-
- -
- - -
-
-
-

-
-
-
- -
- - -
- - - -
-
-
-
-

Feel Free to Contact Us!

-

- -
- -
-
-
-
- +
+
+
+
+
-
Name * +
+
- - - -
-
+
+
+
+
-
- - +
-

+
+
+
- +
- - - - -
-
-

-
-
-
- - - - +
-
- +
+
+
+ +
+
+
+ +
- features-branch -
-
+
+
+ +
+
- main + value="Send Message" + style="background-color: #ffc1b7; color: black; text-align: center; font-family: 'Philosopher', sans-serif; padding: 12px 0; border: 1px solid black; height: 50px;">
- -
+
+
- +
-
- -
+
-

-
-
- +
+ - - - - - +
+ + + + + + + + + +
+ +
+ - -
-
-

Follow Us

- - + + + + +
+
+

Follow Us

+ + -

Stay connected with us on social media for the latest updates, recipes, and foodie adventures. + +

+ Stay connected with us on social media for the latest updates, latest collection, and vintage adventures.

- - -
- + + + - + - +const coords = { x: 0, y: 0 }; +const circles = document.querySelectorAll(".circle"); + +const colors = [ + "#ffb56b", + "#fdaf69", + "#f89d63", + "#f59761", + "#ef865e", + "#ec805d", + "#e36e5c", + "#df685c", + "#d5585c", + "#d1525c", + "#c5415d", + "#c03b5d", + "#b22c5e", + "#ac265e", + "#9c155f", + "#950f5f", + "#830060", + "#7c0060", + "#680060", + "#60005f", + "#48005f", + "#3d005e" +]; + +circles.forEach(function (circle, index) { + circle.x = 0; + circle.y = 0; + circle.style.backgroundColor = colors[index % colors.length]; +}); + +window.addEventListener("mousemove", function (e) { + coords.x = e.clientX; + coords.y = e.clientY; + +}); + +function animateCircles() { + + let x = coords.x; + let y = coords.y; + + circles.forEach(function (circle, index) { + circle.style.left = x - 2 + "px"; + circle.style.top = y - 2 + "px"; + + circle.style.scale = (circles.length - index) / circles.length; + + circle.x = x; + circle.y = y; + + const nextCircle = circles[index + 1] || circles[0]; + x += (nextCircle.x - x) * 0.3; + y += (nextCircle.y - y) * 0.3; + }); + + requestAnimationFrame(animateCircles); +} +animateCircles(); + - +document.addEventListener("DOMContentLoaded", function() { +const preloader = document.getElementById('preloader'); +const mainContent = document.getElementById('main-content'); + +// Listen for the window load event +window.addEventListener('load', function() { + setTimeout(function() { + preloader.classList.add('hidden'); + mainContent.classList.remove('hidden'); + mainContent.classList.add('visible'); + }, 3000); +}); +}); + + + + + + - + - \ No newline at end of file + diff --git a/Html-files/menu.html b/Html-files/menu.html index dfefa77b..e006d497 100644 --- a/Html-files/menu.html +++ b/Html-files/menu.html @@ -86,21 +86,22 @@