From 11070b00efbd80f1601c53f78cd9910fd3c41be7 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Tue, 16 Dec 2025 17:10:27 +0000 Subject: [PATCH] astro --- core/templates/base.html | 41 ++++--- core/templates/core/index.html | 216 +++++++++++---------------------- static/css/custom.css | 138 ++++++++++++++++++++- staticfiles/css/custom.css | 149 ++++++++++++++++++++--- 4 files changed, 363 insertions(+), 181 deletions(-) diff --git a/core/templates/base.html b/core/templates/base.html index 1e7e5fb..65b8669 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -1,25 +1,28 @@ - - - {% block title %}Knowledge Base{% endblock %} - {% if project_description %} - - - - {% endif %} - {% if project_image_url %} - - - {% endif %} - {% load static %} - - {% block head %}{% endblock %} + + + {% block title %}Raghupati Sahu - Vedic Astrologer{% endblock %} + + + + + + + {% load static %} + + + {% block meta_seo %}{% endblock %} + - - {% block content %}{% endblock %} +
+ {% block content %}{% endblock %} +
+ + + + {% block javascript %}{% endblock %} - - + \ No newline at end of file diff --git a/core/templates/core/index.html b/core/templates/core/index.html index faec813..76e971c 100644 --- a/core/templates/core/index.html +++ b/core/templates/core/index.html @@ -1,145 +1,77 @@ -{% extends "base.html" %} +{% extends 'base.html' %} +{% load static %} -{% block title %}{{ project_name }}{% endblock %} - -{% block head %} - - - - -{% endblock %} +{% block title %}Raghupati Sahu - Cosmic Journey{% endblock %} {% block content %} -
-
-

Analyzing your requirements and generating your app…

-
- Loading… -
-

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

-

This page will refresh automatically as the plan is implemented.

-

- Runtime: Django {{ django_version }} · Python {{ python_version }} - — UTC {{ current_time|date:"Y-m-d H:i:s" }} -

-
-
- -{% endblock %} \ No newline at end of file +
+ + +
+

RAGHUPATI SAHU

+

Vedic Wisdom for the Modern Age

+
+ + +
+
+

Chart Your Destiny

+
+ +
+
+

Career & Business

+

Job timing, promotion reading, business suitability.

+
Price: ₹500
+ Book via WhatsApp +
+
+ +
+
+

Marriage & Matchmaking

+

Kundli Milan, compatibility, relationship analysis.

+
Price: ₹500
+ Book via WhatsApp +
+
+ +
+
+

Health & Children

+

Health predictions, Child Birth consultation, Gemstones.

+
Price: ₹300 - ₹500
+ Book via WhatsApp +
+
+
+
+
+ + +
+
+

Vastu Shastra: Harmonize Your Space

+
+
+

Home & Office Vastu, Layout Correction, Energy Balancing.

