/* ===================================
   GOLD MINE DATA — Brand Colors
   Navy: #1F4E78
   Gold: #C9A961
   Beige: #D4B896
   ==================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #1F4E78;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

a {
    color: #1F4E78;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #C9A961;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    height: 150px;
    width: auto;
}

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

.nav-menu a {
    font-weight: 500;
    color: #1F4E78;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav-menu a.nav-cta {
    font-size: 1rem;
}

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

.nav-cta {
    background-color: #1F4E78;
    color: #fff !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #C9A961;
    color: #1F4E78 !important;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    .logo {
        height: 40px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #1F4E78 0%, #2a5a8a 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #D4B896;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #C9A961;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 4px;
}

.hero-highlight p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0;
}

.hero-highlight strong {
    color: #C9A961;
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-wrapper .btn {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-note-box {
    background-color: transparent;
    border: none;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.6rem 0;
    border-radius: 0;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: #C9A961;
    color: #1F4E78;
}

.btn-primary:hover {
    background-color: #D4B896;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background-color: #1F4E78;
    color: #fff;
    border: 2px solid #1F4E78;
}

.btn-secondary:hover {
    background-color: #C9A961;
    color: #1F4E78;
    border-color: #C9A961;
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

/* ===== WHAT'S AT STAKE SECTION ===== */
#problem {
    scroll-margin-top: 120px;
}

#how-we-work {
    scroll-margin-top: 120px;
}

#about {
    scroll-margin-top: 120px;
}

#contact {
    scroll-margin-top: 120px;
}

.stake-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.stake-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stake-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #C9A961;
    box-shadow: 0 2px 8px rgba(31, 78, 120, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stake-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(31, 78, 120, 0.15);
}

.stake-card h3 {
    color: #1F4E78;
    margin-bottom: 1rem;
}

.stake-card-centered {
    text-align: center;
}

.intro-stakes {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
}

.intro-emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1F4E78;
    white-space: nowrap;
}

.emphasis-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 4rem 0;
    background-color: #fff;
}

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

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.problem-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1F4E78;
}

.problem-item h3 {
    color: #1F4E78;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* ===== CPG SECTION ===== */
.cpg-section {
    padding: 4rem 0;
    background-color: #f0f4f8;
}

.cpg-section h2 {
    text-align: center;
}

.cpg-content {
    max-width: 750px;
    margin: 2rem auto 0;
}

.cpg-list {
    list-style: none;
    margin: 2rem 0;
}

.cpg-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.cpg-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #C9A961;
    font-size: 1.5rem;
}

/* ===== CONVERSATION SECTION ===== */
.conversation-section {
    padding: 4rem 0;
    background-color: #fff;
}

.conversation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.conversation-text h3 {
    margin-bottom: 1.5rem;
}

.conversation-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.conversation-text ul li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
}

.conversation-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9A961;
    font-weight: bold;
    font-size: 1.2rem;
}

.conversation-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.5rem;
}

.conversation-para {
    font-size: 1.05rem;
    text-align: center;
    color: #555;
    font-style: italic;
}

.conversation-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .conversation-content {
        grid-template-columns: 1fr;
    }
}

.intro-engagement {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ===== HOW WE WORK SECTION ===== */
.how-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.how-section h2 {
    text-align: center;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.how-card-step {
    padding: 1.5rem;
}

.how-card {
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(31, 78, 120, 0.08);
    transition: all 0.3s ease;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(31, 78, 120, 0.12);
}

.how-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #C9A961;
    color: #1F4E78;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.how-card h3 {
    margin-bottom: 0.5rem;
}

.how-card p:first-of-type {
    color: #C9A961;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 4rem 0;
    background-color: #fff;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.content-card {
    background-color: #f0f4f8;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #C9A961;
    max-width: 800px;
    margin: 0 auto;
}

.content-card h3 {
    color: #1F4E78;
    margin-bottom: 1rem;
}

.read-more {
    color: #C9A961;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: gap 0.3s ease;
}

.read-more:hover {
    color: #1F4E78;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.about-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 75%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(31, 78, 120, 0.15);
}

.about-content p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-creds {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #C9A961;
}

.about-creds p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #666;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER CTA SECTION ===== */
.footer-cta {
    background: linear-gradient(135deg, #1F4E78 0%, #2a5a8a 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.footer-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-cta > .container > p {
    color: #D4B896;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1F4E78;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #C9A961;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p,
.footer-section a {
    color: #D4B896;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #fff;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 184, 150, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #D4B896;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .footer-cta-buttons {
        flex-direction: column;
    }

    .footer-cta-buttons .btn {
        width: 100%;
    }
}
