/* Font Families */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-400italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-500italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    scrollbar-gutter: stable;
}

body {
    font-family: 'Roboto', sans-serif;
    padding-top: 76px;
    color: #000000;
}

body.offcanvas-open {
    padding-right: 0 !important;
}

body.modal-open,
.fixed-top,
.sticky-top {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1030;
}

.navbar.scrolled {
    background-color: rgba(248, 249, 250, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 70px);
    }
    
    .logo-img {
        height: clamp(32px, 8vw, 48px);
        max-width: 100%;
        width: auto;
    }
    
    .navbar-toggler {
        flex: 0 0 auto;
        min-width: 44px;
        border: none;
    }
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:focus-visible {
    outline: none;
    box-shadow: none;
}

.navbar-nav .nav-item {
    margin: 0 0.8rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    color: #333;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f3b90e;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #f3b90e;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-section h2.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-section p.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header (for secondary pages) */
.page-header {
    position: relative;
    padding: 3rem 0 3rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header .row {
    display: flex;
    align-items: center;
    min-height: 200px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
}

.spec-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.spec-list > li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.spec-list > li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #f3b90e;
    font-weight: bold;
}

.spec-list ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.spec-list ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.spec-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
}

.checkmark-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.checkmark-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.checkmark-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #f3b90e;
    font-weight: bold;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    padding-left: 1.5rem;
    border-left: 4px solid #f3b90e;
    margin: 1.5rem 0;
}

/* Feature Cards */
.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.btn-primary {
    background-color: #0a37b3;
    color: #ffffff;
    border: 1px solid #f3b90e;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #f3b90e;
    color: #1a1a1a;
    border-color: #f3b90e;
}

/* Contact Form */
.contact-form {
    max-width: 100%;
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #f3b90e;
    box-shadow: 0 0 0 0.2rem rgba(243, 185, 14, 0.25);
    outline: none;
}

.contact-form .form-control[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-options .form-check {
    margin: 0;
}

.contact-options .form-check-input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.contact-options .form-check-input:checked {
    background-color: #f3b90e;
    border-color: #f3b90e;
}

.contact-options .form-check-label {
    margin-left: 0.5rem;
    cursor: pointer;
    color: #333;
}

/* Footer */
footer {
    margin-top: 0;
}

.footer-dark {
    background-color: #1a1a1a;
    background-image: url('../img/footer-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.footer-dark .container {
    position: relative;
    z-index: 1;
}

.footer-logo-section {
    margin-bottom: 4rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-navigation {
    padding-bottom: 3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f3b90e;
}

.footer-copyright-section {
    margin-top: 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    body {
        padding-top: 75px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section h2.hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-section p.hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 72px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section h2.hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section p.hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-logo {
        height: 40px;
        max-width: calc(100vw - 2rem);
    }
    
    .btn.btn-primary {
        width: 100%;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f3b90e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover {
    background-color: #d4a008;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.75rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Specification Items */
.spec-image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.spec-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.spec-item {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
}

.spec-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
    line-height: 1.4;
}

.hover-image {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    height: auto;
}

.hover-image:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Offcanvas width */
.offcanvas.offcanvas-end {
    width: 600px;
    max-width: 90vw;
}

/* Offcanvas logo */
.offcanvas-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* News Blocks */
.news-block-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

.news-block-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.news-block {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-block-link:hover .news-block {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.news-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-block-link:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #999;
}

.news-date {
    color: #999;
}

.news-author {
    color: #999;
    position: relative;
    padding-left: 1rem;
}

.news-author::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
}

.news-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

@media (max-width: 991.98px) {
    .news-image-wrapper {
        height: 220px;
    }
    
    .news-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .news-image-wrapper {
        height: 200px;
    }
    
    .news-content {
        padding: 1.25rem;
    }
    
    .news-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .news-meta {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        gap: 0.75rem;
    }
    
    .news-author {
        padding-left: 0.75rem;
    }
    
    .news-intro {
        font-size: 0.95rem;
    }
}

/* News Detail Page */
.back-to-news-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.back-to-news-link:hover {
    color: #f3b90e;
    text-decoration: none;
    opacity: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #666;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.article-date {
    color: #666;
}

.article-author {
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.article-author::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #666;
}

.article-content {
    padding-top: 2rem;
}

.article-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
}

.article-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-image-wrapper {
    margin: 2.5rem 0;
}

.article-image-wrapper img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
    .back-to-news-link {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .article-meta {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-author {
        padding-left: 0;
    }
    
    .article-author::before {
        display: none;
    }
    
    .article-content {
        padding-top: 1.5rem;
    }
    
    .article-content .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .article-heading {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .article-image-wrapper {
        margin: 1.5rem 0;
    }
    
    .article-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Explore / Design Page Tabs */
.explore-nav-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 76px;
    z-index: 1020;
    background-color: #ffffff;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 0;
    padding: 1.5rem 0 1rem;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    left: 0;
    right: 0;
}

.explore-nav-scroll {
    overflow: visible;
}

.explore-nav {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    border-bottom: none;
}

.explore-nav .nav-item {
    margin: 0 0.5rem;
}

.explore-nav .nav-link {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    padding: 0rem 0.5rem;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explore-nav .nav-link:hover {
    color: #f3b90e;
    border-bottom-color: #f3b90e;
    background: transparent;
}

.explore-nav .nav-link.active {
    color: #333;
    border-bottom-color: #f3b90e;
    background: transparent;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
}

/* Gallery Grid */
.gallery-grid {
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    display: block;
}

.tab-pane img {
    width: 100%;
    height: 234px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.ga-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .explore-nav-wrapper {
        top: 72px;
        padding: 0.75rem 0;
    }
    
    .explore-nav-scroll {
        padding: 0;
    }
    
    .explore-nav-scroll .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .explore-nav {
        justify-content: center;
        margin-bottom: 0;
        padding: 0;
        gap: 0.25rem;
    }
    
    .explore-nav .nav-item {
        margin: 0.25rem;
        flex: 0 0 auto;
    }
    
    .explore-nav .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .explore-nav-wrapper {
        padding: 0.6rem 0;
    }
    
    .explore-nav-scroll .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .explore-nav {
        gap: 0.2rem;
    }
    
    .explore-nav .nav-item {
        margin: 0.2rem;
    }
    
    .explore-nav .nav-link {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        letter-spacing: 0.3px;
    }
}

/* YouTube Video Link */
.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF0000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: transparent;
}

.youtube-link:hover {
    color: #ffffff;
    background-color: #FF0000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.youtube-link:focus {
    outline: 2px solid #FF0000;
    outline-offset: 2px;
}

.youtube-link::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF0000'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.youtube-link:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .youtube-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .youtube-link::before {
        width: 20px;
        height: 20px;
    }
}

/* GLightbox - Hide titles and descriptions */
.gslide-title,
.gslide-description,
.gslide-description.description-bottom {
    display: none !important;
}

/* Accessibility: Fix contrast for links in bg-light sections (excluding navbar) */
a.contrast-link {
    color: #0a37b3 !important;
    text-decoration: underline;
    font-weight: 500;
}

a.contrast-link:focus {
    color: #082a8a !important;
    text-decoration: underline;
}