@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #ffffff;
    --text-primary: #111111;
    --text-secondary: #555555;
    --accent-color: #000000;
    --btn-text: #ffffff;
    --border-color: #e5e5e5;
    --hover-bg: #f5f5f5;
}

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

body {
    background: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.background{
    background-image: url("assets/background1.png");
    border: 2px solid rgb(0, 84, 114);
    border-radius: 0 0 40px 40px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
}

.logo h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    letter-spacing: -0.5px;
}

ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

ul a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

ul a:hover {
    color: var(--text-primary);
}

.signin {
    padding: 8px 16px;
    background: transparent;
    color: rgb(0, 0, 0);
    border: 1px solid black;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.signin:hover {
    background: var(--hover-bg);
}

/* Hero Section */
.hero {
    
    backdrop-filter: blur(15px);
    box-shadow: 0 0 65px rgba(12, 11, 14, 0.35);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 5% 0px;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
    color: rgb(0, 0, 0);
}

.hero h2 {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;

    font-weight: 700;
    
}

.hero p {
    font-size: 18px;
    color: rgb(58, 58, 58);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
}

/* Action Area */
.action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 64px;
}

.primary-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.primary-input:focus {
    border-color: var(--text-primary);
}

.primary-btn {
    width: 100%;
    background: rgb(0, 0, 26);
    color: var(--btn-text);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.primary-btn:hover {
    opacity: 0.85;
}

.secondary-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.secondary-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.secondary-btn {
    padding: 12px 20px;
    background: var(--hover-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.secondary-btn:hover {
    background: #e5e5e5;
}

.join-divider {
    font-size: 13px;
    color: #3c3c3c;
    margin: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Illustrations */
.hero-illustration {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 60px;
    display: block;
}

/* Social Proof */
.social-proof {
    text-align: center;
    margin-top: 20px;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.social-proof p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 5%;
}

.bento-card {
    background: #e5e8f8;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.bento-card i {
    font-size: 24px;
    color: var(--text-primary);
}

.bento-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.bento-img {
    width: 100%;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid var(--border-color);
}

/* Footer styling */
.site-footer {
    background-color: #e5e8f8;
    color: var(--text-primary);
    padding: 64px 5% 24px;
    margin-top: 80px;
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo h2 {
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

.brand-tagline {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
}

.brand-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

.contact-info label {
    display: block;
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info span a {
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
}

.contact-info span a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 13px;
}
