/* wego-saas-landing-page/css/style.css */

/* General Body Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif; /* Body Text: Highly readable sans-serif font */
    background-color: #0a0a1a; /* Deeper, richer dark background */
    color: #e0e0e0; /* Light-colored text */
    line-height: 1.7; /* Slightly increased line height for readability */
    letter-spacing: 0.02em; /* Subtle letter spacing */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px; /* Increased padding for more whitespace */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Headings: Clean, modern sans-serif font */
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 18px; /* Slightly increased margin */
    line-height: 1.2;
}

h1 {
    font-size: 3.8em; /* Slightly larger */
    line-height: 1.1;
}

h2 {
    font-size: 3em; /* Slightly larger */
}

h3 {
    font-size: 2.4em; /* Slightly larger */
}

p {
    margin-bottom: 1.2em; /* Slightly increased margin */
}

/* Links */
a {
    color: #007bff; /* Primary Accent Color (Blue) */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
    color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px);
}

/* Buttons */
.cta-button, .primary-cta, .secondary-cta {
    display: inline-block;
    padding: 14px 30px; /* Increased padding */
    border-radius: 8px; /* More rounded corners */
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase; /* Uppercase text for CTAs */
    letter-spacing: 0.05em;
}

.primary-cta {
    background-color: #007bff; /* Primary Accent Color (Blue) */
    color: #ffffff;
    border: 2px solid #007bff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4); /* Subtle glow */
}

.primary-cta:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

.secondary-cta {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.secondary-cta:hover {
    background-color: #007bff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

/* Header Section */
.wego-header {
    background-color: rgba(10, 10, 26, 0.9); /* Slightly transparent dark background */
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky; /* Sticky header */
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px); /* Frosted glass effect */
}

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

.wego-header .logo img {
    height: 50px; /* Increased logo size for desktop */
}

.wego-header .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.wego-header .main-nav li {
    margin-left: 35px; /* Increased spacing */
}

.wego-header .main-nav a {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1.15em; /* Slightly larger font */
    position: relative;
}

.wego-header .main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #007bff; /* Accent color underline */
    transition: width 0.3s ease-in-out;
}

.wego-header .main-nav a:hover::after {
    width: 100%;
}

.wego-header .main-nav a:hover {
    color: #0056b3;
}

/* Hero Section */
.wego-hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2a 100%); /* Deeper, more purple gradient */
    padding: 120px 0; /* More vertical space */
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden; /* For background animations */
}

.wego-hero h1 {
    font-size: 5em; /* Larger hero heading */
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.5); /* Subtle text glow */
}

.wego-hero p {
    font-size: 1.6em; /* Larger hero paragraph */
    max-width: 900px;
    margin: 0 auto 50px auto;
    opacity: 0.95;
}

.wego-hero .hero-ctas a {
    margin: 0 15px;
}

/* Features Section */
.wego-features {
    padding: 100px 0; /* More vertical space */
    background-color: #101020; /* Slightly lighter dark background */
    text-align: center;
}

.wego-features h2 {
    margin-bottom: 25px;
    color: #ffffff;
}

.wego-features .section-description {
    font-size: 1.3em;
    max-width: 750px;
    margin: 0 auto 70px auto;
    opacity: 0.85;
    color: #c0c0c0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px; /* Increased gap */
}

.feature-block {
    background-color: #1a1a2e; /* Darker background for blocks */
    padding: 35px; /* Increased padding */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); /* Stronger shadow */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.2); /* Subtle accent border */
}

.feature-block:hover {
    transform: translateY(-7px); /* Lift effect on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.feature-block .icon-placeholder {
    width: 65px; /* Slightly larger icon */
    height: 65px;
    background-color: #007bff; /* Accent color */
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6); /* Icon glow */
}

