/* ========================================
   Reset and Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #222;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #222;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background-color: #f8f8f8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #222;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-outline {
    border: 2px solid #333;
    color: #333;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #333;
    color: #fff;
}

.link-button {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid #666;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.link-button:hover {
    color: #333;
    border-color: #333;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.about p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

/* ========================================
   Investment Info Section
   ======================================== */
.investment-info {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.column h3 {
    margin-bottom: 1.5rem;
}

/* ========================================
   Team Section
   ======================================== */
.team {
    padding: 80px 0;
    background-color: #fff;
}

.team h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.team-member {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.team-member:last-child {
    border-bottom: none;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: #888;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.linkedin-link {
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.linkedin-link:hover {
    text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media screen and (max-width: 768px) {

    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }

    /* Two Columns */
    .two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    /* Team section */
    .team-member {
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #08ac9b;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(8, 172, 155, 0.1);
}

.btn-submit {
    width: 100%;
    background-color: #222;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #08ac9b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 172, 155, 0.3);
}

/* Update contact section background to make the white form pop */
.contact {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact p {
    text-align: center;
}


/* ========================================
   Form Tabs & Attachments
   ======================================== */
.form-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    /* Overlap border */
}

.tab-btn:hover {
    color: #444;
    background-color: #f9f9f9;
}

.tab-btn.active {
    color: #08ac9b;
    border-bottom-color: #08ac9b;
}

/* File Input Styling */
input[type='file'] {
    padding: 10px;
    background-color: #f4f4f4;
    border: 1px dashed #ccc;
    cursor: pointer;
}

input[type='file']:hover {
    background-color: #eee;
    border-color: #aaa;
}