﻿:root {
--color-primary: #2563eb; /* blue-600 */
--color-primary-hover: #1d4ed8; /* blue-700 */
--color-gray-50: #f9fafb;
--color-gray-100: #f3f4f6;
--color-gray-200: #e5e7eb;
--color-gray-300: #d1d5db;
--color-gray-400: #9ca3af;
--color-gray-500: #6b7280;
--color-gray-600: #4b5563;
--color-gray-700: #374151;
--color-gray-800: #1f2937;
--color-gray-900: #111827;
--container-max-width: 1280px;
}
body {
background-color: var(--color-gray-50);
color: var(--color-gray-900);
margin: 0;
font-family: 'Inter', sans-serif;
}
.container {
max-width: var(--container-max-width);
margin-left: auto;
margin-right: auto;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
/* Header */
.site-header {
background-color: #ffffff;
border-bottom: 1px solid var(--color-gray-200);
position: sticky;
top: 0;
z-index: 50;
}
.site-nav {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 1rem;
padding-bottom: 1rem;
}
.site-logo {
font-size: 1.5rem;
font-weight: 800;
color: var(--color-primary);
text-decoration: none;
letter-spacing: -0.025em;
}
.site-logo span {
color: #000000;
}
.nav-links {
display: none;
}
@media (min-width: 768px) {
.nav-links {
display: flex;
align-items: center;
gap: 2rem;
font-weight: 500;
}
}
.nav-link {
display: flex;
align-items: center;
gap: 0.25rem;
padding: 0.5rem 0;
text-decoration: none;
color: var(--color-gray-900);
transition: color 0.2s;
}
.nav-link:hover, .nav-link.is-active {
color: var(--color-primary);
}
.nav-item-wrapper {
position: relative;
}
.nav-item-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-icon {
width: 1rem;
height: 1rem;
fill: currentColor;
transition: transform 0.2s;
}
.nav-item-wrapper:hover > .nav-item-header .nav-icon {
transform: rotate(180deg);
}
.nav-icon--nested {
transform: rotate(-90deg);
}
.nav-item-wrapper:hover > .nav-item-header .nav-icon--nested {
transform: rotate(0deg);
}
.submenu {
position: absolute;
width: 12rem;
background-color: #ffffff;
border: 1px solid var(--color-gray-100);
border-radius: 0.375rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transition: all 0.3s;
z-index: 50;
padding: 0.5rem 0;
}
.submenu--top-level {
left: 0;
top: 100%;
}
.submenu--nested {
left: 100%;
top: 0;
}
.nav-item-wrapper:hover > .submenu {
opacity: 1;
visibility: visible;
}
.submenu-item {
padding: 0 1rem;
}
.btn-primary {
background-color: var(--color-primary);
color: #ffffff;
padding: 0.5rem 1.25rem;
border-radius: 0.375rem;
text-decoration: none;
transition: background-color 0.2s;
font-weight: 500;
border: none;
cursor: pointer;
display: inline-block;
}
.btn-primary:hover {
background-color: var(--color-primary-hover);
}
/* Hero Elements */
.hero-banner {
background-color: var(--color-gray-900);
color: #ffffff;
padding: 80px 20px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
min-height: 400px;
}
.hero-banner__container {
max-width: var(--container-max-width);
margin: 0 auto;
}
.hero-banner__title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 24px;
line-height: 1.2;
}
.hero-banner__subtitle {
font-size: 1.25rem;
font-weight: 400;
color: var(--color-gray-300);
max-width: 800px;
margin: 0 auto;
line-height: 1.5;
}
.hero-section--split {
background-color: var(--color-gray-900);
color: #ffffff;
padding: 5rem 0;
}
.hero-section--split .container {
display: flex;
flex-direction: column;
align-items: center;
}
@media (min-width: 768px) {
.hero-section--split .container {
flex-direction: row;
gap: 3rem;
}
}
.hero-content {
margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
.hero-content {
width: 50%;
margin-bottom: 0;
}
}
.hero-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: #ffffff;
}
.hero-description {
font-size: 1.25rem;
margin-bottom: 2rem;
color: var(--color-gray-300);
}
.hero-actions {
display: flex;
gap: 1rem;
}
.btn-large {
padding: 0.75rem 2rem;
border-radius: 0.5rem;
font-weight: 600;
}
.btn-outline-white {
border: 1px solid #ffffff;
color: #ffffff;
text-decoration: none;
transition: all 0.2s;
display: inline-block;
}
.btn-outline-white:hover {
background-color: #ffffff;
color: var(--color-gray-900);
}
.hero-image {
width: 100%;
}
@media (min-width: 768px) {
.hero-image {
width: 50%;
}
}
.hero-image img {
border-radius: 0.75rem;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
width: 100%;
height: auto;
}
.image-placeholder {
background-color: var(--color-gray-800);
border-radius: 0.75rem;
height: 24rem;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
border: 2px dashed var(--color-gray-700);
color: var(--color-gray-500);
}
/* CTA Section */
.cta-section {
background-color: var(--color-primary);
color: #ffffff;
padding: 5rem 0;
text-align: center;
}
.cta-container {
max-width: 48rem;
}
.cta-title {
font-size: 2.25rem;
font-weight: 700;
margin-bottom: 1.5rem;
}
.cta-description {
font-size: 1.25rem;
margin-bottom: 2.5rem;
color: #dbeafe; /* blue-100 */
}
.cta-actions {
display: flex;
flex-direction: column;
justify-content: center;
gap: 1rem;
}
@media (min-width: 640px) {
.cta-actions {
flex-direction: row;
}
}
.btn-cta-primary {
background-color: #ffffff;
color: var(--color-primary);
padding: 1rem 2.5rem;
border-radius: 9999px;
font-weight: 700;
font-size: 1.125rem;
text-decoration: none;
transition: background-color 0.2s;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
display: inline-block;
}
.btn-cta-primary:hover {
background-color: var(--color-gray-50);
}
.btn-cta-outline {
border: 2px solid #ffffff;
color: #ffffff;
padding: 1rem 2.5rem;
border-radius: 9999px;
font-weight: 700;
font-size: 1.125rem;
text-decoration: none;
transition: all 0.2s;
display: inline-block;
}
.btn-cta-outline:hover {
background-color: #ffffff;
color: var(--color-primary);
}
/* Content Page */
.content-page-section {
padding: 4rem 0;
background-color: #ffffff;
}
.content-page-container {
max-width: 56rem;
}
.content-page-title {
font-size: 2.25rem;
font-weight: 800;
margin-bottom: 2rem;
color: var(--color-gray-900);
}
.content-page-body {
font-size: 1.125rem;
color: var(--color-gray-700);
line-height: 1.75;
}
/* Footer */
.site-footer {
background-color: var(--color-gray-900);
color: #ffffff;
padding-top: 3rem;
padding-bottom: 3rem;
}
.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}
@media (min-width: 768px) {
.footer-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.footer-heading {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1rem;
color: #ffffff;
}
.footer-text {
color: var(--color-gray-400);
}
.footer-subheading {
font-weight: 700;
margin-bottom: 1rem;
text-transform: uppercase;
font-size: 0.875rem;
letter-spacing: 0.1em;
color: var(--color-gray-500);
}
.footer-list {
list-style: none;
padding: 0;
margin: 0;
}
.footer-list li {
margin-bottom: 0.5rem;
}
.footer-list a {
color: var(--color-gray-400);
text-decoration: none;
transition: color 0.2s;
}
.footer-list a:hover {
color: #ffffff;
}
.footer-bottom {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid var(--color-gray-800);
text-align: center;
color: var(--color-gray-500);
font-size: 0.875rem;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero-banner {
padding: 60px 15px;
min-height: 300px;
}
.hero-banner__title {
font-size: 2.2rem;
}
.hero-banner__subtitle {
font-size: 1.1rem;
}
.hero-title {
font-size: 2.2rem;
}
}
/* Content Page */
.content-page-section {
padding: 4rem 0;
background-color: #ffffff;
}
.content-page-container {
max-width: 56rem;
}
.content-page-title {
font-size: 2.25rem;
font-weight: 800;
margin-bottom: 2rem;
color: var(--color-gray-900);
}
.content-page-body {
font-size: 1.125rem;
color: var(--color-gray-700);
line-height: 1.75;
}
/* CTA Section */
.cta-section {
background-color: var(--color-primary);
color: #ffffff;
padding: 5rem 0;
text-align: center;
}
.cta-container {
max-width: 48rem;
}
.cta-title {
font-size: 2.25rem;
font-weight: 700;
margin-bottom: 1.5rem;
}
.cta-description {
font-size: 1.25rem;
margin-bottom: 2.5rem;
color: #dbeafe; /* blue-100 */
}
.cta-actions {
display: flex;
flex-direction: column;
justify-content: center;
gap: 1rem;
}
@media (min-width: 640px) {
.cta-actions {
flex-direction: row;
}
}
.btn-cta-primary {
background-color: #ffffff;
color: var(--color-primary);
padding: 1rem 2.5rem;
border-radius: 9999px;
font-weight: 700;
font-size: 1.125rem;
text-decoration: none;
transition: background-color 0.2s;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
display: inline-block;
}
.btn-cta-primary:hover {
background-color: var(--color-gray-50);
}
.btn-cta-outline {
border: 2px solid #ffffff;
color: #ffffff;
padding: 1rem 2.5rem;
border-radius: 9999px;
font-weight: 700;
font-size: 1.125rem;
text-decoration: none;
transition: all 0.2s;
display: inline-block;
}
.btn-cta-outline:hover {
background-color: #ffffff;
color: var(--color-primary);
}
/* FAQ Section Container */
.faq-section {
background-color: #111827; /* Matches gray-900 */
color: #ffffff;
padding: 80px 20px;
font-family: 'Inter', sans-serif;
}
.faq-container {
max-width: 1000px; /* Marginally tighter layout looks cleaner for FAQs */
margin: 0 auto;
}
/* Header Text formatting */
.faq-header {
margin-bottom: 40px;
text-align: center;
}
.faq-header__title {
font-size: 2.8rem;
font-weight: 700;
margin: 0 0 15px 0;
}
.faq-header__subtitle {
font-size: 1.1rem;
color: #9ca3af; /* Matches gray-400 */
margin: 0;
}
/* Accordion Wrapper */
.faq-accordion-group {
display: flex;
flex-direction: column;
gap: 16px;
}
/* Individual Accordion Item (Native <details>) */
.faq-item {
background-color: #1f2937; /* Matches gray-800 */
border: 1px solid #374151; /* Matches gray-700 */
border-radius: 6px;
overflow: hidden;
transition: background-color 0.3s ease;
}
/* Hide native browser details marker arrow */
.faq-item summary::-webkit-details-marker {
display: none;
}
/* Clickable Title strip (Native <summary>) */
.faq-item__question {
padding: 24px 30px;
font-size: 1.15rem;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
list-style: none; /* Hides default triangle cross-browser */
user-select: none;
}
/* Custom CSS plus (+) sign toggle mechanism */
.faq-item__icon {
position: relative;
width: 16px;
height: 16px;
display: block;
}
.faq-item__icon::before,
.faq-item__icon::after {
content: '';
position: absolute;
background-color: #ffffff;
transition: transform 0.25s ease-out;
}
/* Horizontal line of plus */
.faq-item__icon::before {
top: 7px;
left: 0;
width: 16px;
height: 2px;
}
/* Vertical line of plus */
.faq-item__icon::after {
top: 0;
left: 7px;
width: 2px;
height: 16px;
}
/* When accordion opens: animate plus into minus */
.faq-item[open] .faq-item__icon::after {
transform: rotate(90deg);
opacity: 0;
}
.faq-item[open] .faq-item__icon::before {
transform: rotate(180deg);
}
/* Dropdown Hidden Content Panel */
.faq-item__answer {
padding: 0 30px 24px 30px;
color: #d1d5db; /* Matches gray-300 */
font-size: 1rem;
line-height: 1.6;
}
/* Clean styling for rich text tags if typed via rich-text editor */
.faq-item__answer p {
margin: 0;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
.faq-header__title {
font-size: 2.2rem;
}
.faq-item__question {
padding: 20px;
font-size: 1rem;
}
.faq-item__answer {
padding: 0 20px 20px 20px;
}
}
/* Section Container Styling */
.features-section {
background-color: #111827; /* Matches gray-900 */
color: #ffffff;
padding: 80px 20px;
font-family: 'Inter', sans-serif;
}
.features-container {
max-width: var(--container-max-width);
margin: 0 auto;
}
/* Header Text Centering */
.features-header {
text-align: center;
margin-bottom: 50px;
}
.features-header__overtitle {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 2px;
color: #9ca3af; /* Matches gray-400 */
display: block;
margin-bottom: 10px;
}
.features-header__title {
font-size: 2.8rem;
font-weight: 700;
margin: 0 0 15px 0;
}
.features-header__subtitle {
font-size: 1.15rem;
color: #d1d5db; /* Matches gray-300 */
margin: 0;
}
/* Grid Layout for Cards */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 24px;
}
/* Individual Feature Card */
.feature-card {
display: flex;
background-color: #1f2937; /* Matches gray-800 */
border: 1px solid #374151; /* Matches gray-700 */
border-radius: 8px;
overflow: hidden;
min-height: 280px;
}
/* Left Half: Image placeholder zone */
.feature-card__image-wrapper {
flex: 1;
background-color: #374151; /* Matches gray-700 */
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.feature-card__image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Right Half: Content zone */
.feature-card__content {
flex: 1;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.feature-card__category {
font-size: 0.85rem;
color: #9ca3af; /* Matches gray-400 */
margin-bottom: 8px;
}
.feature-card__title {
font-size: 1.5rem;
font-weight: 700;
margin: 0 0 12px 0;
line-height: 1.2;
}
.feature-card__description {
font-size: 0.95rem;
color: #d1d5db; /* Matches gray-300 */
line-height: 1.5;
margin: 0 0 auto 0; /* Pushes button to bottom if text is short */
padding-bottom: 20px;
}
.feature-card__area {
margin-top: 1rem;
}
.image-placeholder-text {
color: #9ca3af; /* Matches gray-400 */
font-weight: 500;
}
.feature-card__link {
color: #3b82f6; /* Matches blue-500 */
text-decoration: none;
font-size: 0.95rem;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 8px;
transition: opacity 0.2s;
}
.feature-card__link:hover {
opacity: 0.8;
}
/* Responsive adjustments for mobile viewports */
@media (max-width: 768px) {
.features-grid {
grid-template-columns: 1fr;
}
.feature-card {
flex-direction: column; /* Stacks image on top of content for mobile */
}
.feature-card__image-wrapper {
height: 200px;
}
.features-header__title {
font-size: 2rem;
}
}
/* Feature Story Component */
.feature-section {
padding: 5rem 0;
background-color: #ffffff;
color: var(--color-gray-900);
font-family: 'Inter', sans-serif;
}
.feature-container {
max-width: var(--container-max-width);
margin: 0 auto;
padding-left: 1.5rem;
padding-right: 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 3rem;
}
@media (min-width: 768px) {
.feature-container {
flex-direction: row;
}
.feature-container--reversed {
flex-direction: row-reverse;
}
.feature-content,
.feature-image-wrapper {
flex: 1;
width: 50%;
}
}
.feature-title {
font-size: 1.875rem; /* text-3xl */
font-weight: 700;
margin-top: 0;
margin-bottom: 1rem;
color: #000000;
}
.feature-divider {
height: 4px;
width: 80px;
background-color: var(--color-primary);
margin-bottom: 1.5rem;
}
.feature-description {
font-size: 1.125rem; /* text-lg */
color: var(--color-gray-600);
line-height: 1.75;
margin-top: 0;
margin-bottom: 1.5rem;
}
.feature-image-wrapper {
width: 100%;
}
.feature-image-wrapper img {
max-width: 100%;
height: auto;
display: block;
border-radius: 0.5rem;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.feature-placeholder {
background-color: var(--color-gray-100);
border-radius: 0.5rem;
height: 20rem;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--color-gray-200);
}
.feature-placeholder-text {
color: var(--color-gray-400);
font-weight: 500;
}
.feature-area {
margin-top: 2rem;
}
/* Feedback Request Section */
.feedback-request-section {
padding: 4rem 0;
background-color: var(--color-gray-50);
}
.feedback-request-container {
max-width: var(--container-max-width);
margin: 0 auto;
padding: 0 1.5rem;
}
.feedback-request-card {
display: flex;
flex-direction: column;
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
background-color: #031c36; /* Dark blue background from the mockup */
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feedback-request-card:hover {
transform: translateY(-4px);
box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.08);
}
/* Left side: content and form link */
.feedback-request-left {
padding: 3rem 2.5rem;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.feedback-request-title {
font-size: 2.5rem;
font-weight: 800;
color: #ffffff;
margin: 0 0 1.5rem 0;
line-height: 1.15;
letter-spacing: -0.025em;
text-transform: uppercase;
}
.feedback-request-subtitle {
font-size: 1.125rem;
color: #a3b8cc; /* Light grayish blue for readability */
margin: 0 0 2rem 0;
line-height: 1.6;
}
/* CTA Action Zone */
.feedback-request-action-zone {
margin-bottom: 2rem;
width: 100%;
}
.feedback-request-button {
display: inline-block;
background-color: #0b66c2; /* Vibrant button blue from mockup */
color: #ffffff;
font-size: 1.125rem;
font-weight: 700;
padding: 0.875rem 2.5rem;
border: none;
border-radius: 0.375rem;
cursor: pointer;
text-decoration: none;
text-align: center;
transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.feedback-request-button:hover {
background-color: #0954a1;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.feedback-request-button:active {
transform: scale(0.98);
}
.feedback-request-disclaimer {
font-size: 0.8rem;
color: #55718a; /* Small muted disclaimer */
margin: 0;
line-height: 1.4;
}
/* Right side: image / placeholder */
.feedback-request-right {
background-color: #274059; /* Slate gray side panel from mockup */
display: flex;
align-items: center;
justify-content: center;
min-height: 250px;
position: relative;
overflow: hidden;
}
@media (min-width: 768px) {
.feedback-request-card {
flex-direction: row;
}
.feedback-request-left {
width: 55%;
padding: 4rem 3.5rem;
}
.feedback-request-right {
width: 45%;
min-height: auto;
}
}
.feedback-request-image-wrapper {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.feedback-request-image {
max-width: 100%;
max-height: 320px;
object-fit: cover;
border-radius: 0.5rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.feedback-request-image-placeholder {
width: 9rem;
height: 9rem;
background-color: #3b556e;
border-radius: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
color: #637f99;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, color 0.3s ease;
}
.feedback-request-image-placeholder:hover {
transform: scale(1.05);
color: #8bb2d6;
}
.placeholder-icon {
width: 3.5rem;
height: 3.5rem;
}
/* Hero Elements */
.hero-banner {
background-color: var(--color-gray-900);
color: #ffffff;
padding: 80px 20px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
min-height: 400px;
}
.hero-banner__container {
max-width: var(--container-max-width);
margin: 0 auto;
}
.hero-banner__title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 24px;
line-height: 1.2;
}
.hero-banner__subtitle {
font-size: 1.25rem;
font-weight: 400;
color: var(--color-gray-300);
max-width: 800px;
margin: 0 auto;
line-height: 1.5;
}
.hero-section--split {
background-color: var(--color-gray-900);
color: #ffffff;
padding: 5rem 0;
}
.hero-section--split .container {
display: flex;
flex-direction: column;
align-items: center;
}
@media (min-width: 768px) {
.hero-section--split .container {
flex-direction: row;
gap: 3rem;
}
}
.hero-content {
margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
.hero-content {
width: 50%;
margin-bottom: 0;
}
}
.hero-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: #ffffff;
}
.hero-description {
font-size: 1.25rem;
margin-bottom: 2rem;
color: var(--color-gray-300);
}
.hero-actions {
display: flex;
gap: 1rem;
}
.btn-large {
padding: 0.75rem 2rem;
border-radius: 0.5rem;
font-weight: 600;
}
.btn-outline-white {
border: 1px solid #ffffff;
color: #ffffff;
text-decoration: none;
transition: all 0.2s;
display: inline-block;
}
.btn-outline-white:hover {
background-color: #ffffff;
color: var(--color-gray-900);
}
.hero-image {
width: 100%;
}
@media (min-width: 768px) {
.hero-image {
width: 50%;
}
}
.hero-image img {
border-radius: 0.75rem;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
width: 100%;
height: auto;
}
.image-placeholder {
background-color: var(--color-gray-800);
border-radius: 0.75rem;
height: 24rem;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
border: 2px dashed var(--color-gray-700);
color: var(--color-gray-500);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero-banner {
padding: 60px 15px;
min-height: 300px;
}
.hero-banner__title {
font-size: 2.2rem;
}
.hero-banner__subtitle {
font-size: 1.1rem;
}
.hero-title {
font-size: 2.2rem;
}
}
/* Header */
.site-header {
background-color: #ffffff;
border-bottom: 1px solid var(--color-gray-200);
position: sticky;
top: 0;
z-index: 50;
}
.site-nav {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 1rem;
padding-bottom: 1rem;
}
.site-logo {
font-size: 1.5rem;
font-weight: 800;
color: var(--color-primary);
text-decoration: none;
letter-spacing: -0.025em;
}
.site-logo span {
color: #000000;
}
.nav-links {
display: none;
}
@media (min-width: 768px) {
.nav-links {
display: flex;
align-items: center;
gap: 2rem;
font-weight: 500;
}
}
.nav-link {
display: flex;
align-items: center;
gap: 0.25rem;
padding: 0.5rem 0;
text-decoration: none;
color: var(--color-gray-900);
transition: color 0.2s;
}
.nav-link:hover, .nav-link.is-active {
color: var(--color-primary);
}
.nav-item-wrapper {
position: relative;
}
.nav-item-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-icon {
width: 1rem;
height: 1rem;
fill: currentColor;
transition: transform 0.2s;
}
.nav-item-wrapper:hover > .nav-item-header .nav-icon {
transform: rotate(180deg);
}
.nav-icon--nested {
transform: rotate(-90deg);
}
.nav-item-wrapper:hover > .nav-item-header .nav-icon--nested {
transform: rotate(0deg);
}
.submenu {
position: absolute;
width: 12rem;
background-color: #ffffff;
border: 1px solid var(--color-gray-100);
border-radius: 0.375rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transition: all 0.3s;
z-index: 50;
padding: 0.5rem 0;
}
.submenu--top-level {
left: 0;
top: 100%;
}
.submenu--nested {
left: 100%;
top: 0;
}
.nav-item-wrapper:hover > .submenu {
opacity: 1;
visibility: visible;
}
.submenu-item {
padding: 0 1rem;
}
/* Footer */
.site-footer {
background-color: var(--color-gray-900);
color: #ffffff;
padding-top: 3rem;
padding-bottom: 3rem;
}
.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}
@media (min-width: 768px) {
.footer-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.footer-heading {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1rem;
color: #ffffff;
}
.footer-text {
color: var(--color-gray-400);
}
.footer-subheading {
font-weight: 700;
margin-bottom: 1rem;
text-transform: uppercase;
font-size: 0.875rem;
letter-spacing: 0.1em;
color: var(--color-gray-500);
}
.footer-list {
list-style: none;
padding: 0;
margin: 0;
}
.footer-list li {
margin-bottom: 0.5rem;
}
.footer-list a {
color: var(--color-gray-400);
text-decoration: none;
transition: color 0.2s;
}
.footer-list a:hover {
color: #ffffff;
}
.footer-bottom {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid var(--color-gray-800);
text-align: center;
color: var(--color-gray-500);
font-size: 0.875rem;
}
/* Show/hide Helpers */
.desktop-only {
display: inline-block;
}
.mobile-only {
display: none !important;
}
/* Mobile Toggle Styles */
.mobile-nav-toggle {
display: none;
}
.submenu-toggle-btn {
display: none;
}
@media (max-width: 767px) {
.desktop-only {
display: none !important;
}
.mobile-only {
display: block !important;
}
.mobile-nav-toggle {
display: block;
background: none;
border: none;
padding: 0.5rem;
color: var(--color-gray-900);
cursor: pointer;
z-index: 60;
transition: color 0.2s;
}
.mobile-nav-toggle:hover {
color: var(--color-primary);
}
.hamburger-line {
transform-origin: center;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-open .mobile-nav-toggle .hamburger-line.top {
transform: translateY(6px) rotate(45deg);
}
.nav-open .mobile-nav-toggle .hamburger-line.middle {
opacity: 0;
}
.nav-open .mobile-nav-toggle .hamburger-line.bottom {
transform: translateY(-6px) rotate(-45deg);
}
.nav-links {
display: none;
flex-direction: column;
align-items: flex-start;
position: absolute;
top: 100%;
left: 0;
right: 0;
background-color: #ffffff;
border-bottom: 1px solid var(--color-gray-200);
padding: 1.5rem;
gap: 1rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
z-index: 40;
max-height: calc(100vh - 100%);
overflow-y: auto;
}
.nav-open .nav-links {
display: flex;
animation: slideDown 0.3s ease-out forwards;
}
.nav-links .btn-primary {
width: 100%;
text-align: center;
margin-top: 0.5rem;
}
.nav-link {
font-size: 1.125rem;
font-weight: 600;
width: 100%;
padding: 0.75rem 0;
border-bottom: 1px solid var(--color-gray-100);
}
.nav-item-wrapper:last-child > .nav-item-header .nav-link,
.nav-links > .nav-link:nth-last-child(2) {
border-bottom: none;
}
/* Submenus on Mobile */
.nav-item-wrapper {
width: 100%;
border-bottom: 1px solid var(--color-gray-100);
}
.nav-item-wrapper .nav-link {
border-bottom: none;
}
.nav-item-header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.submenu-toggle-btn {
display: flex;
align-items: center;
justify-content: center;
background: none;
border: none;
padding: 0.75rem;
color: var(--color-gray-500);
cursor: pointer;
transition: color 0.2s;
}
.submenu-toggle-btn:hover {
color: var(--color-primary);
}
.submenu {
position: static;
width: 100%;
box-shadow: none;
border: none;
border-left: 2px solid var(--color-gray-200);
padding: 0 0 0 1rem;
margin-top: 0;
margin-bottom: 0.5rem;
display: none;
opacity: 1;
visibility: visible;
transition: none;
}
.submenu-open > .submenu {
display: block;
animation: fadeIn 0.2s ease-in-out;
}
.submenu-open > .nav-item-header .submenu-toggle-btn .nav-icon {
transform: rotate(180deg);
}
.submenu-open > .nav-item-header .submenu-toggle-btn .nav-icon--nested {
transform: rotate(0deg);
}
.submenu-item {
padding: 0;
}
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
