@import url('https://fonts.googleapis.com/css2?family=Carter+One&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-orange: #FEBB72;
    --primary-green: #50C678;
    --deep-green: #1a4d2e;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-body: #FFFAF5;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
}

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

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

h1, h2, h3, h4, h5, .brand-font {
    font-family: 'Carter One', cursive;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .logo-img {
    height: 45px;
    width: auto;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--deep-green) !important;
}

.cta-btn {
    background-color: var(--primary-orange);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--text-dark);
    box-shadow: 3px 3px 0px var(--text-dark);
    display: inline-block;
}

.cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--text-dark);
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.text-gradient-green {
    background: linear-gradient(135deg, var(--deep-green), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
}

.icon-box {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    font-size: 2rem;
}

.brand-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.brand-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Carter One', cursive;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.brand-body {
    padding: 1.5rem;
}

.brand-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Badges */
.status-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
}

.badge-dev { background: #e0f2fe; color: #0369a1; }
.badge-beta { background: #dcfce7; color: #15803d; }

/* Sections */
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }

/* Footer */
.footer {
    background: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-logo { height: 40px; margin-bottom: 1.5rem; }
.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
}

.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary-orange); }

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
}

@media (max-width: 991px) {
    .hero-section { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-img { margin-top: 3rem; max-width: 80%; }
}