﻿/* Overall dark‑theme styles (existing) */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050810;
    color: #f5f5f5;
}

a {
    color: #a5ff3f;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #05050a;
    border-bottom: 1px solid #222;
}

.brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #f5f5f5;
}

.nav-right a {
    margin-left: 1rem;
    font-size: 0.95rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

.card {
    background: #0b0f1d;
    border-radius: 0.9rem;
    padding: 1rem 1.2rem;
    border: 1px solid #15192a;
    margin-bottom: 1rem;
}

/* New table styles for professional pricing comparisons */
table {
 width:100%;
 border-collapse: collapse;
 margin-top:1rem;
 font-size:0.95rem;
 line-height:1.5;
 table-layout: auto; /* allow columns to size to content */
 word-break: break-word; /* break long words */
}

thead th {
    background: #0e1830; /* darker header row */
    color: #a5ff3f; /* brand accent */
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #15192a;
    text-align: left;
}

thead th, tbody td {
 white-space: normal; /* allow text to wrap */
 overflow: visible; /* show all text */
 text-overflow: unset; /* remove ellipsis if present */
}

tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #15192a;
}

tbody tr:nth-child(odd) td {
    background: #0b0f1d; /* matches card */
}

tbody tr:nth-child(even) td {
    background: #0e1626; /* slightly lighter for row striping */
}

tbody tr:hover td {
    background: #15203a; /* subtle hover effect */
}

.small-text {
    font-size: 0.8em;
    color: #9ca3af; /* muted detail text */
}

/* Buttons and other elements (existing) */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: #a5ff3f;
    color: #050810;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: #a5ff3f;
    border-color: #333;
}
/* Improve spacing inside pricing cards */
.pricing-card ul li {
    margin-bottom: 6px;
    line-height: 1.45;
}

/* Improve spacing between sections */
section.card {
    margin-bottom: 3rem;
    padding: 2rem !important;
}

/* Fix winter badges */
.badge {
    background-color: #00d66c;
    color: #000;
    padding: 3px 8px;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 700;
}

/* Fix price spacing */
.price {
    display: inline-block;
    margin-bottom: 0.5rem;
}
.price-old {
    opacity: 0.6;
    text-decoration: line-through;
    margin-right: 6px;
}

/* Table spacing fix */
#plan-comparison table td, 
#plan-comparison table th {
    padding: 12px 16px !important;
}

/* CTA button spacing alignment */
.hero-cta a {
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Improve header spacing */
.page-header h1 {
    margin-bottom: 0.5rem;
}
.page-header p {
    margin-bottom: 0.5rem;
}
.calendar-card {
    background: #0b1020; /* slightly lighter than page bg */
    border-radius: 1rem;
    border: 1px solid #15192a;
    padding: 1.5rem;
}

.calendar-embed {
    border-radius: 1rem;
    overflow: hidden; /* hides iframe edges */
}

    /* Optional: bump height if you’re seeing scrollbars inside the iframe */
    .calendar-embed iframe {
        display: block;
        width: 100%;
        height: 700px;
    }
    .calendar-embed iframe {
        display: block;
        width: 100%;
        height: 700px;
        filter: invert(1) hue-rotate(180deg) contrast(1.1);
    }
