/* NextRev Website Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-brand .logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6600; /* Darker orange for better contrast */
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #ecf0f1;
    margin-bottom: 1rem;
}

.content-section .subtitle {
    color: #555;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff6600;
    color: white;
}

.btn-primary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 153, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #ff6600;
    color: #ff6600;
}

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

/* Products Preview Section */
.products-preview {
    padding: 4rem 0;
    background-color: white;
}

.products-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.product-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background-color: white;
    min-height: 60vh;
}

.content-section h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.content-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Product Detail */
.product-detail {
    max-width: 900px;
}

.product-tagline {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Contact Info */
.contact-info {
    max-width: 800px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #ff6600;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Legal Document Styles */
.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.legal-document h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.legal-document h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-document em {
    color: #7f8c8d;
}

.legal-document a {
    color: #ff6600;
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

/* Draft Notice */
.draft-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.draft-notice h2 {
    color: #856404;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    border-top: none;
}

.draft-notice h3 {
    color: #856404;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.draft-notice p {
    color: #856404;
    margin-bottom: 0.75rem;
}

.draft-notice ul {
    color: #856404;
    margin-left: 1.5rem;
}

.draft-notice li {
    margin-bottom: 0.5rem;
}

.draft-notice a {
    color: #0056b3;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

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

.footer a {
    color: #ff6600;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .hero-logo {
        max-width: 280px;
        padding: 1rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .content-section h1 {
        font-size: 2rem;
    }

    .legal-document h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo {
        height: 30px;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .hero-logo {
        max-width: 220px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
