Changed around line 1
+ :root {
+ --primary: #1e3d59;
+ --secondary: #17c3b2;
+ --accent: #ffc13b;
+ --text: #2b2b2b;
+ --light: #f5f5f5;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text);
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ position: relative;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ color: white;
+ overflow: hidden;
+ }
+
+ .water-effect {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: radial-gradient(circle, transparent 20%, rgba(255,255,255,0.1) 21%, transparent 22%);
+ background-size: 20px 20px;
+ animation: waterMove 20s linear infinite;
+ }
+
+ @keyframes waterMove {
+ 0% { background-position: 0 0; }
+ 100% { background-position: 400px 400px; }
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
+ }
+
+ .cta {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ background: var(--accent);
+ border: none;
+ border-radius: 30px;
+ color: var(--text);
+ cursor: pointer;
+ transition: transform 0.3s;
+ }
+
+ .cta:hover {
+ transform: scale(1.05);
+ }
+
+ /* Products Section */
+ .products {
+ padding: 5rem 5%;
+ background: var(--light);
+ }
+
+ .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .product-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ text-align: center;
+ transition: transform 0.3s;
+ }
+
+ .product-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .fountain-animation {
+ height: 200px;
+ margin-bottom: 1rem;
+ background: linear-gradient(var(--secondary), var(--primary));
+ border-radius: 10px;
+ position: relative;
+ overflow: hidden;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 5rem 5%;
+ background: white;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 5rem 5%;
+ background: var(--light);
+ }
+
+ #contact-form {
+ max-width: 600px;
+ margin: 2rem auto;
+ display: grid;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 2px solid transparent;
+ border-radius: 8px;
+ font-size: 1rem;
+ transition: border-color 0.3s;
+ }
+
+ input:focus, textarea:focus {
+ border-color: var(--secondary);
+ outline: none;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--primary);
+ color: white;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ margin-right: 1rem;
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .mobile-menu {
+ display: block;
+ font-size: 1.5rem;
+ background: none;
+ border: none;
+ color: var(--text);
+ cursor: pointer;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }