/* ===== TRIAGA VENTURES – INVESTOR THEME ===== */

/* Global Font & Background */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f14;
    color: #e4e4e4;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
    color: #c5c5c5;
}

/* Paragraph */
p {
    font-size: 16px;
    color: #bdbdbd;
}

/* Section Spacing */
section {
    padding: 80px 10%;
}

/* Buttons */
a.button,
button {
    background: linear-gradient(135deg, #b30000, #ff1a1a);
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    border: none;
}

a.button:hover,
button:hover {
    background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
    transform: translateY(-2px);
}

/* Investor Highlight Section */
.investor-section {
    background: #16161d;
    border-left: 5px solid #b30000;
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
}

/* Cards */
.card {
    background: #1c1c24;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #0b0b10;
    padding: 40px 10%;
    color: #888;
    font-size: 14px;
}

/* Navigation Bar */
.navbar {
    background-color: #111117 !important;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #111117, #1a1a24);
    padding: 120px 10%;
    text-align: left;
}