From a9e3afed4143864ff72e9cc92c6dfd15a5d14e96 Mon Sep 17 00:00:00 2001 From: Yorichiiii22 Date: Tue, 22 Oct 2024 21:14:11 +0530 Subject: [PATCH 01/10] Revert "Added Dark mode toggle" --- Project Food Menu/index.html | 200 +++++++++++++++++------ Project Food Menu/script.js | 68 -------- Project Food Menu/style.css | 296 ++--------------------------------- 3 files changed, 163 insertions(+), 401 deletions(-) delete mode 100644 Project Food Menu/script.js diff --git a/Project Food Menu/index.html b/Project Food Menu/index.html index 19879df..49124b6 100644 --- a/Project Food Menu/index.html +++ b/Project Food Menu/index.html @@ -17,7 +17,7 @@ - +

Eat Right Food

-

Eat Healty, it is good for our health.

+

Eat Healty, it is good for our health.

Menu
@@ -293,46 +286,155 @@

Contact Us

- + + + + + + + diff --git a/Project Food Menu/script.js b/Project Food Menu/script.js deleted file mode 100644 index 28a68e8..0000000 --- a/Project Food Menu/script.js +++ /dev/null @@ -1,68 +0,0 @@ - -const themeToggle = document.querySelector('#checkbox'); -const body = document.body; -console.log('script is running') - - -const currentTheme = localStorage.getItem('theme'); -if (currentTheme) { - body.classList.add(currentTheme); - if (currentTheme === 'dark-mode') { - themeToggle.checked = true; - } -} - - -themeToggle.addEventListener('change', function() { - if (this.checked) { - body.classList.add('dark-mode'); - localStorage.setItem('theme', 'dark-mode'); - console.log("dark mode") - } else { - body.classList.remove('dark-mode'); - localStorage.setItem('theme', 'light-mode'); - console.log("lightmode") - } -}); - - -document.addEventListener('DOMContentLoaded', function() { - var typed = new Typed('#newlogo', { - strings: ['Restro.', "Taste unique"], - loop: true, - typeSpeed: 80, - backSpeed: 25, - backDelay: 1000, - startDelay: 500 - }); -}); - - -const backToTopButton = document.createElement("button"); -backToTopButton.innerHTML = "↑"; -backToTopButton.setAttribute("id", "back-to-top-btn"); -document.body.appendChild(backToTopButton); - -window.onscroll = function() { - if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { - backToTopButton.style.display = "block"; - } else { - backToTopButton.style.display = "none"; - } -}; - -backToTopButton.onclick = function() { - document.body.scrollTop = 0; - document.documentElement.scrollTop = 0; -}; - - -document.querySelectorAll('a[href^="#"]').forEach(anchor => { - anchor.addEventListener('click', function (e) { - e.preventDefault(); - - document.querySelector(this.getAttribute('href')).scrollIntoView({ - behavior: 'smooth' - }); - }); -}); \ No newline at end of file diff --git a/Project Food Menu/style.css b/Project Food Menu/style.css index 891c880..3991537 100644 --- a/Project Food Menu/style.css +++ b/Project Food Menu/style.css @@ -126,8 +126,12 @@ body { font-size: 1.6rem; } +.main-title { + text-transform: uppercase; + margin-top: 1.5em; +} - +/* ......//about us//...... */ #about { padding: 50px 0; @@ -332,31 +336,24 @@ body { } /* ........./ Testimonial /.......... */ + #testimonials { - background: var(--background-color); - color: var(--text-color); padding: 5rem 0; - transition: background-color var(--transition-speed), color var(--transition-speed); + background: rgba(243, 243, 243); } - .testimonial-title { text-align: center; font-size: 2.8rem; font-weight: 400; - color: var(--text-color); - + color: #555; } .testimonial-container { - background-color: var(--background-color); - color: var(--text-color); display: flex; justify-content: space-between; font-size: 1.4rem; padding: 1rem; - transition: background-color var(--transition-speed), color var(--transition-speed); - } .testimonial-box .checked { @@ -365,7 +362,7 @@ body { .testimonial-box .testimonial-text { margin: 1rem 0; - color: var(--text-color); + color: #444; } .testimonial-box { @@ -384,17 +381,15 @@ body { } /* ........ Contact Us........... */ + #contact { - background: var(--background-color); - color: var(--text-color); padding: 5rem 0; - transition: background-color var(--transition-speed), color var(--transition-speed); + background: rgb(226, 226, 226); } - .contact-container { display: flex; - background: var(--background-color); + background: #fff; } .contact-img { @@ -413,9 +408,6 @@ body { padding: 1rem; width: 50%; margin: auto; - background: var(--background-color); - color: var(--text-color); - } .form-container input { @@ -785,268 +777,4 @@ footer { color: #0a66c2; transform: scale(1.1); transform: scale(1.2) translateY(-5px); -} - - - -:root { - --primary-color: #16a083; - --background-color: #ffffff; - --text-color: #333333; - --footer-bg-color: #232323; - --footer-text-color: #ffffff; - --transition-speed: 0.15s; - --navbar-bg-color: #fff; - --navbar-text-color: #000; - --navbar-hover-color: #117964; - --title-color: #333333; -} - -body { - background-color: var(--background-color); - color: var(--text-color); - transition: background-color var(--transition-speed), color var(--transition-speed); -} - -/* Dark mode styles */ -body.dark-mode { - --background-color: #1a1a1a; - --text-color: #f0f0f0; - --footer-bg-color: #0a0a0a; - --footer-text-color: #f0f0f0; - --navbar-bg-color: #333; - --navbar-text-color: #f0f0f0; - --navbar-hover-color: #16a083; -} - -/* Navbar styles */ -.navbar { - background-color: var(--navbar-bg-color); - color: var(--navbar-text-color); - transition: background-color var(--transition-speed), color var(--transition-speed); -} - -.menu-items a { - color: var(--navbar-text-color); -} - -.menu-items a:hover { - color: var(--navbar-hover-color); -} - -.logo { - color: var(--navbar-text-color); -} - -/* Dark mode specific navbar adjustments */ -body.dark-mode .navbar { - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); -} - -body.dark-mode .navbar-container .hamburger-lines .line { - background: var(--navbar-text-color); -} - -/* Theme switch styles */ -.theme-switch-wrapper { - display: flex; - align-items: center; -} - -.theme-switch { - display: inline-block; - height: 34px; - position: relative; - width: 60px; -} - -.theme-switch input { - display: none; -} - -.slider { - background-color: #ccc; - bottom: 0; - cursor: pointer; - left: 0; - position: absolute; - right: 0; - top: 0; - transition: .4s; -} - -.slider:before { - background-color: #fff; - bottom: 4px; - content: ""; - height: 26px; - left: 4px; - position: absolute; - transition: .4s; - width: 26px; -} - -input:checked + .slider { - background-color: var(--primary-color); -} - -input:checked + .slider:before { - transform: translateX(26px); -} - -.slider.round { - border-radius: 34px; -} - -.slider.round:before { - border-radius: 50%; -} - -/* Footer styles */ -.footer { - background-color: var(--footer-bg-color); - color: var(--footer-text-color); - transition: background-color var(--transition-speed), color var(--transition-speed); -} - -.footer-container { - display: flex; - flex-wrap: wrap; - justify-content: space-between; - padding: 2rem 0; -} - -.footer-column { - flex: 1; - min-width: 200px; - margin: 1rem; -} - -.footer-column h3 { - color: var(--primary-color); - margin-bottom: 1rem; -} - -.footer-column ul { - list-style-type: none; - padding: 0; -} - -.footer-column ul li { - margin-bottom: 0.5rem; -} - -.footer-column a { - color: var(--footer-text-color); - text-decoration: none; - transition: color 0.3s; -} - -.footer-column a:hover { - color: var(--primary-color); -} - -.social-icons a { - color: var(--footer-text-color); - font-size: 1.5rem; - margin-right: 1rem; - transition: transform 0.3s, color 0.3s; -} - -.social-icons a:hover { - color: var(--primary-color); - transform: translateY(-3px); -} - -.newsletter input[type="email"] { - background-color: rgba(255, 255, 255, 0.1); - border: none; - color: var(--footer-text-color); - padding: 0.5rem; - margin-right: 0.5rem; -} - -.newsletter button { - background-color: var(--primary-color); - border: none; - color: #ffffff; - cursor: pointer; - padding: 0.5rem 1rem; - transition: background-color 0.3s; -} - -.newsletter button:hover { - background-color: #128065; -} - -.footer-bottom { - background-color: rgba(0, 0, 0, 0.2); - padding: 1rem 0; - text-align: center; -} - -/* Dark mode UI effects */ -body.dark-mode .footer { - box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3); -} - -body.dark-mode .footer-column h3 { - text-shadow: 0 0 5px rgba(22, 160, 131, 0.5); -} - -body.dark-mode .social-icons a:hover { - text-shadow: 0 0 10px rgba(22, 160, 131, 0.8); -} - -body.dark-mode .newsletter input[type="email"] { - box-shadow: 0 0 5px rgba(255, 255, 255, 0.1); -} - -body.dark-mode .newsletter button { - box-shadow: 0 0 10px rgba(22, 160, 131, 0.5); -} - -/* Smooth transition for all elements */ -* { - transition: background-color var(--transition-speed), color var(--transition-speed), box-shadow var(--transition-speed); -} - -/* Dark mode specific adjustments */ -body.dark-mode #testimonials, -body.dark-mode #contact { - box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); -} - -body.dark-mode .testimonial-box { - background-color: rgba(255, 255, 255, 0.05); -} - -body.dark-mode .form-container input, -body.dark-mode .form-container textarea { - background-color: rgba(255, 255, 255, 0.1); - border-color: rgba(255, 255, 255, 0.2); -} - -body.dark-mode .form-container input::placeholder, -body.dark-mode .form-container textarea::placeholder { - color: rgba(255, 255, 255, 0.5); -} - -/* Ensure smooth transition for all elements */ -*:not(.main-title){ - transition: background-color var(--transition-speed), - color var(--transition-speed), - border-color var(--transition-speed), - box-shadow var(--transition-speed); -} - -.main-title { - text-transform: uppercase; - margin-top: 1.5em; -} - -/* New addition to avoid color changes */ -.main-title{ - color: #333; /* Set the fixed color you want */ - transition: none; /* Prevent color transition with theme */ } \ No newline at end of file From 140d9a29d96242111d471a87fbdcbddecad3600a Mon Sep 17 00:00:00 2001 From: tanmaysrivastava45 Date: Fri, 25 Oct 2024 20:40:13 +0530 Subject: [PATCH 02/10] changed the color of font to enhance UI and visibility --- Project Food Menu/index.html | 4 ++-- Project Food Menu/style.css | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Project Food Menu/index.html b/Project Food Menu/index.html index 49124b6..39838b9 100644 --- a/Project Food Menu/index.html +++ b/Project Food Menu/index.html @@ -307,8 +307,8 @@

