/* Trailvora Design System */
/* Using class-based styling exclusively as requested. No * or global element selectors. */

.tv-body {
    font-family: 'Outfit', sans-serif;
    color: #333333;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Classes */
.tv-h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.tv-h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.tv-h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tv-p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555555;
}

.tv-a {
    color: #c5a059;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tv-a:hover {
    color: #a68546;
}

/* Layout Classes */
.tv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tv-section {
    padding: 5rem 0;
}

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

/* Header & Nav */
.tv-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eeeeee;
    padding: 1rem 0;
}

.tv-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tv-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #1a1a1a;
    text-transform: uppercase;
    text-decoration: none;
}

.tv-nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tv-nav-link {
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
}

/* Buttons */
.tv-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    text-decoration: none;
}

.tv-btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.tv-btn-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tv-btn-outline {
    background-color: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}

.tv-btn-outline:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Hero Section */
.tv-hero {
    background-color: #f9f9f9;
    padding: 6rem 0;
    display: flex;
    align-items: center;
}

.tv-hero-content {
    flex: 1;
}

.tv-hero-image-wrap {
    flex: 1;
    text-align: right;
}

.tv-img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Disclosure */
.tv-disclosure-bar {
    background-color: #f4f4f4;
    color: #777777;
    font-size: 0.8rem;
    text-align: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eeeeee;
}

/* Comparison Table */
.tv-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
}

.tv-table {
    width: 100%;
    border-collapse: collapse;
}

.tv-th {
    background-color: #f9f9f9;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #1a1a1a;
    font-weight: 600;
}

.tv-td {
    padding: 1rem;
    border-bottom: 1px solid #eeeeee;
}

/* Footer */
.tv-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem 0;
}

.tv-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.tv-footer-h4 {
    color: #c5a059;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.tv-footer-link {
    color: #aaaaaa;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.tv-footer-link:hover {
    color: #ffffff;
}

.tv-footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #777777;
}

/* Content Page Specific Classes */
.tv-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.tv-ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tv-li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.tv-li::before {
    content: '•';
    color: #c5a059;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Nav */
.tv-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.tv-bar {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .tv-h1 { font-size: 2.2rem; }
    .tv-h2 { font-size: 1.8rem; }
    .tv-h3 { font-size: 1.5rem; }
    .tv-hero { padding: 4rem 0; flex-direction: column; text-align: center; }
    .tv-hero-image-wrap { margin-top: 2.5rem; width: 100%; }
    .tv-hero-content { width: 100%; }
    .tv-section { padding: 3rem 0; }
    
    .tv-nav-links { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    .tv-nav-links.active { display: flex; }
    .tv-hamburger { display: flex; }
    
    .tv-grid { grid-template-columns: 1fr; }
    
    .tv-btn { width: 100%; margin-bottom: 1rem; padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    .tv-flex-stack { flex-direction: column !important; }
    .tv-disclosure-bar { font-size: 0.7rem; padding: 0.8rem 0; }
}

@media (max-width: 480px) {
    .tv-h1 { font-size: 1.8rem; }
    .tv-container { padding: 0 1.5rem; }
}
