/* Base Styles */
:root {
    --primary-color: #2271b1;
    --primary-dark: #135e96;
    --secondary-color: #00a32a;
    --secondary-dark: #008a20;
    --text-color: #1d2327;
    --text-light: #646970;
    --background-light: #f0f0f1;
    --background-white: #FFFFFF;
    --border-color: #c3c4c7;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(34, 113, 177, 0.3);
    transition: all 0.3s ease, transform 0.2s ease;
}

.btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(19, 94, 150, 0.4);
}

.btn.primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 138, 32, 0.3);
}

.btn.secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
}

.btn.secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Header and Navigation */
.hero {
    background: var(--primary-color);
    color: white;
    padding: 0 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
}

/* Modern Sticky Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(34, 113, 177, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 38px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.8rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white;
    opacity: 0.85;
}

.nav-button {
    background-color: white;
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    margin-left: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.nav-button:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.nav-button:hover::before {
    left: 100%;
}

.main-nav.scrolled .nav-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.main-nav.scrolled .nav-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(19, 94, 150, 0.3);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hamburger menu when active */
.hamburger-menu.active span {
    background-color: var(--primary-color);
}

.main-nav.scrolled .hamburger-menu span {
    background-color: var(--text-color);
}

.main-nav.scrolled .hamburger-menu.active span {
    background-color: var(--primary-color);
}

/* Scrolled Navigation */
.main-nav.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-nav.scrolled .nav-link {
    color: var(--text-color);
}

.main-nav.scrolled .nav-button {
    background-color: var(--primary-color);
    color: white;
}

.main-nav.scrolled .nav-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero content */
.hero-content {
    text-align: center;
    padding: 10rem 0 4rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn.hero-download {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.hero-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn.hero-download:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn.hero-download:hover::before {
    left: 100%;
}

.btn.hero-download:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Overview Section */
.overview {
    background-color: var(--background-white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
}

.overview-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.overview-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Features Section */
.features {
    background-color: var(--background-light);
}

.feature-block {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    gap: 3rem;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-content, .feature-image {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-content ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.feature-content li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.feature-image {
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.feature-image::after {
    content: '🔍';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-image:hover::after {
    opacity: 1;
}

.feature-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    width: 100%;
    transition: transform 0.3s ease;
}

.feature-image:hover img {
    transform: scale(1.02);
}

/* Enhanced Feature Section Styling */
.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-header h3 {
    margin-bottom: 0;
    margin-right: 1rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.image-caption {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.8rem;
    font-style: italic;
}

.feature-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.authoring-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

.tool-group {
    flex: 1;
    min-width: 220px;
}

.tool-group h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.tool-list {
    list-style: none;
    padding-left: 0;
}

.tool-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.tool-list i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

/* Documentation Section */
.documentation {
    background-color: var(--background-white);
}

.doc-tabs {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    overflow: hidden;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 2rem;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tab-content ol, .tab-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.tab-content li {
    margin-bottom: 0.8rem;
}

.tab-content pre {
    background: #f5f7f9;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.tab-content code {
    font-family: 'Courier New', monospace;
    color: var(--primary-dark);
}

.shortcode-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    display: block;
}

.shortcode-table th, .shortcode-table td {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    text-align: left;
}

.shortcode-table th {
    background-color: #f5f7f9;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Screenshots Section */
.screenshots {
    background-color: var(--background-light);
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.screenshot {
    background: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
}

.screenshot:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.screenshot::after {
    content: '🔍';
    position: absolute;
    bottom: 60px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot:hover::after {
    opacity: 1;
}

.screenshot img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}

.screenshot p {
    padding: 15px;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

/* Support Section */
.support {
    background-color: var(--background-white);
}

.support-content p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.donation-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.donation-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    padding: 2rem;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-10px);
}

.donation-card img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.donation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.donation-card p {
    margin-bottom: 1.5rem;
}

.other-support {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.other-support h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.other-support ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.other-support li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.other-support li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background-color: #1d2327;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-links {
    min-width: 200px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom .fa-heart {
    color: #ff6b6b;
}

/* Footer logo */
.footer-logo-svg {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .feature-block {
        flex-direction: column;
    }
    
    .feature-block.reverse {
        flex-direction: column;
    }
    
    .feature-content, .feature-image {
        width: 100%;
    }
    
    .feature-image {
        margin-top: 2rem;
    }

    .nav-menu ul li {
        margin: 0 0.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }

    .screenshot-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Mobile Navigation */
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 500px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 60px; /* Create space for the header */
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-link {
        color: var(--text-color);
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        display: block;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
        background-color: rgba(74, 111, 220, 0.05);
    }
    
    .nav-button {
        margin: 1.5rem auto 0;
        display: block;
        width: 80%;
    }
    
    /* Overlay for mobile menu */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hamburger animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--primary-color);
        width: 100%;
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--primary-color);
        width: 100%;
    }
    
    /* Add a subtle outline to the hamburger button when active */
    .hamburger-menu.active {
        box-shadow: 0 0 0 2px rgba(74, 111, 220, 0.2);
        border-radius: 4px;
        padding: 3px;
        margin: -3px;
    }
    
    .hero-content {
        padding: 9rem 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 1rem;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
    
    .logo-svg {
        width: 140px;
    }
    
    .logo-svg text {
        font-size: 14px;
    }
    
    .shortcode-table {
        font-size: 14px;
    }
    
    .shortcode-table th, 
    .shortcode-table td {
        padding: 0.6rem;
    }
    
    .btn.hero-download {
        max-width: 300px;
        width: 100%;
    }

    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .overview-card {
        padding: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 7rem 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .logo img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-svg {
        width: 120px;
    }
    
    .logo-svg text {
        font-size: 12px;
    }
}

/* Mobile Menu Body State */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobile Menu Animation */
.nav-menu ul li {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition-delay: calc(0.05s * var(--item-index, 0));
}

.nav-menu.active ul li {
    transform: translateY(0);
    opacity: 1;
}

/* Navigation Item Hover Effect */
.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.main-nav.scrolled .nav-link:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle Animation */
.hamburger-menu span {
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Navigation with Menu Active */
.main-nav.menu-active {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.main-nav.menu-active .hamburger-menu span {
    background-color: var(--primary-color);
}

/* Logo styles */
.logo-svg {
    height: auto;
    max-width: 180px;
    width: auto;
    transition: all 0.3s ease;
}

.main-nav.scrolled .logo-svg path,
.main-nav.menu-active .logo-svg path {
    fill: var(--primary-color);
}

.main-nav.scrolled .logo-svg text,
.main-nav.menu-active .logo-svg text {
    fill: var(--text-color);
}

/* Lightbox */
.lightbox-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-image:hover {
    transform: scale(1.03);
}

.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    padding: 15px;
    text-align: center;
    max-width: 80%;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-header h3 {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .feature-badge {
        align-self: flex-start;
    }
    
    .authoring-tools {
        flex-direction: column;
        gap: 1.5rem;
    }
} 