/* 
    Tenant Wetu Public CSS
    Theme: Modern, Professional, High-Contrast
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --accent: #14b8a6;
    --primary-blue: #38bdf8;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: #0d9488;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 55px; /* Increased from 40px */
    display: block;
}

.nav-links {
    display: flex;
    gap: 25px; /* Increased for better spacing */
    list-style: none;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    color: #1e293b;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hamburg Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1e293b; /* Changed to dark for white bg */
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(20, 184, 166, 0.1) 0%, transparent 40%);
    padding-top: 80px;
}

.hero-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-img {
    flex: 1;
    position: relative;
}

.hero-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Cards Section */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.card .icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.price-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.price-card .amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
    color: var(--text-muted);
    text-align: left;
}

.price-card ul li {
    margin-bottom: 10px;
}

.price-card ul li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #0b111e;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--text-muted);
    margin-top: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding-top: 140px;
        height: auto;
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 40px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .nav-links li {
        width: 100%;
        margin: 0 !important;
    }
    .nav-links a {
        display: block;
        padding: 10px 0;
    }
    .nav-links .btn {
        width: 80%;
        margin: 5px auto !important;
    }
    .nav-links.active {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
