/* ====================================
   VANQUISH - SITE-WIDE STYLES
   Clear BEM-inspired naming convention
   ==================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --color-primary: #1a1a1a;
    --color-secondary: #f8f9fa;
    --color-accent: #007bff;
    --color-text-muted: #6c757d;
    --shadow-card: 0 15px 35px rgba(0,0,0,0.1);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.05);
    --border-radius: 15px;
    --transition-smooth: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Wix Madefor Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    /*background-color: var(--color-secondary);*/
}

a{
    text-decoration: none;
    color: #879DA9
}

/* ===== SITE-WIDE FOOTER DISCLAIMER ===== */
.landing-page__disclaimer {
    font-family: 'Wix Madefor Display', sans-serif;
    /*font-weight: 600;*/

    letter-spacing: normal;
    color: var(--color-primary);
    margin: 0;
    text-align: left;
    border-top: 1px solid #000;
    padding-top: 20px;
}
.landing-page__disclaimer p{
    font-size: 16px;
    line-height: 22.1px;
}

    /* ===== REUSABLE PAGE COMPONENTS ===== */

/* Page Container */
.page-container {
    min-height: 70vh;
    /*padding: 2rem 0;*/
    max-width: 900px;
    margin: 0 auto;
}

/* Page Headers */
.page-header {
    padding: 2rem 0 1.5rem 0;
}

.page-title {
    /*font-family: 'Wix Madefor Display', sans-serif;*/
    font-family: 'Fraunces', serif;
    font-weight: 380;
    font-size: 50px;
    line-height: 1.25;
    letter-spacing: -0.96px;
    color: var(--color-primary);
    margin: 0;
}

/* Investment/Option Cards */
.investment-options {
    /*max-width: 600px;*/
    /*margin: 0 auto;*/
}

.investment-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    /*transition: var(--transition-smooth);*/
    /*border-radius: var(--border-radius);*/
    overflow: hidden;
    /*box-shadow: var(--shadow-light);*/
}

/*
.investment-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}
*/

.investment-card__image {
    position: relative;
    height: 415px;
    overflow: hidden;
    border-radius: 10px;
}

.investment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.investment-card:hover .investment-card__image img {
    transform: scale(1.02);
}

.investment-card__content {
    padding: 1.5rem 0; /* Remove side padding to match image width */
    background: white;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.investment-card__title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.64px;
    color: var(--color-primary);
    margin: 0;
    font-size: 27px;
}

.investment-card__description {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.32px;
    color: var(--color-primary);
    margin: 0;
    /*word-wrap: break-word;*/
    text-wrap: balance;
    /*padding: 0 12px;*/
}

/* Buttons */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-block;
    min-width: 180px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: #333;
    color: white;
    text-decoration: none;
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
}

/* Investment card continue buttons - normal size, centered */
.btn-continue {
    width: auto !important;
    margin: 0 auto;
    align-self: center;
}

/* Page Navigation */
.page-navigation {
    padding: 2rem 0;
}

/* Navigation Buttons */
.btn-back, .btn-next {
    min-width: 180px;
}

/* Mobile Responsive for Reusable Components */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .investment-card__title {
        font-size: 1.75rem;
    }
    
    .investment-card__image {
        height: 250px;
    }
    
    .investment-options .row {
        margin: 0 -0.5rem;
    }
    
    .investment-options .row [class*="col-"] {
        padding: 0 0.5rem;
    }
    
    /* Maintain side-by-side layout on mobile */
    .investment-options .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .investment-card__title {
        font-size: 1.5rem;
    }
    
    .investment-card__image {
        height: 200px;
    }
    
    .investment-card__content {
        padding: 1rem 0;
    }
    
    .btn {
        min-width: 140px;
        font-size: 1rem;
    }
}
