diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..d5828ba --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,40 @@ + +:root { + --bs-primary-rgb: 13, 110, 253; + --bs-secondary-rgb: 111, 66, 193; + --font-family-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; +} + +body { + font-family: var(--font-family-sans-serif); +} + +.hero { + background: linear-gradient(45deg, rgba(13, 110, 253, 0.7), rgba(111, 66, 193, 0.7)), url('https://picsum.photos/1600/900') no-repeat center center; + background-size: cover; + color: white; +} + +.navbar-brand { + font-weight: bold; +} + +.navbar.scrolled { + background-color: rgba(255, 255, 255, 0.9); + box-shadow: 0 2px 4px rgba(0,0,0,.04); + transition: background-color 0.3s ease-in-out; +} + +.section-icon { + font-size: 2.5rem; + color: var(--bs-primary); +} + +.testimonial-card img { + width: 96px; + height: 96px; +} + +.footer { + background-color: #f8f9fa; +} diff --git a/assets/js/main.js b/assets/js/main.js new file mode 100644 index 0000000..5449446 --- /dev/null +++ b/assets/js/main.js @@ -0,0 +1,36 @@ + +document.addEventListener('DOMContentLoaded', function () { + // Navbar shrink functionality + const navbar = document.querySelector('.navbar'); + if (navbar) { + window.addEventListener('scroll', () => { + if (window.scrollY > 50) { + navbar.classList.add('scrolled'); + } else { + navbar.classList.remove('scrolled'); + } + }); + } + + // Smooth scroll for anchor links + document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); + }); + + // Bootstrap form validation + const forms = document.querySelectorAll('.needs-validation'); + Array.prototype.slice.call(forms).forEach(function (form) { + form.addEventListener('submit', function (event) { + if (!form.checkValidity()) { + event.preventDefault(); + event.stopPropagation(); + } + form.classList.add('was-validated'); + }, false); + }); +}); diff --git a/index.php b/index.php index e13ae95..71a84c4 100644 --- a/index.php +++ b/index.php @@ -1,131 +1,243 @@ - - + - - - New Style - - - - + + + EventFlow - Effortless Event Management + + + + + + + + + + + + + -
-
-

Analyzing your requirements and generating your website…

-
- Loading… -
-

Flatlogic AI is collecting your requirements and applying the first changes.

-

This page will update automatically as the plan is implemented.

-

Runtime: PHP — UTC

-
-
- + + + + + +
+
+

UPDATED

+

Your all-in-one solution for planning flawless events, from small gatherings to large corporate affairs.

+ Get Started Free + Explore Features +
+
+ + +
+
+

Everything you need in one place

+
+
+ +

Venue Management

+

Track available spaces, sizes, and bookings.

+
+
+ +

Vendor Lists

+

Organize caterers, decorators, and entertainers.

+
+
+ +

Guest Tracking

+

Manage RSVPs, guest lists, and special requests.

+
+
+ +

Budget Control

+

Handle finances from initial deposits to final payments.

+
+
+
+
+ + +
+
+
+
+ A close-up of the EventFlow dashboard on a laptop, showing charts and schedules. +
+
+

All-in-One Dashboard

+

Forget switching between spreadsheets and apps. See the big picture and manage every detail from a single, intuitive dashboard that brings clarity to your event planning.

+
+
+
+
+ + +
+
+
+
+ A diverse team of event planners collaborating happily around a modern table. +
+
+

Seamless Collaboration

+

Keep your team, vendors, and clients in the loop. Share schedules, assign tasks, and communicate effortlessly to ensure everyone is on the same page, every step of the way.

+
+
+
+
+ + +
+
+

Loved by event planners worldwide

+
+
+
+
+ Satisfied customer avatar. +

"EventFlow transformed how we manage our corporate events. The dashboard is a game-changer."

+
Jane Doe, Acme Corp
+
+
+
+
+
+
+ Satisfied customer avatar. +

"Finally, a tool that understands the complexities of wedding planning. Highly recommended!"

+
John Smith, Dream Weddings
+
+
+
+
+
+
+ Satisfied customer avatar. +

"The vendor and budget tracking features saved us countless hours. An essential tool for any organizer."

+ +
+
+
+
+
+
+ + +
+
+

Frequently Asked Questions

+
+
+

+ +

+
+
+ EventFlow is designed for any event, from small team gatherings and weddings to large-scale corporate conferences and festivals. +
+
+
+
+

+ +

+
+
+ Yes! You can get started for free to explore our core features. Our pricing is flexible to scale with your needs. +
+
+
+
+

+ +

+
+
+ Absolutely. You can easily import guest lists from CSV files to get up and running in minutes. +
+
+
+
+
+
+ + +
+
+

Get in Touch

+
+
+
+
+ + +
Please enter your name.
+
+
+ + +
Please enter a valid email address.
+
+
+ + +
Please enter a message.
+
+
+ +
+
+
+
+
+
+ + + + + + + + - + \ No newline at end of file