@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Kayah+Li&display=swap');

:root {
    --text: #eae1e2;
    --background: #0a0505;
    --primary: #d89192;
    --secondary: #7f1c1e;
    --accent: #e94345;
    --font: 'Noto Sans Kayah Li', sans-serif;
}

/* Reset body styling */
body {
    font-family: var(--font);
    background-color: var(--background);
    color: var(--text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Container to limit width */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: absolute; /* Fixed positioning */
    top: 20px; /* 20px from the top */
    left: 0; /* Start from the left edge */
    right: 0; /* Stretch to the right edge */
    margin: 0 auto; /* Center horizontally */
    z-index: 1000;
    box-sizing: border-box;
}

/* Navbar Left */
.nav-left {
    display: flex;
    align-items: center;
}

.fire-icon {
    font-size: 20px;
    color: var(--accent);
    margin-right: 5px;
}

.brand-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--text);
}

.blaze {
    color: var(--accent);
}

/* Navbar Center */
.nav-center {
    display: flex;
    align-items: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--text);
    margin: 0 12px;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    transition: color 0.3s ease-in-out;
}

.nav-center a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease-in-out;
}

.nav-center a:hover {
    color: var(--accent);
}

.nav-center a:hover::after {
    width: 100%;
}

/* Navbar Right */
.nav-right {
    display: flex;
    align-items: center;
}

.nav-right .btn {
    background: var(--accent);
    color: var(--text);
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.nav-right .btn:hover {
    background: var(--secondary);
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 400px; /* Reduced height (adjust as needed) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px; /* Reduced padding */
    margin-top: 115px; /* Reduced spacing from nav */
    box-sizing: border-box;
}

.hero-content {
    max-width: 1200px;
    padding: 10px;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem; /* Increased spacing between title and subtext */
    line-height: 1.3; /* Adjusted to prevent text clipping */
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--text) 60%, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
    padding-bottom: 10px; /* Added padding to prevent clipping */
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--primary);
    max-width: 600px;
    background:  transparent;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: backwards;
}

.btn-primary {
    background: var(--accent); /* Solid color instead of gradient */
    padding: 14px 35px;
    border-radius: 8px; /* Less rounded corners */
    font-weight: bold;
    transition: all 0.4s ease;
    border: none;
    color: var(--text); /* Ensure text color is visible */
    text-decoration: none; /* Remove underline for <a> tags */
    display: inline-block; /* Ensure <a> tags behave like buttons */
    cursor: pointer; /* Show pointer cursor on hover */
}

.btn-primary:hover {
    background: var(--secondary); /* Change color on hover */
}

.btn-secondary {
    background: transparent; /* Transparent background */
    border: 2px solid var(--accent); /* Solid border */
    padding: 14px 35px;
    border-radius: 8px; /* Less rounded corners */
    font-weight: bold;
    transition: all 0.4s ease;
    color: var(--accent); /* Text color matches border */
    text-decoration: none; /* Remove underline for <a> tags */
    display: inline-block; /* Ensure <a> tags behave like buttons */
    cursor: pointer; /* Show pointer cursor on hover */
}

.btn-secondary:hover {
    background: var(--accent); /* Solid background on hover */
    color: var(--text); /* Change text color on hover */
}