Quick Links

diff --git a/Project Food Menu/style.css b/Project Food Menu/style.css index 3991537..b6e1fbb 100644 --- a/Project Food Menu/style.css +++ b/Project Food Menu/style.css @@ -707,7 +707,9 @@ footer { display: flex; flex-direction: column; } - +.footer-contact{ + color: #be1414; +} .footer-column h3 { margin-bottom: 5px; font-size: 18px; From df1631b7ba67f78cdfa6f3335ead8791835f1ba1 Mon Sep 17 00:00:00 2001 From: Krittika Bisht Date: Sat, 26 Oct 2024 23:51:20 +0530 Subject: [PATCH 03/10] Fixed the href anchor tags in the nav bar --- Project Food Menu/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Project Food Menu/index.html b/Project Food Menu/index.html index 39838b9..aae79fa 100644 --- a/Project Food Menu/index.html +++ b/Project Food Menu/index.html @@ -29,8 +29,8 @@ @@ -199,6 +200,71 @@

Pav Bhaji

+ + + +
+
+
+

Retaurant Subscription Plans

+

Exclusive Perks for True Food Enthusiasts!
"Join our culinary community and enjoy access to chef’s specials, members-only discounts, and priority reservations for new menu tastings. Don’t miss out on exclusive, delectable dishes crafted just for you, delivered fresh to your table each month! Choose the perfect dining plan to satisfy your cravings and elevate your dining experience!" +

+ +
+ Food + +
+

Basic Plan

+

Rs 500/Month

+
    +
  • 2 Exclusive Meals Per Month
  • +
  • 10% Discount on All Menu Items
  • +
  • Complimentary Drink with Each Visit
  • +
  • Priority Reservations
  • +
+ + Subscribe! +
+ + +
+

Premium Plan

+

Rs 1000 / Month

+
    +
  • 5 Exclusive Meals Per Month
  • +
  • 20% Discount on All Menu Items
  • +
  • Complimentary Dessert with Each Meal
  • +
  • VIP Priority Reservations & Early Access to Special Events
  • +
+ Subscribe! +
+ +
+

Elite Plan

+

Rs 1500 / Month

+
    +
  • Unlimited Monthly Meals
  • +
  • 30% Discount on All Menu Items
  • +
  • Access to Seasonal Menus & Exclusive Dishes
  • +
  • VIP Reservations Anytime + Exclusive Event Invitations
  • +
+ Subscribe! +
+ Food +
+
+
+
+

What Our Customers Say

diff --git a/Project Food Menu/style.css b/Project Food Menu/style.css index 209c84b..e9792a0 100644 --- a/Project Food Menu/style.css +++ b/Project Food Menu/style.css @@ -335,6 +335,144 @@ body { font-weight: 700; } +/*......./Subscriptions/........*/ + +#subscriptions{ + margin: 0; + padding: 0; + text-align: center; + background-color: #ffffff; +} +.subscriptions-heading{ + margin-top: 50px; + text-align: center; + font-size: 2.2rem; + font-weight: bold; +} +.subscriptions-para{ + margin: 10px; + text-align: center; + font-size: 1rem; +} +.plans-container { + display: flex; + justify-content: center; + gap: 10px; + margin-top: 30px; + /* flex-wrap: wrap; */ +} +.foods-img { + width: 200px; + height: auto; + border-radius: 15px; + box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease, box-shadow 0.3s ease; +} + +.foods-img:hover { + transform: scale(1.1); +} +.plan { + background-color: #fff; + border-radius: 10px; + /* padding: 10px; */ + height: 380px; + width: 700px; + box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); +} +.plan:hover { + transform: translateY(-10px); + box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease, box-shadow 0.3s ease; +} +.plan h3.basic { + font-size: 1.8rem; + font-weight: bold; + margin: 10px; + color: #444; +} + +.plan h3.premium { + font-size: 1.8rem; + font-weight: bold; + margin: 10px; + color: #8f8f8f; +} + +.plan h3.elite { + font-size: 1.8rem; + font-weight: bold; + margin: 10px; + color: #cfaa59; +} + +.plan p { + font-size: 1.2rem; + margin: 10px; + margin-bottom: 20px; +} + +.plan ul { + list-style: none; + font-size: 1rem; + padding: 0; +} + +.plan ul li { + margin-bottom: 10px; + font-size: 0.9rem; +} +/* Responsive Styles */ +@media (max-width: 768px) { + .plans-container { + flex-direction: column; /* Stack plans vertically */ + align-items: center; + } + + .plan { + width: 80%; + margin: 15px 0; + } + + .subscriptions-heading { + font-size: 1.8rem; + } + + .subscriptions-para { + font-size: 0.9rem; + } + + .plan h3 { + font-size: 1.5rem; + } + + .plan p { + font-size: 1rem; + } + + .plan ul li { + font-size: 0.85rem; + } +} + +@media (max-width: 480px) { + .subscriptions-heading { + font-size: 1.5rem; + } + + .plan h3 { + font-size: 1.3rem; + } + + .plan p { + font-size: 0.9rem; + } + + .plan ul li { + font-size: 0.8rem; + } +} + /* ........./ Testimonial /.......... */ #testimonials { From 8fde5e577bf15c8bb0527d2647a4d9d2dc3fc709 Mon Sep 17 00:00:00 2001 From: Yorichiiii22 Date: Tue, 29 Oct 2024 23:47:44 +0530 Subject: [PATCH 06/10] Revert "Added Restaurant Subscription Plans for Regular Users" --- Project Food Menu/index.html | 66 ----------------- Project Food Menu/style.css | 138 ----------------------------------- 2 files changed, 204 deletions(-) diff --git a/Project Food Menu/index.html b/Project Food Menu/index.html index da8e50b..06da2fc 100644 --- a/Project Food Menu/index.html +++ b/Project Food Menu/index.html @@ -37,7 +37,6 @@
  • About
  • Category
  • Menu
  • -
  • Subscription
  • Testimonial
  • Contact
  • @@ -200,71 +199,6 @@

    Pav Bhaji

    - - - -
    -
    -
    -

    Retaurant Subscription Plans

    -

    Exclusive Perks for True Food Enthusiasts!
    "Join our culinary community and enjoy access to chef’s specials, members-only discounts, and priority reservations for new menu tastings. Don’t miss out on exclusive, delectable dishes crafted just for you, delivered fresh to your table each month! Choose the perfect dining plan to satisfy your cravings and elevate your dining experience!" -

    - -
    - Food - -
    -

    Basic Plan

    -

    Rs 500/Month

    -
      -
    • 2 Exclusive Meals Per Month
    • -
    • 10% Discount on All Menu Items
    • -
    • Complimentary Drink with Each Visit
    • -
    • Priority Reservations
    • -
    - - Subscribe! -
    - - -
    -

    Premium Plan

    -

    Rs 1000 / Month

    -
      -
    • 5 Exclusive Meals Per Month
    • -
    • 20% Discount on All Menu Items
    • -
    • Complimentary Dessert with Each Meal
    • -
    • VIP Priority Reservations & Early Access to Special Events
    • -
    - Subscribe! -
    - -
    -

    Elite Plan

    -

    Rs 1500 / Month

    -
      -
    • Unlimited Monthly Meals
    • -
    • 30% Discount on All Menu Items
    • -
    • Access to Seasonal Menus & Exclusive Dishes
    • -
    • VIP Reservations Anytime + Exclusive Event Invitations
    • -
    - Subscribe! -
    - Food -
    -
    -
    -
    -

    What Our Customers Say

    diff --git a/Project Food Menu/style.css b/Project Food Menu/style.css index e9792a0..209c84b 100644 --- a/Project Food Menu/style.css +++ b/Project Food Menu/style.css @@ -335,144 +335,6 @@ body { font-weight: 700; } -/*......./Subscriptions/........*/ - -#subscriptions{ - margin: 0; - padding: 0; - text-align: center; - background-color: #ffffff; -} -.subscriptions-heading{ - margin-top: 50px; - text-align: center; - font-size: 2.2rem; - font-weight: bold; -} -.subscriptions-para{ - margin: 10px; - text-align: center; - font-size: 1rem; -} -.plans-container { - display: flex; - justify-content: center; - gap: 10px; - margin-top: 30px; - /* flex-wrap: wrap; */ -} -.foods-img { - width: 200px; - height: auto; - border-radius: 15px; - box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); - transition: transform 0.3s ease, box-shadow 0.3s ease; -} - -.foods-img:hover { - transform: scale(1.1); -} -.plan { - background-color: #fff; - border-radius: 10px; - /* padding: 10px; */ - height: 380px; - width: 700px; - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); -} -.plan:hover { - transform: translateY(-10px); - box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); - transition: transform 0.3s ease, box-shadow 0.3s ease; -} -.plan h3.basic { - font-size: 1.8rem; - font-weight: bold; - margin: 10px; - color: #444; -} - -.plan h3.premium { - font-size: 1.8rem; - font-weight: bold; - margin: 10px; - color: #8f8f8f; -} - -.plan h3.elite { - font-size: 1.8rem; - font-weight: bold; - margin: 10px; - color: #cfaa59; -} - -.plan p { - font-size: 1.2rem; - margin: 10px; - margin-bottom: 20px; -} - -.plan ul { - list-style: none; - font-size: 1rem; - padding: 0; -} - -.plan ul li { - margin-bottom: 10px; - font-size: 0.9rem; -} -/* Responsive Styles */ -@media (max-width: 768px) { - .plans-container { - flex-direction: column; /* Stack plans vertically */ - align-items: center; - } - - .plan { - width: 80%; - margin: 15px 0; - } - - .subscriptions-heading { - font-size: 1.8rem; - } - - .subscriptions-para { - font-size: 0.9rem; - } - - .plan h3 { - font-size: 1.5rem; - } - - .plan p { - font-size: 1rem; - } - - .plan ul li { - font-size: 0.85rem; - } -} - -@media (max-width: 480px) { - .subscriptions-heading { - font-size: 1.5rem; - } - - .plan h3 { - font-size: 1.3rem; - } - - .plan p { - font-size: 0.9rem; - } - - .plan ul li { - font-size: 0.8rem; - } -} - /* ........./ Testimonial /.......... */ #testimonials { From 4b6ed1d4e59873a6f60c7b0ba5f7dffdcedf79d5 Mon Sep 17 00:00:00 2001 From: Yorichiiii22 Date: Thu, 31 Oct 2024 15:03:57 +0530 Subject: [PATCH 07/10] Update index.html Subscription plan --- Project Food Menu/index.html | 65 +++++++++++++++++++++++++++++++++++- 1 file changed, 64 insertions(+), 1 deletion(-) diff --git a/Project Food Menu/index.html b/Project Food Menu/index.html index 06da2fc..b4382c3 100644 --- a/Project Food Menu/index.html +++ b/Project Food Menu/index.html @@ -1,4 +1,4 @@ - + @@ -198,6 +198,69 @@

    Pav Bhaji

    +
    + + +
    +
    +
    +

    Retaurant Subscription Plans

    +

    Exclusive Perks for True Food Enthusiasts!
    "Join our culinary community and enjoy access to chef’s specials, members-only discounts, and priority reservations for new menu tastings. Don’t miss out on exclusive, delectable dishes crafted just for you, delivered fresh to your table each month! Choose the perfect dining plan to satisfy your cravings and elevate your dining experience!" +

    + +
    + Food + +
    +

    Basic Plan

    +

    Rs 500/Month

    +
      +
    • 2 Exclusive Meals Per Month
    • +
    • 10% Discount on All Menu Items
    • +
    • Complimentary Drink with Each Visit
    • +
    • Priority Reservations
    • +
    + + Subscribe! +
    + + +
    +

    Premium Plan

    +

    Rs 1000 / Month

    +
      +
    • 5 Exclusive Meals Per Month
    • +
    • 20% Discount on All Menu Items
    • +
    • Complimentary Dessert with Each Meal
    • +
    • VIP Priority Reservations & Early Access to Special Events
    • +
    + Subscribe! +
    + +
    +

    Elite Plan

    +

    Rs 1500 / Month

    +
      +
    • Unlimited Monthly Meals
    • +
    • 30% Discount on All Menu Items
    • +
    • Access to Seasonal Menus & Exclusive Dishes
    • +
    • VIP Reservations Anytime + Exclusive Event Invitations
    • +
    + Subscribe! +
    + Food +
    +
    +

    What Our Customers Say

    From eb5a85c90121b91b8efbbf6bd18757d4a1181095 Mon Sep 17 00:00:00 2001 From: Yorichiiii22 Date: Thu, 31 Oct 2024 15:04:22 +0530 Subject: [PATCH 08/10] Update style.css --- Project Food Menu/style.css | 139 +++++++++++++++++++++++++++++++++++- 1 file changed, 138 insertions(+), 1 deletion(-) diff --git a/Project Food Menu/style.css b/Project Food Menu/style.css index 209c84b..e05056b 100644 --- a/Project Food Menu/style.css +++ b/Project Food Menu/style.css @@ -15,6 +15,143 @@ body { font-family: "Poppins", sans-serif; } +/*......./Subscriptions/........*/ + +#subscriptions{ + margin: 0; + padding: 0; + text-align: center; + background-color: #ffffff; +} +.subscriptions-heading{ + margin-top: 50px; + text-align: center; + font-size: 2.2rem; + font-weight: bold; +} +.subscriptions-para{ + margin: 10px; + text-align: center; + font-size: 1rem; +} +.plans-container { + display: flex; + justify-content: center; + gap: 10px; + margin-top: 30px; + /* flex-wrap: wrap; */ +} +.foods-img { + width: 200px; + height: auto; + border-radius: 15px; + box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease, box-shadow 0.3s ease; +} + +.foods-img:hover { + transform: scale(1.1); +} +.plan { + background-color: #fff; + border-radius: 10px; + /* padding: 10px; */ + height: 380px; + width: 700px; + box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); +} +.plan:hover { + transform: translateY(-10px); + box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease, box-shadow 0.3s ease; +} +.plan h3.basic { + font-size: 1.8rem; + font-weight: bold; + margin: 10px; + color: #444; +} + +.plan h3.premium { + font-size: 1.8rem; + font-weight: bold; + margin: 10px; + color: #8f8f8f; +} + +.plan h3.elite { + font-size: 1.8rem; + font-weight: bold; + margin: 10px; + color: #cfaa59; +} + +.plan p { + font-size: 1.2rem; + margin: 10px; + margin-bottom: 20px; +} + +.plan ul { + list-style: none; + font-size: 1rem; + padding: 0; +} + +.plan ul li { + margin-bottom: 10px; + font-size: 0.9rem; +} +/* Responsive Styles */ +@media (max-width: 768px) { + .plans-container { + flex-direction: column; /* Stack plans vertically */ + align-items: center; + } + + .plan { + width: 80%; + margin: 15px 0; + } + + .subscriptions-heading { + font-size: 1.8rem; + } + + .subscriptions-para { + font-size: 0.9rem; + } + + .plan h3 { + font-size: 1.5rem; + } + + .plan p { + font-size: 1rem; + } + + .plan ul li { + font-size: 0.85rem; + } +} + +@media (max-width: 480px) { + .subscriptions-heading { + font-size: 1.5rem; + } + + .plan h3 { + font-size: 1.3rem; + } + + .plan p { + font-size: 0.9rem; + } + + .plan ul li { + font-size: 0.8rem; + } +} /* ///////////..utility classes../////////// */ @@ -859,4 +996,4 @@ footer { color: #0a66c2; transform: scale(1.1); transform: scale(1.2) translateY(-5px); -} \ No newline at end of file +} From 73dd86e6342151cd0e637fab97e005fc6094f311 Mon Sep 17 00:00:00 2001 From: Yorichiiii22 Date: Thu, 31 Oct 2024 15:06:05 +0530 Subject: [PATCH 09/10] Update index.html --- Project Food Menu/index.html | 61 ++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/Project Food Menu/index.html b/Project Food Menu/index.html index b4382c3..6b6ac97 100644 --- a/Project Food Menu/index.html +++ b/Project Food Menu/index.html @@ -37,6 +37,67 @@
  • About
  • Category
  • Menu
  • +
    +
    +
    +

    Retaurant Subscription Plans

    +

    Exclusive Perks for True Food Enthusiasts!
    "Join our culinary community and enjoy access to chef’s specials, members-only discounts, and priority reservations for new menu tastings. Don’t miss out on exclusive, delectable dishes crafted just for you, delivered fresh to your table each month! Choose the perfect dining plan to satisfy your cravings and elevate your dining experience!" +

    + +
    + Food + +
    +

    Basic Plan

    +

    Rs 500/Month

    +
      +
    • 2 Exclusive Meals Per Month
    • +
    • 10% Discount on All Menu Items
    • +
    • Complimentary Drink with Each Visit
    • +
    • Priority Reservations
    • +
    + + Subscribe! +
    + + +
    +

    Premium Plan

    +

    Rs 1000 / Month

    +
      +
    • 5 Exclusive Meals Per Month
    • +
    • 20% Discount on All Menu Items
    • +
    • Complimentary Dessert with Each Meal
    • +
    • VIP Priority Reservations & Early Access to Special Events
    • +
    + Subscribe! +
    + +
    +

    Elite Plan

    +

    Rs 1500 / Month

    +
      +
    • Unlimited Monthly Meals
    • +
    • 30% Discount on All Menu Items
    • +
    • Access to Seasonal Menus & Exclusive Dishes
    • +
    • VIP Reservations Anytime + Exclusive Event Invitations
    • +
    + Subscribe! +
    + Food +
    +
    +
    +
  • Testimonial
  • Contact
  • From 4f166cfdb365aba84fde7cebc525d9d4ab6c0ec4 Mon Sep 17 00:00:00 2001 From: Yorichiiii22 Date: Thu, 31 Oct 2024 15:08:40 +0530 Subject: [PATCH 10/10] Update index.html --- Project Food Menu/index.html | 62 +----------------------------------- 1 file changed, 1 insertion(+), 61 deletions(-) diff --git a/Project Food Menu/index.html b/Project Food Menu/index.html index 6b6ac97..96ff726 100644 --- a/Project Food Menu/index.html +++ b/Project Food Menu/index.html @@ -37,67 +37,7 @@
  • About
  • Category
  • Menu
  • -
    -
    -
    -

    Retaurant Subscription Plans

    -

    Exclusive Perks for True Food Enthusiasts!
    "Join our culinary community and enjoy access to chef’s specials, members-only discounts, and priority reservations for new menu tastings. Don’t miss out on exclusive, delectable dishes crafted just for you, delivered fresh to your table each month! Choose the perfect dining plan to satisfy your cravings and elevate your dining experience!" -

    - -
    - Food - -
    -

    Basic Plan

    -

    Rs 500/Month

    -
      -
    • 2 Exclusive Meals Per Month
    • -
    • 10% Discount on All Menu Items
    • -
    • Complimentary Drink with Each Visit
    • -
    • Priority Reservations
    • -
    - - Subscribe! -
    - - -
    -

    Premium Plan

    -

    Rs 1000 / Month

    -
      -
    • 5 Exclusive Meals Per Month
    • -
    • 20% Discount on All Menu Items
    • -
    • Complimentary Dessert with Each Meal
    • -
    • VIP Priority Reservations & Early Access to Special Events
    • -
    - Subscribe! -
    - -
    -

    Elite Plan

    -

    Rs 1500 / Month

    -
      -
    • Unlimited Monthly Meals
    • -
    • 30% Discount on All Menu Items
    • -
    • Access to Seasonal Menus & Exclusive Dishes
    • -
    • VIP Reservations Anytime + Exclusive Event Invitations
    • -
    - Subscribe! -
    - Food -
    -
    -
    -
    +
  • Subscription
  • Testimonial
  • Contact