/* Vehicle Log Vault Custom Styles - Discount Tire Dark Theme */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #2a2a2a;
    color: #ffffff;
}

/* Promo Banner (Discount Tire Style) */
.home-dtcc-promo-container-class {
    background-color: #d81e05;
    padding: 12px 0;
    text-align: center;
    border-bottom: 2px solid #ef0000;
}

.home-dtcc-promo-text-class-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.home-dtcc-promo-text-class {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.home-dtcc-promo-text-class strong {
    font-weight: 700;
}

.home-dtcc-promo-text-class__link a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.home-dtcc-promo-text-class__link a:hover {
    opacity: 0.8;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(216, 30, 5, 0.3);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #d81e05 0%, #00cc75 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Scrollbar (Dark Theme) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #353535;
}

::-webkit-scrollbar-thumb {
    background: #d81e05;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ef0000;
}

/* Button Enhancements */
.btn-primary {
    background: linear-gradient(135deg, #d81e05 0%, #ef0000 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(216, 30, 5, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 30, 5, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #d81e05;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #d81e05;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #d81e05;
    color: white;
}

/* Card Styles */
.feature-card {
    background: #353535;
    border: 1px solid #404040;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #d81e05;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(216, 30, 5, 0.2);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.3;
}

/* Section Spacing */
section {
    position: relative;
    overflow: hidden;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .home-dtcc-promo-text-class {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 24px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #353535 4%, #404040 25%, #353535 36%);
    background-size: 1000px 100%;
}

/* Icon Containers */
.icon-container {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d81e05 0%, #ef0000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-container i {
    font-size: 24px;
    color: white;
}

/* Navigation Active State */
nav a.active {
    color: #d81e05 !important;
    font-weight: 600;
}

/* Footer Links */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #d81e05 !important;
}

/* Pricing Card Highlight */
.pricing-popular {
    position: relative;
    border: 2px solid #d81e05;
}

.pricing-popular::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    right: 24px;
    background: #6b7280;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Mobile Menu Toggle (if needed) */
.mobile-menu-button {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
}

/* Smooth Transitions */
* {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Focus Styles for Accessibility */
a:focus, button:focus {
    outline: 2px solid #d81e05;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    nav, footer, .home-dtcc-promo-container-class {
        display: none;
    }
}