/* Stats Banner */
.stats-banner {
    width: 100%;
    background: transparent; /* Light background for the banner */
    padding: 40px 20px; /* Padding for the banner */
    margin-top: 40px; /* Spacing from the hero section */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.stats-container {
    display: flex;
    justify-content: space-around; /* Space items evenly */
    align-items: center;
    max-width: 1200px; /* Limit width for better readability */
    margin: 0 auto; /* Center the container */
    gap: 20px; /* Spacing between items */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.stat-item {
    text-align: center;
    flex: 1; /* Allow items to grow and take equal space */
    min-width: 200px; /* Minimum width for each item */
    padding: 20px; /* Padding inside each item */
    border: rgba(255, 255, 255, 0.1); /* Slight background for each item */
    border-radius: 8px; /* Rounded corners for items */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.stat-item:hover {
    transform: translateY(-5px); /* Lift item on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}

.stat-number {
    font-size: 2rem; /* Large number size */
    font-weight: bold;
    color: var(--accent); /* Accent color for numbers */
    margin-bottom: 10px; /* Spacing between number and label */
}

.stat-label {
    font-size: 1rem; /* Smaller label size */
    color: var(--primary); /* Primary color for labels */
    opacity: 0.9;
}

/* Brands Section */
.brands-section {
    width: 100%;
    max-width: 1280px; /* Limit width to 1280px */
    margin: 40px auto; /* Center the section and add spacing */
    padding: 20px;
    text-align: center; /* Center align text and logos */
}

.brands-section h4 {
    font-size: 1.25rem; /* Small heading size */
    color: var(--text); /* Use the text color variable */
    margin-bottom: 20px; /* Spacing below the heading */
    font-weight: 500; /* Medium font weight */
    opacity: 0.8; /* Slightly transparent */
}

.brands-container {
    display: flex;
    justify-content: space-around; /* Space logos evenly */
    align-items: center;
    gap: 20px; /* Spacing between logos */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.brand-logo {
    height: 150px; /* Set a fixed height for all logos */
    width: auto; /* Maintain aspect ratio */
    filter: grayscale(100%); /* Make logos grayscale by default */
    transition: filter 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
    object-fit: contain; /* Ensure logos scale proportionally */
}

.brand-logo:hover {
    filter: grayscale(0%); /* Remove grayscale on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Features Section */
.features-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--background); /* Use your background color */
    color: var(--text); /* Use your text color */
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.features-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.features-subtext {
    font-size: 1.25rem;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-description {
    font-size: 1rem;
    color: var(--primary);
    opacity: 0.9;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--background);
    color: var(--text);
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.pricing-subtext {
    font-size: 1.25rem;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.plan-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.plan-duration {
    font-size: 1rem;
    color: var(--primary);
    opacity: 0.8;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    font-size: 0.85rem; /* Smaller font size for features */
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-features li i {
    color: var(--accent);
}

.plan-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.plan-actions .btn {
    width: 100%;
    max-width: 200px; /* Limit button width */
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    background: var(--accent);
    color: var(--text);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.plan-actions .btn:hover {
    background: var(--secondary);
}

.learn-more {
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0.8;
    margin-top: 5px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2rem;
    }

    .pricing-subtext {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Network Section */
.network-section {
    width: 100%;
    max-width: 1280px;
    padding: 80px 20px;
    background: var(--background);
    color: var(--text);
}

.network-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.network-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.network-subtext {
    font-size: 1.25rem;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.network-map {
    margin-bottom: 3rem;
}

.map-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.network-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--primary);
    opacity: 0.9;
}

.network-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-description {
    font-size: 1rem;
    color: var(--primary);
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Us Banner */
.contact-banner {
    width: 100%;
    padding: 80px 20px;
    background: var(--background);
    color: var(--text);
    text-align: center;
    margin: 40px 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.contact-subtext {
    font-size: 1.25rem;
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-banner .btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--text);
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.4s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.contact-banner .btn-primary:hover {
    background: var(--primary);
    color: var(--background);
}

/* Footer */
.footer {
    width: 100%;
    background: var(--background);
    color: var(--text);
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-brand {
    flex: 1;
    max-width: 300px;
}

.footer-brand .fire-icon {
    font-size: 24px;
    color: var(--accent);
    margin-right: 5px;
}

.footer-brand .brand-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--text);
}

.footer-brand .blaze {
    color: var(--accent);
}

.footer-description {
    font-size: 0.9rem;
    color: var(--primary);
    opacity: 0.8;
    margin-top: 10px;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-social {
    flex: 1;
    max-width: 200px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--primary);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-social {
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .network-title {
        font-size: 2rem;
    }

    .network-subtext {
        font-size: 1rem;
    }

    .network-stats {
        flex-direction: column;
    }

    .network-features {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-title {
        font-size: 2rem;
    }

    .features-subtext {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brands-container {
        gap: 15px; /* Reduce gap for smaller screens */
    }

    .brand-logo {
        height: 40px; /* Slightly smaller logos on mobile */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brands-container {
        gap: 15px; /* Reduce gap for smaller screens */
    }

    .brand-logo {
        height: 30px; /* Smaller logos on mobile */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% { transform: rotate(-45deg) translateX(-200%); }
    100% { transform: rotate(-45deg) translateX(200%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        margin-top: 10px;
        padding: 8px 15px;
    }

    .hero {
        margin-top: 35px;
        min-height: calc(100vh - 105px);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 30px;
    }
}
