:root {
    /* Colors */
    --color-primary: #000000;
    /* Black */
    --color-secondary: #f4f4f4;
    /* Off-white / light gray */
    --color-accent: #8b0000;
    /* Deep cherry red */
    --color-text: #000000;
    /* Black */
    --color-text-light: #ffffff;
    /* White */
    --color-background: #ffffff;
    /* White */

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

[data-theme='dark'] {
    --color-primary: #f4f4f4;
    --color-secondary: #1a1a1a;
    --color-text: #f4f4f4;
    --color-background: #121212;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700&display=swap');

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}
/* Global Styles */
/* Note: Variables and Typography are bundled by the build script */

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-background);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Layout Utilities */
.section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bg-white {
    background-color: var(--color-background);
}

.bg-light {
    background-color: var(--color-secondary);
}

.bg-dark {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-text-light);
}

.lead {
    font-size: 1.25rem;
    color: #666;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
}

.align-center {
    align-items: center;
}

.card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.link-arrow {
    font-weight: 600;
    color: var(--color-accent);
    display: inline-block;
    margin-top: var(--spacing-sm);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Utility to ensure components have block display if custom elements are used as wrappers */
c-main-navbar,
c-footer,
c-hero-slider,
c-bg-video-hero {
    display: block;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* bg-video-hero */
.bg-video-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Darken video for text readability */
    z-index: -1;
}

.bg-video-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-text-light);
    max-width: 800px;
    padding: var(--spacing-md);
}

.bg-video-hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-video-hero p {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .bg-video-hero h1 {
        font-size: 2.5rem;
    }

    .bg-video-hero p {
        font-size: 1.2rem;
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}
/* main-navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    /* Increased height so it's not cut off */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--color-text-light);
    /* Default white on transparent bg */
    transition: color 0.3s ease;
    font-size: 1.15rem;
}

.navbar.scrolled .logo-text span {
    color: var(--color-primary);
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    /* Default white on transparent bg */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
    /* Switch to dark text on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
}
/* footer */
/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    margin-top: 0;
    color: var(--color-text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    color: #888;
}