.feature-block h3 {
    font-size: 2em;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-block p {
    font-size: 1.15em;
    color: #b0b0b0;
}

/* Product Showcase Section */
.wego-product-showcase {
    padding: 100px 0;
    background-color: #0a0a1a;
}

.wego-product-showcase h2 {
    text-align: center;
    margin-bottom: 70px;
    color: #ffffff;
}

.product-item {
    background-color: #1a1a2e;
    padding: 50px; /* Increased padding */
    border-radius: 12px;
    margin-bottom: 80px; /* More space between items */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.product-item h3 {
    font-size: 2.8em;
    margin-bottom: 18px;
    color: #ffffff;
}

.product-item .description {
    font-size: 1.3em;
    max-width: 850px;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.screenshots-carousel img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* More rounded corners */
    margin: 15px; /* Increased margin */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Stronger shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshots-carousel img:hover {
    transform: scale(1.03); /* Subtle zoom on hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
}

.visual-placeholder {
    width: 100%;
    max-width: 650px; /* Slightly larger */
    height: 350px; /* Slightly larger */
    background-color: #1a1a2e; /* Consistent dark background */
    border-radius: 12px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.6em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.3); /* Dashed border for placeholder */
}

/* CTA Section */
.wego-cta-section {
    background: linear-gradient(45deg, #007bff, #0056b3); /* Blue gradient */
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
    box-shadow: inset 0 0 30px rgba(0, 123, 255, 0.5); /* Inner glow */
}

.wego-cta-section h2 {
    font-size: 4em;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.wego-cta-section p {
    font-size: 1.5em;
    max-width: 850px;
    margin: 0 auto 50px auto;
    opacity: 0.95;
}

.wego-cta-section .cta-buttons a {
    margin: 0 20px; /* Increased spacing */
}

/* Footer Section */
.wego-footer {
    background-color: #101020;
    padding: 60px 0; /* More vertical space */
    color: #c0c0c0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wego-footer .footer-logo img {
    height: 40px; /* Increased logo size for footer */
    margin-bottom: 25px;
}

.wego-footer .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.wego-footer .footer-nav li {
    margin: 0 18px 12px 18px; /* Adjusted spacing */
}

.wego-footer .footer-nav a {
    color: #b0b0b0; /* Muted color for footer links */
    font-weight: 400;
    font-size: 1.05em;
}

.wego-footer .footer-nav a:hover {
    color: #007bff; /* Accent color on hover */
}

.wego-footer .social-icons {
    margin-bottom: 25px;
}

.wego-footer .social-icon {
    color: #b0b0b0;
    font-size: 1.6em; /* Slightly larger icons */
    margin: 0 12px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.wego-footer .social-icon:hover {
    color: #007bff;
    transform: translateY(-3px);
}

.wego-footer .copyright {
    font-size: 0.95em;
    color: #808080;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wego-header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .wego-header .logo img {
        height: 40px; /* Adjusted logo size for mobile */
    }

    .wego-header .main-nav ul {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    .wego-header .main-nav li {
        margin: 10px 0;
    }

    .wego-hero {
        padding: 80px 0;
    }

    .wego-hero h1 {
        font-size: 3.5em;
    }

    .wego-hero p {
        font-size: 1.3em;
    }

    .wego-hero .hero-ctas a {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }

    .wego-features {
        padding: 70px 0;
    }

    .wego-features .section-description {
        margin-bottom: 50px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-block {
        padding: 25px;
    }

    .feature-block .icon-placeholder {
        width: 55px;
        height: 55px;
        font-size: 2em;
    }

    .feature-block h3 {
        font-size: 1.7em;
    }

    .wego-product-showcase {
        padding: 70px 0;
    }

    .wego-product-showcase h2 {
        margin-bottom: 50px;
    }

    .product-item {
        padding: 30px;
        margin-bottom: 60px;
    }

    .product-item h3 {
        font-size: 2.2em;
    }

    .product-item .description {
        font-size: 1.1em;
    }

    .screenshots-carousel img {
        margin: 10px;
    }

    .visual-placeholder {
        max-width: 500px;
        height: 250px;
        margin: 30px 0;
        font-size: 1.4em;
    }

    .wego-cta-section {
        padding: 80px 0;
    }

    .wego-cta-section h2 {
        font-size: 3em;
    }

    .wego-cta-section p {
        font-size: 1.2em;
    }

    .wego-cta-section .cta-buttons a {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }

    .wego-footer {
        padding: 40px 0;
    }

    .wego-footer .footer-logo img {
        height: 30px; /* Adjusted footer logo size for mobile */
    }

    .wego-footer .footer-nav li {
        margin: 0 10px 8px 10px;
    }

    .wego-footer .social-icon {
        font-size: 1.4em;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 2em;
    }

    .wego-hero h1 {
        font-size: 2.8em;
    }

    .wego-hero p {
        font-size: 1.1em;
    }

    .wego-cta-section h2 {
        font-size: 2.5em;
    }

    .wego-cta-section p {
        font-size: 1em;
    }
}

/* Animations for elements on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Background Animation */
.wego-hero.hero-animated-background {
    position: relative;
    overflow: hidden;
}

.wego-hero.hero-animated-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(26, 10, 42, 0.15) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: heroBackgroundPan 20s linear infinite alternate;
    z-index: 0;
}

.wego-hero.hero-animated-background > * {
    position: relative;
    z-index: 1;
}

@keyframes heroBackgroundPan {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: none; /* Hidden by default, shown on mobile */
    flex-direction: column;
    justify-content: space-between;
    z-index: 1100; /* Above other content */
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Navigation Styles */
#main-navigation {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#main-navigation.active {
    transform: translateX(0%);
    opacity: 1;
}

/* Responsive Design for Hamburger Menu */
@media (max-width: 768px) {
    .wego-header .main-nav {
        display: none; /* Hide desktop nav */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 150vh;
        background-color: #0a0a1a; /* Solid dark background */
        flex-direction: column;
        justify-content: flex-start; /* Align items to the top */
        align-items: center;
        overflow-y: auto; /* Enable vertical scrolling */
        padding-top: 80px; /* Add padding to the top */
        padding-bottom: 40px; /* Add padding to the bottom */
        opacity: 0;
        transform: translateX(100%); /* Start off-screen */
        z-index: 1050;
    }

    .wego-header .main-nav.active {
        display: flex; /* Show when active */
    }

    .wego-header .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .wego-header .main-nav li {
        margin: 20px 0;
    }

    .wego-header .main-nav a {
        font-size: 2em;
        color: #ffffff;
    }

    .wego-header .cta-button {
        display: none; /* Hide desktop CTA button on mobile */
    }

    .hamburger-menu {
        display: flex; /* Show hamburger on mobile */
    }

    /* Hamburger animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
}
