diff --git a/assets/css/custom.css b/assets/css/custom.css
new file mode 100644
index 0000000..e9134a3
--- /dev/null
+++ b/assets/css/custom.css
@@ -0,0 +1,81 @@
+
+body {
+ font-family: 'Inter', sans-serif;
+ background-color: #F9FAFB;
+ color: #1F2937;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ font-family: 'Georgia', serif;
+}
+
+.navbar {
+ transition: background-color 0.3s ease-in-out;
+}
+
+.hero {
+ background: linear-gradient(to right, rgba(79, 70, 229, 0.9), rgba(37, 99, 235, 0.9)), url('https://picsum.photos/seed/asociatia360-hero/1600/900');
+ background-size: cover;
+ background-position: center;
+ color: white;
+ padding: 10rem 1rem;
+ text-align: center;
+}
+
+.hero h1 {
+ font-size: 3.5rem;
+ font-weight: bold;
+}
+
+.hero p {
+ font-size: 1.25rem;
+ margin-bottom: 2rem;
+}
+
+.btn-primary {
+ background-color: #4F46E5;
+ border-color: #4F46E5;
+ padding: 0.75rem 1.5rem;
+ border-radius: 0.5rem;
+ font-weight: bold;
+ transition: background-color 0.2s;
+}
+
+.btn-primary:hover {
+ background-color: #4338CA;
+ border-color: #4338CA;
+}
+
+.section {
+ padding: 6rem 1rem;
+}
+
+.card {
+ border: none;
+ border-radius: 0.75rem;
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ transition: transform 0.3s;
+}
+
+.card:hover {
+ transform: translateY(-5px);
+}
+
+.form-control {
+ border-radius: 0.5rem;
+}
+
+footer {
+ background-color: #1F2937;
+ color: white;
+ padding: 3rem 1rem;
+}
+
+footer a {
+ color: #9CA3AF;
+ text-decoration: none;
+}
+
+footer a:hover {
+ color: white;
+}
diff --git a/assets/js/main.js b/assets/js/main.js
new file mode 100644
index 0000000..a616ee0
--- /dev/null
+++ b/assets/js/main.js
@@ -0,0 +1,40 @@
+
+document.addEventListener('DOMContentLoaded', function () {
+ // Navbar shrink on scroll
+ const navbar = document.querySelector('.navbar');
+ window.addEventListener('scroll', () => {
+ if (window.scrollY > 50) {
+ navbar.classList.add('bg-white', 'shadow-sm');
+ } else {
+ navbar.classList.remove('bg-white', 'shadow-sm');
+ }
+ });
+
+ // Smooth scrolling for anchor links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function (e) {
+ e.preventDefault();
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
+ behavior: 'smooth'
+ });
+ });
+ });
+
+ // Contact form validation
+ const contactForm = document.querySelector('#contactForm');
+ if(contactForm) {
+ contactForm.addEventListener('submit', function(e) {
+ e.preventDefault();
+ // Basic validation
+ let name = document.querySelector('#name').value;
+ let email = document.querySelector('#email').value;
+ let message = document.querySelector('#message').value;
+ if(name && email && message) {
+ alert('Mulțumim pentru mesaj! Momentan, acest formular este demonstrativ.');
+ contactForm.reset();
+ } else {
+ alert('Vă rugăm completați toate câmpurile.');
+ }
+ });
+ }
+});
diff --git a/index.php b/index.php
index 7205f3d..f55d353 100644
--- a/index.php
+++ b/index.php
@@ -1,150 +1,116 @@
-
-
-
+
+
-
-
- New Style
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ Asociația360 - Management Asociații de Proprietari
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
Analyzing your requirements and generating your website…
-
- Loading…
-
-
= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.
-
This page will update automatically as the plan is implemented.
-
Runtime: PHP = htmlspecialchars($phpVersion) ?> — UTC = htmlspecialchars($now) ?>
-
-
-
+
+
+
+
+
+
+
+
Tot ce ai nevoie într-un singur loc
+
+
+
+

+
Management Simplificat
+
Gestionează clădiri, apartamente și locatari dintr-o interfață intuitivă.
+
+
+
+
+

+
Transparență Financiară
+
Urmărește plățile, înregistrează cheltuieli și generează rapoarte complete.
+
+
+
+
+

+
Comunicare Eficientă
+
Postează anunțuri importante și notifică locatarii în timp real.
+
+
+
+
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/privacy.php b/privacy.php
new file mode 100644
index 0000000..4dd1fce
--- /dev/null
+++ b/privacy.php
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+ Pagină nenovăsită
+
+
+
+
+
+
404
+
Oups! Pagină nenovăsită.
+
+ Pagina pe care o căutați nu există.
+
+
Acasă
+
+
+
+
\ No newline at end of file
diff --git a/sitemap.xml b/sitemap.xml
new file mode 100644
index 0000000..b214596
--- /dev/null
+++ b/sitemap.xml
@@ -0,0 +1,15 @@
+
+
+
+ https://asociatia360.example.com/index.php
+ 2025-10-05
+ monthly
+ 1.0
+
+
+ https://asociatia360.example.com/privacy.php
+ 2025-10-05
+ yearly
+ 0.5
+
+
\ No newline at end of file