/* Old School Investment Fund Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.container {
    background-color: #fff;
    border: 2px solid #000;
    padding: 40px;
    box-shadow: 5px 5px 0px #ccc;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        border-width: 1px;
        box-shadow: none;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 20px;
    }
}

header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px double #000;
    padding-bottom: 20px;
}

.logo {
    margin-bottom: 20px;
}

#fund-logo {
    max-width: 200px;
    max-height: 100px;
    border: 1px solid #000;
    padding: 5px;
    background-color: #fff;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 30px 0 15px 0;
}

section {
    margin-bottom: 30px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

.contact p {
    text-indent: 0;
    margin-bottom: 8px;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 3px double #000;
    text-align: center;
    font-size: 14px;
}

footer p {
    text-align: center;
    text-indent: 0;
    margin-bottom: 8px;
}

/* Print styles for a more authentic old-school look */
@media print {
    body {
        background-color: white;
        color: black;
    }
    
    .container {
        border: none;
        box-shadow: none;
        padding: 20px;
    }
}

/* Simple hover effects for links (if any are added later) */
a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    color: #333;
    text-decoration: none;
}

/* Performance Table Styles */
.performance-table {
    border-collapse: collapse;
    margin: 20px 0;
    font-family: "Times New Roman", Times, serif;
    border: 2px solid #000;
    table-layout: fixed;
}

.performance-table th,
.performance-table td {
    padding: 4px 16px;
    text-align: center;
    border: 1px solid #000;
}

.performance-table td:first-child {
    text-align: left;
}

.performance-table th {
    text-align: center;
    background-color: #f5f5f5;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.performance-table th:first-child {
    text-align: left;
}

.performance-table th:first-child,
.performance-table td:first-child {
    width: 45px;
    min-width: 45px;
}

.performance-table th:nth-child(2),
.performance-table th:nth-child(3),
.performance-table th:nth-child(4),
.performance-table td:nth-child(2),
.performance-table td:nth-child(3),
.performance-table td:nth-child(4) {
    width: 115px !important;
    min-width: 115px !important;
    max-width: 115px !important;
}

.performance-table td {
    font-size: 16px;
}



.disclaimer {
    font-size: 14px;
    font-style: italic;
    text-align: left !important;
    margin-top: 2px;
    color: #666;
    text-indent: 0;
    margin-bottom: 0;
    width: 100%;
    display: block;
}

/* Mobile responsive table adjustments */
@media (max-width: 768px) {
    .performance-table {
        font-size: 14px;
    }
    
    .performance-table th,
    .performance-table td {
        padding: 3px 8px;
        font-size: 12px;
        text-align: center;
    }
    
    .performance-table th:first-child,
    .performance-table td:first-child {
        text-align: left;
    }
    
    .performance-table th {
        font-size: 12px;
    }
    
    .performance-table th:nth-child(2),
    .performance-table th:nth-child(4),
    .performance-table td:nth-child(2),
    .performance-table td:nth-child(4) {
        width: 90px !important;
        min-width: 90px !important;
        max-width: 90px !important;
    }
    
    .performance-table th:nth-child(3),
    .performance-table td:nth-child(3) {
        width: 75px !important;
        min-width: 75px !important;
        max-width: 75px !important;
    }
}
