/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Inter Tight', sans-serif;
    color: #ecf7f4;
    background-color: #030908;
    line-height: 1.6;
}

/* Navbar Styling */
.navbar {
    margin-top: 25px; /* Add 25px margin from the top */
    padding: 1rem 0;
    background-color: transparent; /* Remove background color */
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Side: Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ecf7f4;
    text-decoration: none;
}

.logo .accent {
    color: #3bceaa; /* Accent color */
}

/* Centered: Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0 auto; /* Center the links */
}

.nav-links li a {
    color: #ecf7f4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #3bceaa;
}

/* Right Side: Dashboard Button */
.billing-button {
    font-size: 1rem;
    font-weight: 500;
    color: #ecf7f4;
    background-color: #247d67; /* Accent color */
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.billing-button:hover {
    background-color: #3bceaa; /* Secondary color on hover */
}

/* Dashboard Container: Dashboard Button + Language Selector */
.dashboard-container {
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between dashboard button and language selector */
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-button {
    font-size: 1rem;
    font-weight: 500;
    color: #ecf7f4;
    background-color: transparent;
    border: transparent;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-button:hover {
    background-color: transparent;
    color: #ffffff;
}

.flag-icon {
    width: 20px;
    height: 20px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #247d67;
    border-radius: 4px;
    margin-top: 0.5rem;
    display: none; /* Hidden by default */
    flex-direction: column;
    width: 150px;
    list-style: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10; /* Ensure it appears above other elements */
}

.language-selector:hover .language-dropdown {
    display: flex; /* Show dropdown on hover */
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #ecf7f4;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: #3bceaa;
}

/* Hero Section */
.hero {
    background-color: #030908;
    padding: 6rem 1rem;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.157rem; /* Perfect Fourth Scale */
    color: #99ddcc;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.333rem; /* Perfect Fourth Scale */
    color: #ecf7f4;
    margin-bottom: 2rem;
}

.cta-button {
    font-size: 1rem;
    font-weight: 500;
    color: #030908; /* Dark background color */
    background-color: #3bceaa; /* Accent color */
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #247d67; /* Secondary color on hover */
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 70%;
    height: auto;
}

/* Main Content Styling */
.main-content {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.main-content h1 {
    font-size: 2.369rem; /* Perfect Fourth Scale */
    color: #99ddcc;
    margin-bottom: 1rem;
}

.main-content p {
    font-size: 1.333rem; /* Perfect Fourth Scale */
    color: #ecf7f4;
}

/* Features List Styling */
.features-list {
    list-style: none;
    margin: 1rem 0 2rem;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #ecf7f4;
    font-size: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-image img {
        max-width: 90%;
    }

    .features-list {
        text-align: left;
        margin: 1rem auto;
    }
}

/* Button Group Styling */
.button-group {
    display: flex;
    gap: 1rem;
}

/* Discord Button Styling */
.discord-button {
    font-size: 1rem;
    font-weight: 500;
    color: #030908; /* Light text */
    background-color: #3bceaa; /* Discord brand color */
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.discord-button:hover {
    background-color: #247d67; /* Darker Discord brand color on hover */
}

/* Slideshow Section */
/* Slideshow Section */
.slideshow {
    background-color: #030908;
    padding: 2rem 0;
}

.slideshow-container {
    max-width: 1280px; /* Matches max-w-7xl */
    margin: 0 auto;
    display: flex;
    gap: 1rem; /* Space between images */
    justify-content: space-between; /* Distribute the slides evenly */
    align-items: center; /* Center vertically for consistency */
}

.slide {
    flex: 1 1 auto; /* Make all slides take equal width */
    max-width: 200px; /* Limit maximum width for consistent sizing */
    height: auto; /* Let height scale based on aspect ratio */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slide img {
    width: 100%; /* Scale SVG to container width */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure SVG fits nicely */
    display: block; /* Prevent inline spacing issues */
}

/* Features Section */
.features {
    background-color: #030908;
    padding: 4rem 1rem;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    font-size: 2.369rem; /* Perfect Fourth Scale */
    color: #99ddcc;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.333rem; /* Perfect Fourth Scale */
    color: #ecf7f4;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 2rem; /* Gap between grid items */
    padding: 0 1rem; /* Padding for grid */
}

.feature-card {
    background-color: transparent;
    border: 1px solid #3bceaa; /* Border color */
    border-radius: 10px; /* Rounded corners */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    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-header {
    display: flex;
    align-items: center; /* Align icon and heading */
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 1.5rem; /* Icon size */
    color: white;
    background-color: #3bceaa; /* Background color for icon */
    padding: 0.75rem;
    border-radius: 4px; /* Rounded corners for icon */
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #99ddcc; /* Heading color */
    font-weight: 600;
    margin-bottom: 0;
}

.feature-card p {
    font-size: 1rem;
    color: #ecf7f4; /* Light text color */
    margin-top: 1rem; /* Space above the paragraph */
}

.feature-card:hover .feature-icon {
    background-color: #2f9e8f; /* Hover effect for icon */
}

/* Responsive Design for Features Section */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Pricing Section */
.pricing {
    background-color: #030908;
    padding: 4rem 1rem;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.pricing h2 {
    font-size: 2.369rem; /* Perfect Fourth Scale */
    color: #99ddcc;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.333rem; /* Perfect Fourth Scale */
    color: #ecf7f4;
    margin-bottom: 2rem;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    font-size: 1rem;
    font-weight: 500;
    color: #ecf7f4;
    background-color: transparent;
    padding: 0.75rem 2rem;
    border: 2px solid #3bceaa;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button.active {
    background-color: #3bceaa;
    color: #030908;
}

.tab-button:hover {
    background-color: #3bceaa;
    color: #030908;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    display: none; /* Hide all grids by default */
}

.pricing-grid.active {
    display: grid; /* Show active grid */
}

.pricing-card {
    background-color: #0a1a17; /* Slightly lighter background for contrast */
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #99ddcc;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2rem;
    color: #3bceaa;
    margin-bottom: 1rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #ecf7f4;
}

.pricing-card .features-list {
    list-style: none;
    margin: 1rem 0 2rem;
    padding: 0;
    text-align: left;
}

.pricing-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #ecf7f4;
    font-size: 1rem;
}

.pricing-card .features-list li i {
    color: #3bceaa;
    margin-right: 0.5rem;
}

/* Reviews Section */
.reviews {
    background-color: #030908;
    padding: 4rem 1rem;
}

.reviews-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.reviews h2 {
    font-size: 2.369rem; /* Perfect Fourth Scale */
    color: #99ddcc;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    font-size: 1.333rem; /* Perfect Fourth Scale */
    color: #ecf7f4;
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.review-card {
    background-color: #0a1a17;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.review-info h4 {
    font-size: 1.25rem;
    color: #99ddcc;
    margin-bottom: 0.25rem;
}

.review-info p {
    font-size: 0.875rem;
    color: #ecf7f4;
}

.review-body p {
    font-size: 1rem;
    color: #ecf7f4;
    margin-bottom: 1rem;
}

.review-rating {
    color: #3bceaa;
}

/* Footer Section */
.footer {
    background-color: #030908;
    padding: 4rem 1rem;
    color: #ecf7f4;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ecf7f4;
    margin-bottom: 0.5rem;
}

.footer-logo .logo-text .accent {
    color: #3bceaa;
}

.footer-logo .slogan {
    font-size: 0.875rem;
    color: #ecf7f4;
    margin-bottom: 1rem;
}

.footer-logo .copyright {
    font-size: 0.75rem;
    color: #ecf7f4;
    opacity: 0.7;
}

.footer-column {
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #99ddcc;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #ecf7f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3bceaa;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }
}

html {
    scroll-behavior: smooth;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design for Pricing Section */
@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
