76 lines
1.3 KiB
CSS
76 lines
1.3 KiB
CSS
/* General Body & Typography */
|
|
body {
|
|
font-family: 'Vazirmatn', 'Roboto', sans-serif;
|
|
background-color: #F5F5F5;
|
|
color: #333333;
|
|
direction: ltr; /* Default LTR, will be overridden for RTL */
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: linear-gradient(45deg, #FF4500, #FF6347);
|
|
border: none;
|
|
padding: 0.75rem 1.5rem;
|
|
font-weight: 700;
|
|
border-radius: 0.5rem;
|
|
transition: transform 0.2s ease-in-out;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
/* Navbar */
|
|
.navbar {
|
|
background-color: #FFFFFF;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
color: #1A1A1A !important;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
padding: 6rem 0;
|
|
background-color: #FFFFFF;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
color: #1A1A1A;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
color: #555;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
/* Features Section */
|
|
.features {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 3rem;
|
|
color: #FF4500;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
padding: 2rem 0;
|
|
background-color: #1A1A1A;
|
|
color: #F5F5F5;
|
|
}
|
|
|
|
/* RTL Support */
|
|
[dir="rtl"] {
|
|
font-family: 'Vazirmatn', sans-serif;
|
|
} |