+
Complete Vastu Consultation: ₹3000
+ Schedule Site Visit / Call +
+
+
+
+ + + + +
+{% endblock %} diff --git a/static/css/custom.css b/static/css/custom.css index 925f6ed..143b0b3 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -1,4 +1,136 @@ -/* Custom styles for the application */ -body { - font-family: system-ui, -apple-system, sans-serif; +:root { + --space-dark: #0c0c1d; + --space-light: #1d1135; + --accent-gold: #ffc700; + --accent-cyan: #00f2ea; + --text-cream: #f0f0f0; + --font-headings: 'Cinzel', serif; + --font-body: 'Inter', sans-serif; } + +body { + background: linear-gradient(135deg, var(--space-dark), var(--space-light)); + color: var(--text-cream); + font-family: var(--font-body); + overflow-x: hidden; +} + +h1, h2, h3, h4, h5, h6 { + font-family: var(--font-headings); + color: var(--accent-gold); +} + +.hero-section { + height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + text-align: center; + background-image: url('https://www.transparenttextures.com/patterns/stardust.png'); +} + +.hero-title { + font-size: 5rem; + font-weight: 700; + text-shadow: 0 0 15px var(--accent-gold); +} + +.hero-subtitle { + font-size: 1.5rem; + color: var(--text-cream); +} + +.service-section, .vastu-section, .contact-section { + padding: 100px 0; +} + +.section-title { + text-align: center; + margin-bottom: 60px; + font-size: 3rem; + text-shadow: 0 0 10px var(--accent-cyan); +} + +.service-card { + background: rgba(255, 255, 255, 0.05); + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 15px; + padding: 30px; + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + transition: all 0.3s ease; +} + +.service-card:hover { + transform: translateY(-10px); + border-color: var(--accent-cyan); +} + +.service-card h3 { + color: var(--accent-cyan); +} + +.service-card .price { + font-size: 1.2rem; + font-weight: 500; + color: var(--accent-gold); + margin: 15px 0; +} + +.btn-whatsapp { + background-color: var(--accent-gold); + color: var(--space-dark); + border-radius: 50px; + padding: 10px 30px; + font-weight: 500; + text-transform: uppercase; + letter-spacing: 1px; + border: none; + transition: all 0.3s ease; +} + +.btn-whatsapp:hover { + background-color: var(--accent-cyan); + color: var(--space-dark); + transform: scale(1.05); + box-shadow: 0 0 15px var(--accent-cyan); +} + +.vastu-section { + background: rgba(0,0,0,0.2); +} + +.contact-section { + background-color: var(--space-dark); + padding: 60px 0; + text-align: center; +} + +.contact-section h2 { + font-size: 2.5rem; + color: var(--accent-gold); +} + +.contact-section .whatsapp-link { + display: inline-block; + background-color: #25D366; + color: white; + padding: 15px 40px; + border-radius: 50px; + text-decoration: none; + font-size: 1.5rem; + font-weight: 500; + margin-top: 20px; + transition: all 0.3s ease; +} + +.contact-section .whatsapp-link:hover { + transform: scale(1.05); + box-shadow: 0 0 20px #25D366; +} + +.contact-section p { + margin-top: 20px; + color: var(--text-cream); +} \ No newline at end of file diff --git a/staticfiles/css/custom.css b/staticfiles/css/custom.css index 108056f..143b0b3 100644 --- a/staticfiles/css/custom.css +++ b/staticfiles/css/custom.css @@ -1,21 +1,136 @@ - :root { - --bg-color-start: #6a11cb; - --bg-color-end: #2575fc; - --text-color: #ffffff; - --card-bg-color: rgba(255, 255, 255, 0.01); - --card-border-color: rgba(255, 255, 255, 0.1); + --space-dark: #0c0c1d; + --space-light: #1d1135; + --accent-gold: #ffc700; + --accent-cyan: #00f2ea; + --text-cream: #f0f0f0; + --font-headings: 'Cinzel', serif; + --font-body: 'Inter', sans-serif; } + body { - margin: 0; - font-family: 'Inter', sans-serif; - background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end)); - color: var(--text-color); - display: flex; - justify-content: center; - align-items: center; - min-height: 100vh; - text-align: center; - overflow: hidden; - position: relative; + background: linear-gradient(135deg, var(--space-dark), var(--space-light)); + color: var(--text-cream); + font-family: var(--font-body); + overflow-x: hidden; } + +h1, h2, h3, h4, h5, h6 { + font-family: var(--font-headings); + color: var(--accent-gold); +} + +.hero-section { + height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + text-align: center; + background-image: url('https://www.transparenttextures.com/patterns/stardust.png'); +} + +.hero-title { + font-size: 5rem; + font-weight: 700; + text-shadow: 0 0 15px var(--accent-gold); +} + +.hero-subtitle { + font-size: 1.5rem; + color: var(--text-cream); +} + +.service-section, .vastu-section, .contact-section { + padding: 100px 0; +} + +.section-title { + text-align: center; + margin-bottom: 60px; + font-size: 3rem; + text-shadow: 0 0 10px var(--accent-cyan); +} + +.service-card { + background: rgba(255, 255, 255, 0.05); + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 15px; + padding: 30px; + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + transition: all 0.3s ease; +} + +.service-card:hover { + transform: translateY(-10px); + border-color: var(--accent-cyan); +} + +.service-card h3 { + color: var(--accent-cyan); +} + +.service-card .price { + font-size: 1.2rem; + font-weight: 500; + color: var(--accent-gold); + margin: 15px 0; +} + +.btn-whatsapp { + background-color: var(--accent-gold); + color: var(--space-dark); + border-radius: 50px; + padding: 10px 30px; + font-weight: 500; + text-transform: uppercase; + letter-spacing: 1px; + border: none; + transition: all 0.3s ease; +} + +.btn-whatsapp:hover { + background-color: var(--accent-cyan); + color: var(--space-dark); + transform: scale(1.05); + box-shadow: 0 0 15px var(--accent-cyan); +} + +.vastu-section { + background: rgba(0,0,0,0.2); +} + +.contact-section { + background-color: var(--space-dark); + padding: 60px 0; + text-align: center; +} + +.contact-section h2 { + font-size: 2.5rem; + color: var(--accent-gold); +} + +.contact-section .whatsapp-link { + display: inline-block; + background-color: #25D366; + color: white; + padding: 15px 40px; + border-radius: 50px; + text-decoration: none; + font-size: 1.5rem; + font-weight: 500; + margin-top: 20px; + transition: all 0.3s ease; +} + +.contact-section .whatsapp-link:hover { + transform: scale(1.05); + box-shadow: 0 0 20px #25D366; +} + +.contact-section p { + margin-top: 20px; + color: var(--text-cream); +} \ No newline at end of file