/* Alice & Family Pte. Ltd. - Banking Aesthetic */
/* Color Palette:
   - Oxford Blue (#002147) - Primary
   - Rich Brown (#4a3728) - Secondary
   - Brass (#b5a642) - Accent
   - Parchment (#f1ebe1) - Background
   - Ivory (#fffff0) - Light
*/

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

body {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #4a3728;
    background-color: #f1ebe1;
    line-height: 1.8;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
}

h2 {
    font-size: 2.75rem;
    color: #002147;
    margin-bottom: 3rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    color: #002147;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b5a642;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #002147 0%, #00335e 100%);
    color: #fffff0;
    padding: 140px 60px 120px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(181, 166, 66, 0.03) 2px,
        rgba(181, 166, 66, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin: 0 auto 2.5rem;
    display: block;
}

.divider {
    width: 80px;
    height: 2px;
    background: #b5a642;
    margin: 0 auto 2.5rem;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #f1ebe1;
    letter-spacing: 0.5px;
    font-style: italic;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Investment Philosophy */
.philosophy {
    padding: 120px 60px;
    background-color: #fffff0;
}

.philosophy-statement {
    max-width: 850px;
    margin: 0 auto 5rem;
    text-align: center;
    font-size: 1.25rem;
    color: #4a3728;
    line-height: 2;
}

.focus-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.focus-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #f1ebe1;
    border-top: 3px solid #b5a642;
    transition: all 0.4s ease;
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 33, 71, 0.08);
}

.focus-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #b5a642;
    opacity: 0.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

.focus-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #002147;
}

.focus-item p {
    font-size: 1.05rem;
    color: #6a5a48;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 60px;
    background-color: #f1ebe1;
}

.portfolio-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fffff0;
    border: 1px solid rgba(0, 33, 71, 0.1);
    box-shadow: 0 10px 60px rgba(0, 33, 71, 0.06);
}

.portfolio-header {
    padding: 50px 60px 30px;
    border-bottom: 1px solid rgba(181, 166, 66, 0.2);
}

.portfolio-logo img {
    max-width: 280px;
    height: auto;
    display: block;
}

.portfolio-body {
    padding: 50px 60px 60px;
}

.portfolio-body h3 {
    font-size: 2.5rem;
    color: #002147;
    margin-bottom: 2rem;
}

.portfolio-description {
    font-size: 1.15rem;
    color: #4a3728;
    line-height: 2;
    margin-bottom: 3rem;
}

.portfolio-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
    padding: 30px 0;
    border-top: 1px solid rgba(181, 166, 66, 0.2);
    border-bottom: 1px solid rgba(181, 166, 66, 0.2);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b5a642;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #002147;
    font-weight: 600;
}

.portfolio-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Links */
.link-primary {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #002147;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #b5a642;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.link-primary:hover {
    color: #b5a642;
    border-bottom-color: #002147;
}

.link-secondary {
    font-size: 1rem;
    color: #6a5a48;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.link-secondary:hover {
    color: #002147;
    border-bottom-color: #002147;
}

/* Founder Section */
.founder {
    padding: 120px 60px;
    background-color: #fffff0;
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
}

.founder-content h3 {
    font-size: 2.5rem;
    color: #002147;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b5a642;
    margin-bottom: 3rem;
    font-weight: 500;
}

.founder-bio p {
    font-size: 1.1rem;
    color: #4a3728;
    line-height: 2;
    margin-bottom: 2rem;
}

.founder-links {
    display: flex;
    gap: 30px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(181, 166, 66, 0.2);
}

/* Company Information */
.company-info {
    padding: 100px 60px;
    background-color: #002147;
    color: #f1ebe1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-block h4 {
    color: #b5a642;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1.05rem;
    color: #f1ebe1;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #001533;
    color: #8a8570;
    padding: 50px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.copyright {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.version {
    font-size: 0.85rem;
    color: #6a6a5a;
    margin-bottom: 0;
    font-family: 'Cormorant Garamond', serif;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        padding: 100px 40px 80px;
    }

    .hero-logo {
        max-width: 350px;
    }

    h2 {
        font-size: 2.25rem;
    }

    .focus-areas {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-header,
    .portfolio-body {
        padding: 40px;
    }

    .portfolio-metrics {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }

    .hero,
    .philosophy,
    .portfolio,
    .founder,
    .company-info {
        padding: 80px 20px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .tagline {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .portfolio-header,
    .portfolio-body {
        padding: 30px 25px;
    }

    .portfolio-logo img {
        max-width: 200px;
    }

    .portfolio-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .founder-links {
        flex-direction: column;
        gap: 20px;
    }
}
