/* RESET */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } body { background: #0e0e17; color: white; scroll-behavior: smooth; } /* NAVIGATION */ nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: linear-gradient(90deg, #8e2de2, #ff6e7f); position: sticky; top: 0; z-index: 10; } .logo { font-size: 1.6rem; font-weight: bold; color: #fff; } nav ul { display: flex; gap: 25px; } nav a { color: white; text-decoration: none; font-weight: 500; } /* HERO */ .hero { height: 100vh; background: linear-gradient(120deg, #8e2de2, #ff6e7f, #4facfe); background-size: cover; display: flex; justify-content: center; align-items: center; text-align: center; padding: 40px; } .hero h2 { font-size: 3.2rem; margin-bottom: 15px; text-shadow: 0 0 15px rgba(255, 255, 255, 0.7); } .hero p { font-size: 1.2rem; margin-bottom: 20px; } .btn { background: white; color: #8e2de2; padding: 12px 30px; border-radius: 25px; text-decoration: none; font-weight: bold; } /* SECTIONS */ .section { padding: 80px 40px; } .section-title { text-align: center; font-size: 2.3rem; margin-bottom: 50px; color: #ff9df2; text-shadow: 0 0 10px #ff6e7f; } /* GALLERY */ .gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 25px; } .gallery img { width: 100%; border-radius: 12px; object-fit: cover; box-shadow: 0 0 15px #8e2de2; } /* ABOUT */ .about-container { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; } .about-img { width: 320px; border-radius: 12px; box-shadow: 0 0 25px #ff6e7f; } .about-text { max-width: 600px; font-size: 1.1rem; } /* PRICING */ .pricing-container { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; } .price-card { background: #1a1a2e; padding: 25px; width: 300px; border-radius: 15px; border: 2px solid #ff6e7f; text-align: center; box-shadow: 0 0 20px #8e2de2; } .price-card h3 { color: #ff9df2; } .price { font-size: 2rem; margin: 15px 0; } /* CONTACT */ .contact-form { max-width: 500px; margin: auto; display: flex; flex-direction: column; gap: 15px; } .contact-form input, .contact-form textarea { padding: 12px; border-radius: 8px; border: none; background: #2c2c44; color: white; } .submit-btn { background: linear-gradient(90deg, #ff6e7f, #8e2de2); color: white; border: none; } /* FOOTER */ footer { text-align: center; padding: 20px; background: #111; margin-top: 50px; }