12/20/25 V.2
This commit is contained in:
parent
473e6afeab
commit
fd5f4506a7
Binary file not shown.
Binary file not shown.
99
core/templates/core/features.html
Normal file
99
core/templates/core/features.html
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
{% load static %}
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="ComplianceShield Pro Features - Complete construction compliance management, OSHA tracking, document management, and contractor oversight.">
|
||||||
|
<title>Features - ComplianceShield Pro</title>
|
||||||
|
<!-- Favicon -->
|
||||||
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🛡️</text></svg>">
|
||||||
|
<link rel="stylesheet" href="{% static 'css/custom.css' %}">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav>
|
||||||
|
<a href="/" class="logo">
|
||||||
|
<span class="logo-icon">🛡️</span>
|
||||||
|
ComplianceShield
|
||||||
|
</a>
|
||||||
|
<ul class="nav-links">
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
<li><a href="/features" class="active">Features</a></li>
|
||||||
|
<li><a href="#">Pricing</a></li>
|
||||||
|
<li><a href="#">Integrations</a></li>
|
||||||
|
<li><a href="#">About</a></li>
|
||||||
|
</ul>
|
||||||
|
<div class="nav-actions">
|
||||||
|
<a href="https://your-app.appwizzy.com" class="nav-cta">Sign In</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<main class="page-header">
|
||||||
|
<div class="header-content">
|
||||||
|
<h1>All-in-One Compliance Platform</h1>
|
||||||
|
<p class="subtitle">A complete suite of tools to manage construction compliance, from team hours to OSHA standards, all in one place.</p>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<section class="features-grid">
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon" style="background-color: var(--blue);">⏱️</div>
|
||||||
|
<h3>Time Tracking & Scheduling</h3>
|
||||||
|
<p>Monitor team hours, schedule shifts, and manage payroll with an integrated time management system.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon" style="background-color: var(--green);">📋</div>
|
||||||
|
<h3>OSHA Compliance</h3>
|
||||||
|
<p>Automated checks and reporting to ensure your job sites meet the latest OSHA safety standards.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon" style="background-color: var(--orange);">📂</div>
|
||||||
|
<h3>Document Management</h3>
|
||||||
|
<p>Securely store, access, and manage all your compliance documents, certifications, and reports.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon" style="background-color: var(--red);">🤝</div>
|
||||||
|
<h3>Subcontractor Oversight</h3>
|
||||||
|
<p>Onboard and manage subcontractors, track their compliance status, and mitigate project risks.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon" style="background-color: var(--gold-dark);">📊</div>
|
||||||
|
<h3>Real-Time Analytics</h3>
|
||||||
|
<p>Access intuitive dashboards to visualize compliance metrics and make data-driven decisions.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon" style="background-color: var(--text-muted);">🔔</div>
|
||||||
|
<h3>Automated Alerts</h3>
|
||||||
|
<p>Receive instant notifications for expiring certifications, non-compliance events, and critical deadlines.</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer-container">
|
||||||
|
<div class="footer-about">
|
||||||
|
<h3>ComplianceShield Pro</h3>
|
||||||
|
<p>Construction compliance management, simplified.</p>
|
||||||
|
</div>
|
||||||
|
<div class="footer-links">
|
||||||
|
<h4>Company</h4>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#">About Us</a></li>
|
||||||
|
<li><a href="#">Blog</a></li>
|
||||||
|
<li><a href="#">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="footer-links">
|
||||||
|
<h4>Legal</h4>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#">Privacy Policy</a></li>
|
||||||
|
<li><a href="#">Terms of Service</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer-bottom">
|
||||||
|
<p>© 2025 ComplianceShield Pro. All rights reserved.</p>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -16,20 +16,19 @@
|
|||||||
<body>
|
<body>
|
||||||
|
|
||||||
<nav>
|
<nav>
|
||||||
<a href="#" class="logo">
|
<a href="/" class="logo">
|
||||||
<span class="logo-icon">🛡️</span>
|
<span class="logo-icon">🛡️</span>
|
||||||
ComplianceShield Pro
|
ComplianceShield
|
||||||
</a>
|
</a>
|
||||||
<ul class="nav-links">
|
<ul class="nav-links">
|
||||||
<li><a href="#features">Features</a></li>
|
<li><a href="/">Home</a></li>
|
||||||
<li><a href="#pricing">Pricing</a></li>
|
<li><a href="/features">Features</a></li>
|
||||||
<li><a href="#contact">Contact</a></li>
|
<li><a href="#">Pricing</a></li>
|
||||||
|
<li><a href="#">Integrations</a></li>
|
||||||
|
<li><a href="#">About</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="#" class="nav-cta">Get Started</a>
|
<div class="nav-actions">
|
||||||
<div class="mobile-menu-toggle">
|
<a href="https://your-app.appwizzy.com" class="nav-cta">Sign In</a>
|
||||||
<span></span>
|
|
||||||
<span></span>
|
|
||||||
<span></span>
|
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
@ -44,11 +43,7 @@
|
|||||||
The all-in-one platform for construction compliance. Track time, manage documents, and ensure OSHA compliance with ease.
|
The all-in-one platform for construction compliance. Track time, manage documents, and ensure OSHA compliance with ease.
|
||||||
</p>
|
</p>
|
||||||
<div class="hero-ctas">
|
<div class="hero-ctas">
|
||||||
<a href="#" class="btn-primary">Start Free Trial</a>
|
<a href="https://your-app.appwizzy.com/signup" class="btn-primary">Get Started</a>
|
||||||
<a href="#" class="btn-secondary">
|
|
||||||
<span class="play-icon">▶</span>
|
|
||||||
Watch Demo
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
<p class="hero-note">No credit card required. Cancel anytime.</p>
|
<p class="hero-note">No credit card required. Cancel anytime.</p>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@ -1,7 +1,8 @@
|
|||||||
from django.urls import path
|
from django.urls import path
|
||||||
|
|
||||||
from .views import home
|
from .views import index, features
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path("", home, name="home"),
|
path("", index, name="index"),
|
||||||
|
path("features/", features, name="features"),
|
||||||
]
|
]
|
||||||
|
|||||||
@ -6,20 +6,10 @@ from django.shortcuts import render
|
|||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
|
||||||
|
|
||||||
def home(request):
|
def index(request):
|
||||||
"""Render the landing screen with loader and environment details."""
|
context = {}
|
||||||
host_name = request.get_host().lower()
|
|
||||||
agent_brand = "AppWizzy" if host_name == "appwizzy.com" else "Flatlogic"
|
|
||||||
now = timezone.now()
|
|
||||||
|
|
||||||
context = {
|
|
||||||
"project_name": "New Style",
|
|
||||||
"agent_brand": agent_brand,
|
|
||||||
"django_version": django_version(),
|
|
||||||
"python_version": platform.python_version(),
|
|
||||||
"current_time": now,
|
|
||||||
"host_name": host_name,
|
|
||||||
"project_description": os.getenv("PROJECT_DESCRIPTION", ""),
|
|
||||||
"project_image_url": os.getenv("PROJECT_IMAGE_URL", ""),
|
|
||||||
}
|
|
||||||
return render(request, "core/index.html", context)
|
return render(request, "core/index.html", context)
|
||||||
|
|
||||||
|
def features(request):
|
||||||
|
context = {}
|
||||||
|
return render(request, "core/features.html", context)
|
||||||
|
|||||||
@ -1,257 +1,213 @@
|
|||||||
* {
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--gold-light: #f0d68c;
|
--gold-light: #f0d68c;
|
||||||
--gold-dark: #c9a55a;
|
--gold-dark: #c9a55a;
|
||||||
--bg-dark: #0a0a0a;
|
--bg-dark: #0a0a0a;
|
||||||
--bg-card: #141414;
|
--bg-card: #141414;
|
||||||
--text-primary: #ffffff;
|
--text-primary: #ffffff;
|
||||||
--text-secondary: #a0a0a0;
|
--text-secondary: #a0a0a0;
|
||||||
--text-muted: #606060;
|
--text-muted: #606060;
|
||||||
--border-light: rgba(255, 255, 255, 0.1);
|
--border-light: rgba(255, 255, 255, 0.1);
|
||||||
--border-lighter: rgba(255, 255, 255, 0.05);
|
--border-lighter: rgba(255, 255, 255, 0.05);
|
||||||
}
|
--green: #4caf50;
|
||||||
|
--orange: #ff9800;
|
||||||
|
--red: #ef4444;
|
||||||
|
--blue: #3b82f6;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||||
background: var(--bg-dark);
|
background: var(--bg-dark);
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Navigation */
|
/* Navigation */
|
||||||
nav {
|
nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 20px 60px;
|
padding: 20px 60px;
|
||||||
background: rgba(10, 10, 10, 0.95);
|
background: rgba(10, 10, 10, 0.95);
|
||||||
backdrop-filter: blur(10px);
|
backdrop-filter: blur(10px);
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
border-bottom: 1px solid var(--border-light);
|
border-bottom: 1px solid var(--border-light);
|
||||||
transition: all 0.3s ease;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
nav.scrolled {
|
.logo {
|
||||||
padding: 15px 60px;
|
display: flex;
|
||||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
|
align-items: center;
|
||||||
}
|
gap: 12px;
|
||||||
|
font-size: 22px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--text-primary);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
.logo {
|
.logo-icon {
|
||||||
display: flex;
|
width: 32px;
|
||||||
align-items: center;
|
height: 32px;
|
||||||
gap: 12px;
|
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
||||||
font-size: 22px;
|
border-radius: 8px;
|
||||||
font-weight: 600;
|
display: flex;
|
||||||
color: var(--text-primary);
|
align-items: center;
|
||||||
text-decoration: none;
|
justify-content: center;
|
||||||
}
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
.logo-icon {
|
.nav-links {
|
||||||
width: 32px;
|
display: flex;
|
||||||
height: 32px;
|
gap: 40px;
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
list-style: none;
|
||||||
border-radius: 8px;
|
}
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links {
|
.nav-links a {
|
||||||
display: flex;
|
color: var(--text-secondary);
|
||||||
gap: 40px;
|
text-decoration: none;
|
||||||
list-style: none;
|
font-size: 15px;
|
||||||
}
|
font-weight: 500;
|
||||||
|
transition: color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
.nav-links a {
|
.nav-links a:hover, .nav-links a.active {
|
||||||
color: var(--text-secondary);
|
color: var(--text-primary);
|
||||||
text-decoration: none;
|
}
|
||||||
font-size: 15px;
|
|
||||||
font-weight: 500;
|
|
||||||
transition: color 0.3s;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links a::after {
|
.nav-cta {
|
||||||
content: '';
|
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
||||||
position: absolute;
|
color: #0a0a0a;
|
||||||
bottom: -4px;
|
padding: 10px 20px;
|
||||||
left: 0;
|
border-radius: 8px;
|
||||||
width: 0;
|
text-decoration: none;
|
||||||
height: 2px;
|
font-weight: 600;
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
transition: all 0.3s;
|
||||||
transition: width 0.3s;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links a:hover {
|
.nav-cta:hover {
|
||||||
color: var(--text-primary);
|
box-shadow: 0 4px 15px rgba(240, 214, 140, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-links a:hover::after {
|
.nav-actions {
|
||||||
width: 100%;
|
display: flex;
|
||||||
}
|
align-items: center;
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
.nav-cta {
|
/* Feature Page Specific Styles */
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
.page-header {
|
||||||
color: var(--bg-dark);
|
padding: 160px 60px 80px;
|
||||||
padding: 10px 24px;
|
text-align: center;
|
||||||
border-radius: 8px;
|
border-bottom: 1px solid var(--border-lighter);
|
||||||
text-decoration: none;
|
}
|
||||||
font-weight: 600;
|
|
||||||
font-size: 15px;
|
|
||||||
transition: all 0.3s;
|
|
||||||
box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-cta:hover {
|
.header-content .subtitle {
|
||||||
transform: translateY(-2px);
|
font-size: 20px;
|
||||||
box-shadow: 0 6px 16px rgba(201, 165, 90, 0.4);
|
color: var(--text-secondary);
|
||||||
}
|
max-width: 700px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
/* Mobile Menu Toggle */
|
.features-grid {
|
||||||
.mobile-menu-toggle {
|
display: grid;
|
||||||
display: none;
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
flex-direction: column;
|
gap: 30px;
|
||||||
gap: 5px;
|
padding: 80px 60px;
|
||||||
cursor: pointer;
|
max-width: 1200px;
|
||||||
}
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
.mobile-menu-toggle span {
|
.feature-card {
|
||||||
width: 25px;
|
background: var(--bg-card);
|
||||||
height: 2px;
|
border: 1px solid var(--border-lighter);
|
||||||
background: var(--text-primary);
|
border-radius: 12px;
|
||||||
transition: all 0.3s;
|
padding: 40px;
|
||||||
}
|
text-align: center;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
/* Hero Section */
|
.feature-card:hover {
|
||||||
.hero {
|
transform: translateY(-5px);
|
||||||
padding: 180px 60px 100px;
|
border-color: var(--border-light);
|
||||||
text-align: center;
|
}
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-badge {
|
.feature-icon {
|
||||||
display: inline-flex;
|
width: 60px;
|
||||||
align-items: center;
|
height: 60px;
|
||||||
gap: 8px;
|
border-radius: 50%;
|
||||||
background: rgba(255, 255, 255, 0.05);
|
display: flex;
|
||||||
border: 1px solid var(--border-light);
|
align-items: center;
|
||||||
padding: 8px 16px;
|
justify-content: center;
|
||||||
border-radius: 20px;
|
font-size: 24px;
|
||||||
font-size: 14px;
|
margin: 0 auto 24px;
|
||||||
color: var(--text-secondary);
|
}
|
||||||
margin-bottom: 30px;
|
|
||||||
animation: fadeInDown 0.6s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-badge-icon {
|
.feature-card h3 {
|
||||||
width: 20px;
|
font-size: 22px;
|
||||||
height: 20px;
|
margin-bottom: 12px;
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
}
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
.feature-card p {
|
||||||
font-size: 72px;
|
color: var(--text-secondary);
|
||||||
line-height: 1.1;
|
line-height: 1.7;
|
||||||
margin-bottom: 24px;
|
}
|
||||||
background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
|
|
||||||
-webkit-background-clip: text;
|
|
||||||
-webkit-text-fill-color: transparent;
|
|
||||||
background-clip: text;
|
|
||||||
animation: fadeInUp 0.8s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-description {
|
/* Footer */
|
||||||
font-size: 20px;
|
.footer {
|
||||||
color: #808080;
|
background: var(--bg-card);
|
||||||
max-width: 700px;
|
padding: 60px 60px 30px;
|
||||||
margin: 0 auto 40px;
|
border-top: 1px solid var(--border-lighter);
|
||||||
line-height: 1.6;
|
}
|
||||||
animation: fadeInUp 1s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-ctas {
|
.footer-container {
|
||||||
display: flex;
|
display: grid;
|
||||||
gap: 20px;
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||||
justify-content: center;
|
gap: 40px;
|
||||||
margin-bottom: 16px;
|
max-width: 1200px;
|
||||||
animation: fadeInUp 1.2s ease;
|
margin: 0 auto 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.footer-about h3 {
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
font-size: 20px;
|
||||||
color: var(--bg-dark);
|
margin-bottom: 12px;
|
||||||
padding: 16px 32px;
|
}
|
||||||
border-radius: 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 16px;
|
|
||||||
transition: all 0.3s;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary:hover {
|
.footer-about p {
|
||||||
transform: translateY(-2px);
|
color: var(--text-secondary);
|
||||||
box-shadow: 0 6px 16px rgba(201, 165, 90, 0.4);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.btn-secondary {
|
.footer-links h4 {
|
||||||
background: rgba(255, 255, 255, 0.05);
|
font-size: 16px;
|
||||||
border: 1px solid var(--border-light);
|
font-weight: 600;
|
||||||
color: var(--text-primary);
|
margin-bottom: 16px;
|
||||||
padding: 16px 32px;
|
}
|
||||||
border-radius: 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 16px;
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
transition: all 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-secondary:hover {
|
.footer-links ul {
|
||||||
background: rgba(255, 255, 255, 0.1);
|
list-style: none;
|
||||||
border-color: var(--border-light);
|
display: flex;
|
||||||
}
|
flex-direction: column;
|
||||||
|
gap: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
.play-icon {
|
.footer-links a {
|
||||||
width: 20px;
|
color: var(--text-secondary);
|
||||||
height: 20px;
|
text-decoration: none;
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
transition: color 0.3s;
|
||||||
border-radius: 50%;
|
}
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 10px;
|
|
||||||
padding-left: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-note {
|
.footer-links a:hover {
|
||||||
color: var(--text-muted);
|
color: var(--text-primary);
|
||||||
font-size: 14px;
|
}
|
||||||
animation: fadeInUp 1.4s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Product Preview */
|
.footer-bottom {
|
||||||
.product-preview {
|
text-align: center;
|
||||||
max-width: 1200px;
|
padding-top: 30px;
|
||||||
margin: 80px auto 0;
|
border-top: 1px solid var(--border-lighter);
|
||||||
}
|
color: var(--text-muted);
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
@ -1,257 +1,112 @@
|
|||||||
* {
|
/* Feature Page Specific Styles */
|
||||||
margin: 0;
|
.page-header {
|
||||||
padding: 0;
|
padding: 160px 60px 80px;
|
||||||
box-sizing: border-box;
|
text-align: center;
|
||||||
}
|
border-bottom: 1px solid var(--border-lighter);
|
||||||
|
}
|
||||||
|
|
||||||
:root {
|
.header-content .subtitle {
|
||||||
--gold-light: #f0d68c;
|
font-size: 20px;
|
||||||
--gold-dark: #c9a55a;
|
color: var(--text-secondary);
|
||||||
--bg-dark: #0a0a0a;
|
max-width: 700px;
|
||||||
--bg-card: #141414;
|
margin: 0 auto;
|
||||||
--text-primary: #ffffff;
|
}
|
||||||
--text-secondary: #a0a0a0;
|
|
||||||
--text-muted: #606060;
|
|
||||||
--border-light: rgba(255, 255, 255, 0.1);
|
|
||||||
--border-lighter: rgba(255, 255, 255, 0.05);
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
.features-grid {
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
display: grid;
|
||||||
background: var(--bg-dark);
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
color: var(--text-primary);
|
gap: 30px;
|
||||||
overflow-x: hidden;
|
padding: 80px 60px;
|
||||||
line-height: 1.6;
|
max-width: 1200px;
|
||||||
}
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
/* Navigation */
|
.feature-card {
|
||||||
nav {
|
background: var(--bg-card);
|
||||||
display: flex;
|
border: 1px solid var(--border-lighter);
|
||||||
justify-content: space-between;
|
border-radius: 12px;
|
||||||
align-items: center;
|
padding: 40px;
|
||||||
padding: 20px 60px;
|
text-align: center;
|
||||||
background: rgba(10, 10, 10, 0.95);
|
transition: all 0.3s ease;
|
||||||
backdrop-filter: blur(10px);
|
}
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
z-index: 1000;
|
|
||||||
border-bottom: 1px solid var(--border-light);
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav.scrolled {
|
.feature-card:hover {
|
||||||
padding: 15px 60px;
|
transform: translateY(-5px);
|
||||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
|
border-color: var(--border-light);
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.feature-icon {
|
||||||
display: flex;
|
width: 60px;
|
||||||
align-items: center;
|
height: 60px;
|
||||||
gap: 12px;
|
border-radius: 50%;
|
||||||
font-size: 22px;
|
display: flex;
|
||||||
font-weight: 600;
|
align-items: center;
|
||||||
color: var(--text-primary);
|
justify-content: center;
|
||||||
text-decoration: none;
|
font-size: 24px;
|
||||||
}
|
margin: 0 auto 24px;
|
||||||
|
}
|
||||||
|
|
||||||
.logo-icon {
|
.feature-card h3 {
|
||||||
width: 32px;
|
font-size: 22px;
|
||||||
height: 32px;
|
margin-bottom: 12px;
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
}
|
||||||
border-radius: 8px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links {
|
.feature-card p {
|
||||||
display: flex;
|
color: var(--text-secondary);
|
||||||
gap: 40px;
|
line-height: 1.7;
|
||||||
list-style: none;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links a {
|
/* Footer */
|
||||||
color: var(--text-secondary);
|
.footer {
|
||||||
text-decoration: none;
|
background: var(--bg-card);
|
||||||
font-size: 15px;
|
padding: 60px 60px 30px;
|
||||||
font-weight: 500;
|
border-top: 1px solid var(--border-lighter);
|
||||||
transition: color 0.3s;
|
}
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links a::after {
|
.footer-container {
|
||||||
content: '';
|
display: grid;
|
||||||
position: absolute;
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||||
bottom: -4px;
|
gap: 40px;
|
||||||
left: 0;
|
max-width: 1200px;
|
||||||
width: 0;
|
margin: 0 auto 40px;
|
||||||
height: 2px;
|
}
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
|
||||||
transition: width 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links a:hover {
|
.footer-about h3 {
|
||||||
color: var(--text-primary);
|
font-size: 20px;
|
||||||
}
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
.nav-links a:hover::after {
|
.footer-about p {
|
||||||
width: 100%;
|
color: var(--text-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-cta {
|
.footer-links h4 {
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
font-size: 16px;
|
||||||
color: var(--bg-dark);
|
font-weight: 600;
|
||||||
padding: 10px 24px;
|
margin-bottom: 16px;
|
||||||
border-radius: 8px;
|
}
|
||||||
text-decoration: none;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 15px;
|
|
||||||
transition: all 0.3s;
|
|
||||||
box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-cta:hover {
|
.footer-links ul {
|
||||||
transform: translateY(-2px);
|
list-style: none;
|
||||||
box-shadow: 0 6px 16px rgba(201, 165, 90, 0.4);
|
display: flex;
|
||||||
}
|
flex-direction: column;
|
||||||
|
gap: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Mobile Menu Toggle */
|
.footer-links a {
|
||||||
.mobile-menu-toggle {
|
color: var(--text-secondary);
|
||||||
display: none;
|
text-decoration: none;
|
||||||
flex-direction: column;
|
transition: color 0.3s;
|
||||||
gap: 5px;
|
}
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mobile-menu-toggle span {
|
.footer-links a:hover {
|
||||||
width: 25px;
|
color: var(--text-primary);
|
||||||
height: 2px;
|
}
|
||||||
background: var(--text-primary);
|
|
||||||
transition: all 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Hero Section */
|
.footer-bottom {
|
||||||
.hero {
|
text-align: center;
|
||||||
padding: 180px 60px 100px;
|
padding-top: 30px;
|
||||||
text-align: center;
|
border-top: 1px solid var(--border-lighter);
|
||||||
position: relative;
|
color: var(--text-muted);
|
||||||
}
|
font-size: 14px;
|
||||||
|
}
|
||||||
.hero-badge {
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
background: rgba(255, 255, 255, 0.05);
|
|
||||||
border: 1px solid var(--border-light);
|
|
||||||
padding: 8px 16px;
|
|
||||||
border-radius: 20px;
|
|
||||||
font-size: 14px;
|
|
||||||
color: var(--text-secondary);
|
|
||||||
margin-bottom: 30px;
|
|
||||||
animation: fadeInDown 0.6s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-badge-icon {
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 72px;
|
|
||||||
line-height: 1.1;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
|
|
||||||
-webkit-background-clip: text;
|
|
||||||
-webkit-text-fill-color: transparent;
|
|
||||||
background-clip: text;
|
|
||||||
animation: fadeInUp 0.8s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-description {
|
|
||||||
font-size: 20px;
|
|
||||||
color: #808080;
|
|
||||||
max-width: 700px;
|
|
||||||
margin: 0 auto 40px;
|
|
||||||
line-height: 1.6;
|
|
||||||
animation: fadeInUp 1s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-ctas {
|
|
||||||
display: flex;
|
|
||||||
gap: 20px;
|
|
||||||
justify-content: center;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
animation: fadeInUp 1.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary {
|
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
|
||||||
color: var(--bg-dark);
|
|
||||||
padding: 16px 32px;
|
|
||||||
border-radius: 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 16px;
|
|
||||||
transition: all 0.3s;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary:hover {
|
|
||||||
transform: translateY(-2px);
|
|
||||||
box-shadow: 0 6px 16px rgba(201, 165, 90, 0.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-secondary {
|
|
||||||
background: rgba(255, 255, 255, 0.05);
|
|
||||||
border: 1px solid var(--border-light);
|
|
||||||
color: var(--text-primary);
|
|
||||||
padding: 16px 32px;
|
|
||||||
border-radius: 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 16px;
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
transition: all 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-secondary:hover {
|
|
||||||
background: rgba(255, 255, 255, 0.1);
|
|
||||||
border-color: var(--border-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.play-icon {
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 10px;
|
|
||||||
padding-left: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-note {
|
|
||||||
color: var(--text-muted);
|
|
||||||
font-size: 14px;
|
|
||||||
animation: fadeInUp 1.4s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Product Preview */
|
|
||||||
.product-preview {
|
|
||||||
max-width: 1200px;
|
|
||||||
margin: 80px auto 0;
|
|
||||||
}
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user