/* SimLock Website Styles - SimWoods Golf Inspired */

:root {
    --accent: #6bff00;
    --accent-hover: #5ce600;
    --bg-dark: #141414;
    --bg-darker: #0a0a0a;
    --bg-surface: #1a1a1a;
    --bg-card: #222222;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #333333;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: rgba(20, 20, 20, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.brand-accent {
    color: var(--accent);
}

/* SimLock Brand Styling - Use everywhere */
.brand {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.brand .brand-accent {
    color: var(--accent);
}

.light-section .brand .brand-accent {
    color: #4db800;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-dark);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 255, 0, 0.3);
}

.btn-outline-accent {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 8px 25px rgba(107, 255, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(107, 255, 0, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

.hero h1 .accent {
    color: var(--accent);
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Light Section - Contrast */
.light-section {
    background-color: #ffffff;
    color: #141414;
    padding: 100px 0;
}

.light-section .section-title {
    color: #141414;
}

.light-section .section-subtitle {
    color: #111111 !important;
    font-weight: 500;
}

.light-section .feature-card {
    background-color: #f8f8f8;
    border-color: #e0e0e0;
}

.light-section .feature-card:hover {
    border-color: var(--accent);
    background-color: #ffffff;
}

.light-section .feature-card h4 {
    color: #141414;
}

.light-section .feature-card p {
    color: #444444;
}

.light-section .text-accent {
    color: #4db800 !important; /* Slightly darker green for readability on white */
}

.light-section .feature-icon {
    background: linear-gradient(135deg, rgba(40, 120, 0, 0.15) 0%, rgba(40, 120, 0, 0.08) 100%);
}

.light-section .feature-icon i {
    color: #2d8a00;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.light-section .section-subtitle,
.features.light-section .section-subtitle {
    color: #111111 !important;
    font-weight: 500;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(107, 255, 0, 0.2) 0%, rgba(107, 255, 0, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--accent);
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

.screenshot-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: scale(1.02);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-card .card-body {
    padding: 1.25rem;
}

.screenshot-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.screenshot-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Admin Preview */
.admin-preview {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.admin-preview .text-muted {
    color: #b0b0b0 !important;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.admin-tab {
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-tab:hover,
.admin-tab.active {
    background-color: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

.pricing-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent);
    position: relative;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(107, 255, 0, 0.05) 100%);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1.5rem 0;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent);
}

/* Support Page */
.support-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.support-hero .text-muted,
.support-hero .lead {
    color: #b0b0b0 !important;
}

.support-content {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.toc-sidebar {
    position: sticky;
    top: 100px;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.toc-sidebar h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.toc-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-sidebar li {
    margin-bottom: 0.5rem;
}

.toc-sidebar a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.toc-sidebar a:hover {
    color: var(--accent);
}

.guide-content {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.guide-content h2 {
    color: var(--accent);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.guide-content h2:first-child {
    margin-top: 0;
}

.guide-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.guide-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.guide-content ul,
.guide-content ol {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.guide-content li {
    margin-bottom: 0.5rem;
}

.guide-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.guide-content th {
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.guide-content td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.guide-content tr:hover td {
    background-color: rgba(107, 255, 0, 0.05);
}

.guide-content code {
    background-color: var(--bg-surface);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--accent);
}

.guide-content .note {
    background-color: rgba(107, 255, 0, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.guide-content .warning {
    background-color: rgba(255, 152, 0, 0.1);
    border-left: 4px solid #ff9800;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.guide-content .tip {
    background-color: rgba(33, 150, 243, 0.1);
    border-left: 4px solid #2196f3;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.guide-screenshot {
    margin: 1.5rem 0;
    text-align: center;
}

.guide-screenshot img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.guide-screenshot .caption {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* Download Section */
.download-section {
    padding: 40px 0;
    background-color: var(--bg-surface);
}

.download-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.download-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.download-card h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.download-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.download-card .btn i {
    margin-right: 0.4rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-surface);
    padding: 60px 0;
}

.cta-section .text-muted {
    color: #b0b0b0 !important;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.cta-buttons .btn {
    white-space: nowrap;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .cta-buttons {
        justify-content: center;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }
}

/* Contact Page */
.contact-content .text-muted {
    color: #b0b0b0 !important;
}

.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.contact-hero .text-muted,
.contact-hero .lead {
    color: #b0b0b0 !important;
}

.contact-content {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.contact-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
    color: var(--text-secondary);
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-form {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.contact-form .form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.contact-form .form-control:focus {
    background-color: var(--bg-surface);
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(107, 255, 0, 0.2);
    color: var(--text-primary);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background-color: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-footer h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.site-footer ul li {
    margin-bottom: 0.5rem;
}

.site-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--accent);
}

.site-footer p,
.site-footer .text-muted {
    color: #999999 !important;
}

.site-footer .small {
    color: #888888 !important;
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .pricing-card {
        padding: 2rem;
    }

    .toc-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

/* Utility Classes */
.text-accent {
    color: var(--accent) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.scroll-padding {
    scroll-margin-top: 100px;
}
