initial commit
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
/*--------------------------------------------------------------
|
||||
# Global Sections
|
||||
--------------------------------------------------------------*/
|
||||
section,
|
||||
.section {
|
||||
color: var(--default-color);
|
||||
background-color: var(--background-color);
|
||||
padding: 60px 0;
|
||||
scroll-margin-top: 133px;
|
||||
overflow: clip;
|
||||
}
|
||||
|
||||
@media (max-width: 1199px) {
|
||||
|
||||
section,
|
||||
.section {
|
||||
scroll-margin-top: 73px;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Global Section Titles
|
||||
--------------------------------------------------------------*/
|
||||
.section-title {
|
||||
text-align: center;
|
||||
padding-bottom: 60px;
|
||||
position: relative;
|
||||
|
||||
h2 {
|
||||
font-size: 3.5rem;
|
||||
font-weight: 300;
|
||||
line-height: 1.2;
|
||||
color: var(--heading-color);
|
||||
margin-bottom: 1.5rem;
|
||||
letter-spacing: -1px;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
display: inline-block;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 400;
|
||||
color: var(--accent-color);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 1.5rem;
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -8px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 40px;
|
||||
height: 1px;
|
||||
background: var(--accent-color);
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.125rem;
|
||||
line-height: 1.8;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 25%);
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
text-wrap: balance;
|
||||
}
|
||||
}
|
||||
|
||||
@import './sections/_hero.scss';
|
||||
@import './sections/_events.scss';
|
||||
@import './sections/_contact.scss';
|
||||
@import './sections/_about-2.scss';
|
||||
@import './sections/_faq.scss';
|
||||
@import './sections/_about-me.scss';
|
||||
@import './sections/_team.scss';
|
||||
@import './sections/_about-3.scss';
|
||||
@import './sections/_ministries.scss';
|
||||
@import './sections/_events-3.scss';
|
||||
@import './sections/_starter-section.scss';
|
||||
@import './sections/_book-excerpt.scss';
|
||||
@@ -0,0 +1,64 @@
|
||||
// main: main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Font & Color Variables
|
||||
# Help: https://bootstrapmade.com/color-system/
|
||||
--------------------------------------------------------------*/
|
||||
|
||||
/* Fonts */
|
||||
:root {
|
||||
--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
--heading-font: "Lato", sans-serif;
|
||||
--nav-font: "Montserrat", sans-serif;
|
||||
}
|
||||
|
||||
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
|
||||
:root {
|
||||
--background-color: #f3f6f4; /* Background color for the entire website, including individual sections */
|
||||
--default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
|
||||
--heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
|
||||
--accent-color: #cc0000; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
|
||||
--surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
|
||||
--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
|
||||
}
|
||||
|
||||
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
|
||||
:root {
|
||||
--nav-color: #ffffff; /* The default color of the main navmenu links */
|
||||
--nav-hover-color: #990000; /* Applied to main navmenu links when they are hovered over or active */
|
||||
--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
|
||||
--nav-dropdown-background-color: #5b5b5b; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
|
||||
--nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
|
||||
--nav-dropdown-hover-color: #ffffff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
|
||||
}
|
||||
|
||||
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
|
||||
|
||||
.light-background {
|
||||
--background-color: #ffffff;
|
||||
--default-color: #000000;
|
||||
--heading-color: #444444;
|
||||
--surface-color: #ffffff;
|
||||
}
|
||||
|
||||
.dark-background {
|
||||
--background-color: #000000;
|
||||
--default-color: #ffffff;
|
||||
--heading-color: #ffffff;
|
||||
--accent-color: #cc0000;
|
||||
--surface-color: #252626;
|
||||
--contrast-color: #ffffff;
|
||||
}
|
||||
|
||||
.header-preset {
|
||||
--background-color: #f3f6f4;
|
||||
--default-color: #ffffff;
|
||||
--heading-color: #000000;
|
||||
--accent-color: #cc0000;
|
||||
--surface-color: #ffffff;
|
||||
--contrast-color: #ffffff;
|
||||
}
|
||||
|
||||
/* Smooth scroll */
|
||||
:root {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Disable aos animation delay on mobile devices
|
||||
--------------------------------------------------------------*/
|
||||
@media screen and (max-width: 768px) {
|
||||
[data-aos-delay] {
|
||||
transition-delay: 0 !important;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,144 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Global Footer
|
||||
--------------------------------------------------------------*/
|
||||
.footer {
|
||||
--background-color: #110a06;
|
||||
--default-color: #ffffff;
|
||||
--heading-color: #ffffff;
|
||||
--accent-color: #cc0000;
|
||||
--surface-color: #121212;
|
||||
--contrast-color: #000000;
|
||||
color: var(--default-color);
|
||||
background-color: var(--background-color);
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
|
||||
.footer-top {
|
||||
background-color: color-mix(in srgb, var(--background-color), white 5%);
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.footer-about {
|
||||
.logo {
|
||||
line-height: 1;
|
||||
margin-bottom: 25px;
|
||||
|
||||
img {
|
||||
max-height: 40px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
span {
|
||||
color: var(--heading-color);
|
||||
font-family: var(--heading-font);
|
||||
font-size: 26px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 14px;
|
||||
font-family: var(--heading-font);
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
position: relative;
|
||||
padding-bottom: 12px;
|
||||
margin-bottom: 15px;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 2px;
|
||||
background: var(--accent-color);
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
margin-bottom: 30px;
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
i {
|
||||
padding-right: 2px;
|
||||
font-size: 12px;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
li {
|
||||
padding: 10px 0;
|
||||
|
||||
&:first-child {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
a {
|
||||
color: color-mix(in srgb, var(--default-color), transparent 30%);
|
||||
display: inline-block;
|
||||
line-height: 1;
|
||||
|
||||
&:hover {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer-contact {
|
||||
p {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.copyright {
|
||||
padding: 30px 0;
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.credits {
|
||||
margin-top: 5px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.social-links {
|
||||
a {
|
||||
font-size: 18px;
|
||||
display: inline-block;
|
||||
background: color-mix(in srgb, var(--default-color), transparent 92%);
|
||||
color: var(--accent-color);
|
||||
line-height: 1;
|
||||
padding: 8px 0;
|
||||
margin-right: 4px;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
transition: 0.3s;
|
||||
|
||||
&:hover {
|
||||
color: var(--contrast-color);
|
||||
background: var(--accent-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# General Styling & Shared Classes
|
||||
--------------------------------------------------------------*/
|
||||
body {
|
||||
color: var(--default-color);
|
||||
background-color: var(--background-color);
|
||||
font-family: var(--default-font);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--accent-color);
|
||||
text-decoration: none;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: color-mix(in srgb, var(--accent-color), transparent 25%);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: var(--heading-color);
|
||||
font-family: var(--heading-font);
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Global Header
|
||||
--------------------------------------------------------------*/
|
||||
.header {
|
||||
--background-color: rgba(255, 255, 255, 0);
|
||||
--default-color: #ffffff;
|
||||
--heading-color: #ffffff;
|
||||
color: var(--default-color);
|
||||
background-color: transparent;
|
||||
padding: 28px 0;
|
||||
transition: all 0.5s ease;
|
||||
z-index: 997;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
||||
.container-xl {
|
||||
flex-direction: column;
|
||||
gap: 18px;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
.logo {
|
||||
line-height: 1;
|
||||
transition: all 0.5s ease;
|
||||
|
||||
img {
|
||||
max-height: 110px;
|
||||
width: auto;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
}
|
||||
|
||||
.scrolled & {
|
||||
background-color: rgba(0, 0, 0, 0.88);
|
||||
padding: 10px 0;
|
||||
box-shadow: 0px 0 18px rgba(0, 0, 0, 0.15);
|
||||
|
||||
.container-xl {
|
||||
flex-direction: row;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.logo {
|
||||
opacity: 0.75;
|
||||
|
||||
img {
|
||||
max-height: 42px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Global Header on Scroll
|
||||
------------------------------*/
|
||||
.scrolled .header {
|
||||
--background-color: #1a1715;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,55 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Global Page Titles & Breadcrumbs
|
||||
--------------------------------------------------------------*/
|
||||
.page-title {
|
||||
color: var(--default-color);
|
||||
background-color: var(--background-color);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
padding: 200px 0 80px 0;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: '';
|
||||
background-color: color-mix(in srgb, var(--background-color), transparent 20%);
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 42px;
|
||||
font-weight: 300;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.breadcrumbs {
|
||||
ol {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
list-style: none;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
|
||||
li+li {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
li+li::before {
|
||||
content: "/";
|
||||
display: inline-block;
|
||||
padding-right: 10px;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 50%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Preloader
|
||||
--------------------------------------------------------------*/
|
||||
#preloader {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 999999;
|
||||
overflow: hidden;
|
||||
background: var(--background-color);
|
||||
transition: all 0.6s ease-out;
|
||||
|
||||
&:before {
|
||||
content: "";
|
||||
position: fixed;
|
||||
top: calc(50% - 30px);
|
||||
left: calc(50% - 30px);
|
||||
border: 6px solid #ffffff;
|
||||
border-color: var(--accent-color) transparent var(--accent-color) transparent;
|
||||
border-radius: 50%;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
animation: animate-preloader 1.5s linear infinite;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animate-preloader {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Scroll Top Button
|
||||
--------------------------------------------------------------*/
|
||||
.scroll-top {
|
||||
position: fixed;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
right: 15px;
|
||||
bottom: 15px;
|
||||
z-index: 99999;
|
||||
background-color: var(--accent-color);
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 4px;
|
||||
transition: all 0.4s;
|
||||
|
||||
i {
|
||||
font-size: 24px;
|
||||
color: var(--contrast-color);
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
|
||||
color: var(--contrast-color);
|
||||
}
|
||||
|
||||
&.active {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
// out: ../css/main.css
|
||||
// You can use the "Easy Compile" VS Code extension to easily compile the scss files https://marketplace.visualstudio.com/items?itemName=refgd.easy-compile
|
||||
|
||||
@import './_variables.scss';
|
||||
|
||||
@import './layouts/_general.scss';
|
||||
@import './layouts/_header.scss';
|
||||
@import './layouts/_navmenu.scss';
|
||||
@import './layouts/_footer.scss';
|
||||
@import './layouts/_preloader.scss';
|
||||
@import './layouts/_scrolltop.scss';
|
||||
@import './layouts/_aos.scss';
|
||||
@import './layouts/_page-titles.scss';
|
||||
@import './_sections.scss';
|
||||
@@ -0,0 +1,481 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# About 2 Section
|
||||
--------------------------------------------------------------*/
|
||||
.about-2 {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
|
||||
.intro-block {
|
||||
.label-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 2px 10px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
border-radius: 12px;
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 90%);
|
||||
color: var(--accent-color);
|
||||
border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
|
||||
margin-bottom: 16px;
|
||||
|
||||
i {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
line-height: 1.2;
|
||||
letter-spacing: -0.01em;
|
||||
color: var(--heading-color);
|
||||
margin-bottom: 16px;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
.desc-primary {
|
||||
font-size: 16px;
|
||||
line-height: 1.7;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 15%);
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.desc-secondary {
|
||||
font-size: 14px;
|
||||
line-height: 1.7;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 35%);
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.action-group {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.btn-primary-action {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 10px 24px;
|
||||
background: var(--accent-color);
|
||||
color: #fff;
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
background: color-mix(in srgb, var(--heading-color), transparent 10%);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-secondary-action {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 10px 24px;
|
||||
background: transparent;
|
||||
color: var(--heading-color);
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
background: var(--surface-color);
|
||||
border-color: color-mix(in srgb, var(--default-color), transparent 50%);
|
||||
color: var(--heading-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.image-card {
|
||||
position: relative;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
|
||||
box-shadow: 0 4px 6px color-mix(in srgb, var(--default-color), transparent 93%);
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 420px;
|
||||
object-fit: cover;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
height: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
.years-tag {
|
||||
position: absolute;
|
||||
bottom: 16px;
|
||||
left: 16px;
|
||||
background: var(--surface-color);
|
||||
padding: 12px 16px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
.tag-number {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
color: var(--accent-color);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.tag-label {
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 30%);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
line-height: 1.2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.stats-strip {
|
||||
background: var(--surface-color);
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
|
||||
border-radius: 8px;
|
||||
padding: 32px;
|
||||
margin: 48px 0;
|
||||
box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
|
||||
|
||||
.stat-block {
|
||||
text-align: center;
|
||||
padding: 8px 16px;
|
||||
position: relative;
|
||||
|
||||
.stat-value {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
color: var(--heading-color);
|
||||
line-height: 1;
|
||||
margin-bottom: 4px;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 40%);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.col-lg-3:not(:last-child) .stat-block {
|
||||
border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.quote-card {
|
||||
background: var(--surface-color);
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
|
||||
border-radius: 8px;
|
||||
padding: 24px 32px;
|
||||
margin-bottom: 64px;
|
||||
box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
|
||||
|
||||
.quote-avatar {
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
flex-shrink: 0;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
blockquote {
|
||||
font-size: 15px;
|
||||
font-style: italic;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 20%);
|
||||
line-height: 1.6;
|
||||
margin: 0 0 8px 0;
|
||||
}
|
||||
|
||||
.quote-author {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
strong {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 13px;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 40%);
|
||||
|
||||
&::before {
|
||||
content: "\2022";
|
||||
margin-right: 8px;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 70%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.milestones-section {
|
||||
margin-bottom: 64px;
|
||||
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
color: var(--heading-color);
|
||||
letter-spacing: -0.01em;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.milestones-desc {
|
||||
font-size: 14px;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 35%);
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.milestone-list {
|
||||
position: relative;
|
||||
padding-left: 32px;
|
||||
border-left: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding-left: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.milestone-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 16px;
|
||||
padding-bottom: 32px;
|
||||
position: relative;
|
||||
|
||||
&:last-child {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.milestone-marker {
|
||||
position: absolute;
|
||||
left: -44px;
|
||||
top: 0;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: 50%;
|
||||
background: var(--accent-color);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
left: -36px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: var(--contrast-color);
|
||||
}
|
||||
}
|
||||
|
||||
.milestone-body {
|
||||
background: var(--surface-color);
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
|
||||
border-radius: 8px;
|
||||
padding: 20px 24px;
|
||||
flex: 1;
|
||||
box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
border-color: color-mix(in srgb, var(--default-color), transparent 80%);
|
||||
box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: var(--heading-color);
|
||||
margin-bottom: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
&::before {
|
||||
content: attr(data-year);
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 14px;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 35%);
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.milestone-item:nth-child(1) .milestone-body h4::after {
|
||||
content: "2012";
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: var(--accent-color);
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 90%);
|
||||
padding: 1px 8px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.milestone-item:nth-child(2) .milestone-body h4::after {
|
||||
content: "2016";
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: var(--accent-color);
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 90%);
|
||||
padding: 1px 8px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.milestone-item:nth-child(3) .milestone-body h4::after {
|
||||
content: "2021";
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: var(--accent-color);
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 90%);
|
||||
padding: 1px 8px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.milestone-item:nth-child(4) .milestone-body h4::after {
|
||||
content: "2025";
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: var(--accent-color);
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 90%);
|
||||
padding: 1px 8px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.leadership-section {
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
color: var(--heading-color);
|
||||
letter-spacing: -0.01em;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.leadership-desc {
|
||||
font-size: 14px;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 35%);
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.leader-card {
|
||||
background: var(--surface-color);
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
|
||||
border-radius: 8px;
|
||||
padding: 24px;
|
||||
text-align: center;
|
||||
box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
|
||||
transition: all 0.2s ease;
|
||||
height: 100%;
|
||||
|
||||
&:hover {
|
||||
border-color: color-mix(in srgb, var(--default-color), transparent 80%);
|
||||
box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
|
||||
}
|
||||
|
||||
.leader-avatar {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
margin: 0 auto 16px;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
.leader-details {
|
||||
h5 {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: var(--heading-color);
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.leader-role {
|
||||
font-size: 13px;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 40%);
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-view-team {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 10px 24px;
|
||||
background: transparent;
|
||||
color: var(--heading-color);
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
transition: all 0.2s ease;
|
||||
|
||||
i {
|
||||
font-size: 14px;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: var(--surface-color);
|
||||
border-color: color-mix(in srgb, var(--default-color), transparent 50%);
|
||||
color: var(--heading-color);
|
||||
|
||||
i {
|
||||
transform: translateX(3px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,272 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# About 3 Section
|
||||
--------------------------------------------------------------*/
|
||||
.about-3 {
|
||||
.content-wrapper {
|
||||
position: relative;
|
||||
|
||||
.section-badge {
|
||||
display: inline-block;
|
||||
padding: 8px 16px;
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 92%);
|
||||
color: var(--accent-color);
|
||||
border-radius: 30px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
margin-bottom: 20px;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 85%);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 20px;
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 16px;
|
||||
line-height: 1.6;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 20%);
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.skills-wrapper {
|
||||
.skill-item {
|
||||
margin-bottom: 25px;
|
||||
|
||||
.skill-info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 8px;
|
||||
|
||||
.skill-name {
|
||||
color: var(--heading-color);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.skill-percentage {
|
||||
color: var(--accent-color);
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
.progress-bar-wrapper {
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 92%);
|
||||
height: 8px;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
.progress-bar {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
background: var(--accent-color);
|
||||
border-radius: 4px;
|
||||
transition: width 1.5s ease-in-out;
|
||||
|
||||
&[data-width="92"] {
|
||||
width: 92%;
|
||||
}
|
||||
|
||||
&[data-width="88"] {
|
||||
width: 88%;
|
||||
}
|
||||
|
||||
&[data-width="95"] {
|
||||
width: 95%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-wrapper {
|
||||
position: relative;
|
||||
padding-top: 60px;
|
||||
padding-left: 30px;
|
||||
margin: 40px 0;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 2px;
|
||||
background: linear-gradient(to bottom,
|
||||
transparent,
|
||||
var(--accent-color) 10%,
|
||||
var(--accent-color) 90%,
|
||||
transparent);
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
padding-bottom: 30px;
|
||||
padding-left: 30px;
|
||||
|
||||
&:hover {
|
||||
.timeline-marker {
|
||||
background: var(--accent-color);
|
||||
transform: scale(1.1);
|
||||
|
||||
i {
|
||||
color: var(--contrast-color);
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-content {
|
||||
transform: translateX(5px);
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-marker {
|
||||
position: absolute;
|
||||
left: -18px;
|
||||
top: 0;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 90%);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
i {
|
||||
color: var(--accent-color);
|
||||
font-size: 16px;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-content {
|
||||
transition: transform 0.3s ease;
|
||||
|
||||
h4 {
|
||||
color: var(--heading-color);
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: color-mix(in srgb, var(--default-color), transparent 20%);
|
||||
font-size: 15px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.value-card {
|
||||
background: var(--surface-color);
|
||||
padding: 30px;
|
||||
border-radius: 15px;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(45deg,
|
||||
transparent,
|
||||
color-mix(in srgb, var(--accent-color), transparent 97%),
|
||||
transparent);
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
|
||||
|
||||
&::before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.icon-wrapper {
|
||||
background: var(--accent-color);
|
||||
|
||||
i {
|
||||
color: var(--contrast-color);
|
||||
transform: rotateY(360deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.icon-wrapper {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 90%);
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 20px;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
i {
|
||||
font-size: 28px;
|
||||
color: var(--accent-color);
|
||||
transition: all 0.6s ease;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
color: var(--heading-color);
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 15px;
|
||||
line-height: 1.6;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 20%);
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px) {
|
||||
.content-wrapper {
|
||||
margin-bottom: 40px;
|
||||
|
||||
h3 {
|
||||
font-size: 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.content-wrapper h3 {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.timeline-wrapper {
|
||||
padding-left: 40px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.value-card {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# About Me Section
|
||||
--------------------------------------------------------------*/
|
||||
.about-me {
|
||||
padding-top: 556px;
|
||||
padding-bottom: 60px;
|
||||
|
||||
.about-image {
|
||||
position: relative;
|
||||
|
||||
img {
|
||||
box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.about-content {
|
||||
padding-left: 2rem;
|
||||
|
||||
@media (max-width: 991.98px) {
|
||||
padding-left: 0;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 2px;
|
||||
color: var(--accent-color);
|
||||
margin-bottom: 1rem;
|
||||
display: block;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.lead {
|
||||
font-size: 1.1rem;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 25%);
|
||||
}
|
||||
}
|
||||
|
||||
.personal-info {
|
||||
margin-top: 2rem;
|
||||
padding: 2rem;
|
||||
background-color: var(--surface-color);
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
|
||||
|
||||
.info-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
|
||||
.label {
|
||||
font-size: 0.875rem;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 40%);
|
||||
}
|
||||
|
||||
.value {
|
||||
font-weight: 600;
|
||||
color: var(--heading-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.signature {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1.5rem;
|
||||
|
||||
.signature-image {
|
||||
max-width: 150px;
|
||||
}
|
||||
|
||||
.signature-info {
|
||||
h4 {
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.875rem;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 40%);
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,177 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Book Excerpt Section
|
||||
--------------------------------------------------------------*/
|
||||
.book-excerpt {
|
||||
padding: 80px 0;
|
||||
background-color: var(--background-color);
|
||||
overflow: hidden;
|
||||
|
||||
.book-excerpt-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.book-page-design {
|
||||
background-color: var(--surface-color);
|
||||
padding: 50px 40px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 40px 25px;
|
||||
}
|
||||
|
||||
&:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
background: linear-gradient(90deg,
|
||||
var(--accent-color) 0%,
|
||||
color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
|
||||
}
|
||||
|
||||
.page-number {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 30px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 40%);
|
||||
font-family: var(--heading-font);
|
||||
}
|
||||
|
||||
.chapter-title {
|
||||
text-align: center;
|
||||
font-family: var(--heading-font);
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
color: var(--heading-color);
|
||||
margin-bottom: 30px;
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -10px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 60px;
|
||||
height: 2px;
|
||||
background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
|
||||
}
|
||||
}
|
||||
|
||||
.excerpt-content {
|
||||
font-family: 'Georgia', serif;
|
||||
line-height: 1.8;
|
||||
color: var(--default-color);
|
||||
|
||||
p {
|
||||
margin-bottom: 20px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.first-letter {
|
||||
&:first-letter {
|
||||
font-size: 3.5em;
|
||||
float: left;
|
||||
line-height: 0.8;
|
||||
margin-right: 10px;
|
||||
color: var(--accent-color);
|
||||
font-family: var(--heading-font);
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
.dialogue {
|
||||
padding-left: 20px;
|
||||
border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
|
||||
.page-decoration {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
&:after {
|
||||
content: '✦';
|
||||
font-size: 18px;
|
||||
color: color-mix(in srgb, var(--accent-color), transparent 30%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cta-wrapper {
|
||||
margin-top: 30px;
|
||||
|
||||
.btn-read-more {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
background-color: var(--surface-color);
|
||||
color: var(--accent-color);
|
||||
padding: 12px 28px;
|
||||
border-radius: 50px;
|
||||
font-weight: 500;
|
||||
transition: all 0.3s ease;
|
||||
border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||
|
||||
i {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: var(--accent-color);
|
||||
color: var(--contrast-color);
|
||||
transform: translateY(-3px);
|
||||
|
||||
i {
|
||||
transform: translateX(5px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.section-header {
|
||||
h2 {
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 60px 0;
|
||||
|
||||
.section-header {
|
||||
h2 {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.book-page-design {
|
||||
.chapter-title {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.excerpt-content {
|
||||
.first-letter {
|
||||
&:first-letter {
|
||||
font-size: 3em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Contact Section
|
||||
--------------------------------------------------------------*/
|
||||
.contact {
|
||||
background: var(--surface-color);
|
||||
color: #fff;
|
||||
padding: 80px 0;
|
||||
|
||||
.contact-logo-wrap {
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
|
||||
.contact-logo {
|
||||
max-width: 620px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.contact-address {
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
margin: 0;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.service-times {
|
||||
color: #fff;
|
||||
|
||||
h6 {
|
||||
font-size: 30px;
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 17px;
|
||||
color: rgba(255, 255, 255, .85);
|
||||
margin: 0 0 28px;
|
||||
line-height: 1.7;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
padding: 60px 0;
|
||||
|
||||
.contact-address {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.service-times h6 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.service-times p {
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,509 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Events 3 Section
|
||||
--------------------------------------------------------------*/
|
||||
.events-3 {
|
||||
.event-intro {
|
||||
padding: 2rem 0;
|
||||
|
||||
.event-tag {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
background-color: var(--accent-color);
|
||||
color: var(--contrast-color);
|
||||
padding: 0.45rem 1.2rem;
|
||||
border-radius: 6px;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.8px;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 3.2rem;
|
||||
font-weight: 800;
|
||||
margin-bottom: 1.2rem;
|
||||
line-height: 1.15;
|
||||
position: relative;
|
||||
padding-left: 1.5rem;
|
||||
border-left: 5px solid var(--accent-color);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.1rem;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 30%);
|
||||
margin-bottom: 2rem;
|
||||
line-height: 1.7;
|
||||
max-width: 540px;
|
||||
}
|
||||
|
||||
.event-meta {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1.5rem;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.meta-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.6rem;
|
||||
font-weight: 500;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 20%);
|
||||
|
||||
i {
|
||||
font-size: 1.2rem;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.event-cta-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.7rem;
|
||||
background-color: var(--accent-color);
|
||||
color: var(--contrast-color);
|
||||
padding: 0.9rem 2rem;
|
||||
border-radius: 10px;
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
transition: all 0.3s ease;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
background-color: color-mix(in srgb, var(--accent-color), #000 15%);
|
||||
color: var(--contrast-color);
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 1.2rem;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover i {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.event-hero-img {
|
||||
position: relative;
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
min-height: 380px;
|
||||
}
|
||||
|
||||
.floating-label {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
left: 20px;
|
||||
background-color: var(--surface-color);
|
||||
color: var(--accent-color);
|
||||
padding: 0.6rem 1.2rem;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-weight: 600;
|
||||
font-size: 0.9rem;
|
||||
box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 80%);
|
||||
|
||||
i {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.highlight-cards {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
margin-bottom: 4rem;
|
||||
|
||||
.highlight-card {
|
||||
background-color: var(--surface-color);
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 82%);
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
|
||||
.highlight-img {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
min-height: 280px;
|
||||
overflow: hidden;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
transition: transform 0.5s ease;
|
||||
}
|
||||
|
||||
.img-tag {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
left: 15px;
|
||||
background-color: var(--accent-color);
|
||||
color: var(--contrast-color);
|
||||
padding: 0.4rem 1rem;
|
||||
border-radius: 8px;
|
||||
font-size: 0.82rem;
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.4rem;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover .highlight-img img {
|
||||
transform: scale(1.08);
|
||||
}
|
||||
|
||||
.highlight-body {
|
||||
padding: 2.5rem;
|
||||
|
||||
h3 {
|
||||
font-size: 1.6rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.8rem;
|
||||
}
|
||||
|
||||
p {
|
||||
color: color-mix(in srgb, var(--default-color), transparent 25%);
|
||||
line-height: 1.65;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.perks-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0 0 1.5rem 0;
|
||||
|
||||
li {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.7rem;
|
||||
padding: 0.5rem 0;
|
||||
font-weight: 500;
|
||||
|
||||
i {
|
||||
color: var(--accent-color);
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-action {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
color: var(--accent-color);
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
border-bottom: 2px solid transparent;
|
||||
padding-bottom: 2px;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: var(--accent-color);
|
||||
gap: 0.8rem;
|
||||
}
|
||||
|
||||
i {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover i {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.accolades-strip {
|
||||
background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
|
||||
border-radius: 18px;
|
||||
padding: 0;
|
||||
margin-bottom: 4rem;
|
||||
overflow: hidden;
|
||||
|
||||
.accolade-tile {
|
||||
text-align: center;
|
||||
padding: 2.5rem 1.5rem;
|
||||
position: relative;
|
||||
transition: background-color 0.3s ease;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 20%;
|
||||
right: 0;
|
||||
height: 60%;
|
||||
width: 1px;
|
||||
background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
|
||||
}
|
||||
|
||||
.tile-icon {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 1.2rem;
|
||||
|
||||
i {
|
||||
font-size: 1.5rem;
|
||||
color: var(--contrast-color);
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
color: var(--contrast-color);
|
||||
margin-bottom: 0.3rem;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 0.88rem;
|
||||
color: color-mix(in srgb, var(--contrast-color), transparent 30%);
|
||||
}
|
||||
}
|
||||
|
||||
.col-lg-3:last-child .accolade-tile::after,
|
||||
.col-md-6:last-child .accolade-tile::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.values-section {
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.values-panel {
|
||||
background-color: var(--surface-color);
|
||||
border-radius: 20px;
|
||||
padding: 2.5rem;
|
||||
height: 100%;
|
||||
box-shadow: 0 10px 35px color-mix(in srgb, var(--default-color), transparent 92%);
|
||||
border-top: 4px solid var(--accent-color);
|
||||
|
||||
.panel-badge {
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
|
||||
border-radius: 14px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 1.5rem;
|
||||
|
||||
i {
|
||||
font-size: 1.6rem;
|
||||
color: var(--contrast-color);
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.6rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
>p {
|
||||
color: color-mix(in srgb, var(--default-color), transparent 35%);
|
||||
margin-bottom: 2rem;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
}
|
||||
|
||||
.counter-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 1.2rem;
|
||||
|
||||
.counter-box {
|
||||
background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 88%));
|
||||
border-radius: 14px;
|
||||
padding: 1.3rem;
|
||||
text-align: center;
|
||||
transition: transform 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
|
||||
strong {
|
||||
display: block;
|
||||
font-size: 1.7rem;
|
||||
font-weight: 800;
|
||||
color: var(--accent-color);
|
||||
margin-bottom: 0.4rem;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 0.82rem;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 40%);
|
||||
line-height: 1.3;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.green-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
|
||||
.green-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1.2rem;
|
||||
padding: 1.1rem 0;
|
||||
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
|
||||
transition: padding-left 0.3s ease;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
|
||||
.green-icon {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
background: color-mix(in srgb, var(--accent-color), transparent 88%);
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
|
||||
i {
|
||||
font-size: 1.1rem;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
}
|
||||
|
||||
.green-text {
|
||||
strong {
|
||||
display: block;
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0.15rem;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 0.84rem;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 45%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.green-panel {
|
||||
border-top-color: color-mix(in srgb, var(--accent-color), #28a745 30%);
|
||||
|
||||
.panel-badge {
|
||||
background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #28a745 30%), color-mix(in srgb, var(--accent-color), #28a745 50%));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.event-intro {
|
||||
h2 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.event-hero-img {
|
||||
margin-top: 2rem;
|
||||
|
||||
img {
|
||||
min-height: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
.highlight-cards .highlight-card {
|
||||
.highlight-img {
|
||||
min-height: 240px;
|
||||
}
|
||||
}
|
||||
|
||||
.accolades-strip {
|
||||
.col-md-6:nth-child(2) .accolade-tile::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.values-section .counter-grid {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.event-intro {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
padding-left: 1rem;
|
||||
border-left-width: 4px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.event-meta {
|
||||
flex-direction: column;
|
||||
gap: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
.highlight-cards .highlight-card .highlight-body {
|
||||
padding: 1.8rem;
|
||||
}
|
||||
|
||||
.accolades-strip .accolade-tile {
|
||||
padding: 2rem 1rem;
|
||||
|
||||
&::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.values-section {
|
||||
.values-panel {
|
||||
padding: 2rem 1.5rem;
|
||||
}
|
||||
|
||||
.counter-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Events Section
|
||||
--------------------------------------------------------------*/
|
||||
.events {
|
||||
--background-color: #f3f6f4;
|
||||
--default-color: #444444;
|
||||
--accent-color: #cc0000;
|
||||
--surface-color: #ffffff;
|
||||
|
||||
.service-card {
|
||||
position: relative;
|
||||
background-color: var(--surface-color);
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
|
||||
border-radius: 12px;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
transition: all 0.35s ease;
|
||||
height: 100%;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 3px;
|
||||
background-color: var(--accent-color);
|
||||
transition: width 0.35s ease;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
|
||||
box-shadow: 0 10px 40px color-mix(in srgb, var(--accent-color), transparent 88%);
|
||||
transform: translateY(-4px);
|
||||
|
||||
&::before {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.service-link {
|
||||
color: var(--accent-color);
|
||||
letter-spacing: 0.3px;
|
||||
|
||||
i {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.service-card-inner {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.service-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.event-image-wrapper {
|
||||
width: 100%;
|
||||
aspect-ratio: 16 / 9;
|
||||
overflow: hidden;
|
||||
background-color: #000;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.event-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.event-content {
|
||||
padding: 22px 24px 26px;
|
||||
}
|
||||
|
||||
.service-title {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
|
||||
a {
|
||||
color: var(--heading-color);
|
||||
text-decoration: none;
|
||||
transition: color 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.service-desc {
|
||||
font-size: 14px;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 25%);
|
||||
line-height: 1.65;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.event-content {
|
||||
padding: 18px 20px 22px;
|
||||
}
|
||||
|
||||
.service-number {
|
||||
font-size: 34px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Faq Section
|
||||
--------------------------------------------------------------*/
|
||||
.faq {
|
||||
.faq-item {
|
||||
background: var(--surface-color);
|
||||
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
|
||||
border-radius: 8px;
|
||||
padding: 24px 32px;
|
||||
margin-bottom: 16px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
padding-right: 32px;
|
||||
line-height: 1.4;
|
||||
cursor: pointer;
|
||||
transition: 0.3s;
|
||||
|
||||
&:hover {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
}
|
||||
|
||||
.faq-content {
|
||||
display: grid;
|
||||
grid-template-rows: 0fr;
|
||||
transition: 0.3s ease-in-out;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
overflow: hidden;
|
||||
font-size: 16px;
|
||||
line-height: 1.6;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 20%);
|
||||
}
|
||||
}
|
||||
|
||||
.faq-toggle {
|
||||
position: absolute;
|
||||
right: 32px;
|
||||
top: 28px;
|
||||
font-size: 16px;
|
||||
line-height: 0;
|
||||
color: var(--default-color);
|
||||
transition: 0.3s;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.faq-active {
|
||||
border-color: var(--accent-color);
|
||||
|
||||
h3 {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
.faq-content {
|
||||
grid-template-rows: 1fr;
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
padding-top: 16px;
|
||||
}
|
||||
|
||||
.faq-toggle {
|
||||
transform: rotate(90deg);
|
||||
color: var(--accent-color);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
.faq-item {
|
||||
padding: 16px 24px;
|
||||
|
||||
.faq-toggle {
|
||||
right: 24px;
|
||||
top: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Hero Section
|
||||
--------------------------------------------------------------*/
|
||||
.hero {
|
||||
--accent-color: #ffffff;
|
||||
padding-top: 120px;
|
||||
min-height: 100vh;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
padding-bottom: 60px;
|
||||
|
||||
.hero-content {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.image-background {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 1;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.image-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: color-mix(in srgb, var(--background-color), transparent 80%);
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3.5rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1.5rem;
|
||||
line-height: 1.2;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 2.5rem;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 30%);
|
||||
line-height: 1.6;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.plan-visit-btn {
|
||||
position: absolute;
|
||||
left: 40px;
|
||||
bottom: 40px;
|
||||
z-index: 4;
|
||||
padding: 14px 28px;
|
||||
border-radius: 50px;
|
||||
background-color: #cc0000;
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.8px;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background-color: #a30000;
|
||||
color: #fff;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
padding: 80px 0;
|
||||
min-height: 80vh;
|
||||
|
||||
.hero-content {
|
||||
min-height: 80vh;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.plan-visit-btn {
|
||||
left: 20px;
|
||||
bottom: 24px;
|
||||
padding: 12px 22px;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Ministries Section
|
||||
--------------------------------------------------------------*/
|
||||
.ministries {
|
||||
.service-card {
|
||||
display: flex;
|
||||
background: var(--surface-color);
|
||||
border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
||||
transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
|
||||
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06), 0 4px 6px rgba(0, 0, 0, 0.04);
|
||||
|
||||
.card-media img {
|
||||
transform: scale(1.04);
|
||||
}
|
||||
|
||||
.link-action {
|
||||
color: var(--accent-color);
|
||||
|
||||
i {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.card-media {
|
||||
position: relative;
|
||||
flex: 0 0 40%;
|
||||
max-width: 40%;
|
||||
overflow: hidden;
|
||||
background: color-mix(in srgb, var(--default-color) 5%, transparent);
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.badge-label {
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
left: 12px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 4px 10px;
|
||||
font-size: 11px;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
background: var(--surface-color);
|
||||
color: var(--accent-color);
|
||||
border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
|
||||
border-radius: 12px;
|
||||
|
||||
i {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
flex: 0 0 200px;
|
||||
max-width: 100%;
|
||||
height: 200px;
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
flex: 1 1 auto;
|
||||
padding: 24px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
p {
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
color: color-mix(in srgb, var(--default-color) 70%, transparent);
|
||||
margin-bottom: 16px;
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.card-head {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
margin-bottom: 8px;
|
||||
|
||||
h3 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.01em;
|
||||
line-height: 1.3;
|
||||
margin: 0;
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
.meta-tag {
|
||||
flex-shrink: 0;
|
||||
font-size: 11px;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
color: color-mix(in srgb, var(--default-color) 55%, transparent);
|
||||
padding-top: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.card-foot {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-top: 16px;
|
||||
border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
|
||||
}
|
||||
|
||||
.link-action {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: var(--heading-color);
|
||||
text-decoration: none;
|
||||
transition: color 0.2s ease;
|
||||
|
||||
i {
|
||||
font-size: 14px;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
color: var(--accent-color);
|
||||
box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.status-dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: #22c55e;
|
||||
box-shadow: 0 0 0 3px color-mix(in srgb, #22c55e 20%, transparent);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.card-media {
|
||||
flex: 0 0 35%;
|
||||
max-width: 35%;
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.card-head h3 {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Starter Section Section
|
||||
--------------------------------------------------------------*/
|
||||
.starter-section {
|
||||
/* Add your styles here */
|
||||
}
|
||||
@@ -0,0 +1,83 @@
|
||||
// main: ../main.scss
|
||||
/*--------------------------------------------------------------
|
||||
# Team Section
|
||||
--------------------------------------------------------------*/
|
||||
.team {
|
||||
.member {
|
||||
position: relative;
|
||||
|
||||
.member-img {
|
||||
margin: 0 80px;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
margin: 0 60px;
|
||||
}
|
||||
|
||||
img {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.social {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-color: rgba(0, 0, 0, .6);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: 2;
|
||||
padding-bottom: 20px;
|
||||
transition: 0.3s;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
|
||||
a {
|
||||
transition: 0.3s;
|
||||
color: var(--contrast-color);
|
||||
font-size: 20px;
|
||||
margin: 0 8px;
|
||||
|
||||
&:hover {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.member-info {
|
||||
margin-top: 30px;
|
||||
|
||||
h4 {
|
||||
font-weight: 700;
|
||||
margin-bottom: 6px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
span {
|
||||
font-style: italic;
|
||||
display: block;
|
||||
font-size: 15px;
|
||||
color: color-mix(in srgb, var(--default-color), transparent 40%);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.member-img {
|
||||
.social {
|
||||
padding-bottom: 0;
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user