/* Basic Reset & Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #2c2c2c;
    font-family: 'Lato', 'Montserrat', sans-serif;
    font-weight: 300;
    color: #F5F5F5;
    line-height: 1.6;
}

/* Card Layout */
.card-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.key-image {
    display: block;
    width: 80%;            /* The image will take up 80% of the content width */
    max-width: 350px;      /* But it will not get larger than 350px on desktop */
    height: auto;
    margin: 2rem auto;
    border: none;
}

/* Typography */
.main-header {
    font-family: 'Lora', 'Cormorant Garamond', serif;
    font-weight: 400;
    text-align: center;
    color: #F5F5F5;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.sub-header {
    font-family: 'Lora', 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    color: #C5B358; /* Burnished Gold */
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.bio-text {
    text-align: center;
    padding: 0 1rem;
}

/* Links & Icons Block */
.link-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.link-block a {
    color: #F5F5F5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.2s ease-in-out;
}

.link-block a:hover {
    color: #C5B358; /* Burnished Gold */
}

.link-block svg {
    width: 24px;
    height: 24px;
    fill: currentColor; /* SVG color will match the text color */
}

/* Future Project Block */
.future-link-block {
    text-align: center;
    padding: 1rem;
    margin-bottom: 2rem;
}

.future-link-block h3 {
    font-family: 'Lora', 'Cormorant Garamond', serif;
    color: #F5F5F5;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.future-link-block p {
    font-style: italic;
    opacity: 0.8;
}

/* Separator */
.separator {
    border: none;
    height: 1px;
    background-color: #C5B358; /* Burnished Gold */
    opacity: 0.5;
    margin: 2rem 0;
}

