/* APPLE-STYLE FONTS & COLORS */
:root {
    --bg-color: #f2e8df; /* Minimalist Beige from your design */
    --text-main: #4a3728; /* Dark Brown for text */
    --accent: #d48c45; /* Orange accent for active links/hover */
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-main);
    /* Apple System Font Stack */
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* NAVIGATION */
nav {
    background: #ffffff;
    padding: 2.5rem 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.logo {
    font-family: "Times New Roman", Times, serif; /* Elegant serif for your name */
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    margin: 0 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

/* SECTION BASICS */
.section {
    padding: 100px 10%;
    max-width: 1100px;
    margin: 0 auto;
}

h1 {
    font-size: 4rem;
    font-family: "Times New Roman", Times, serif;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 20px;
}

.underline {
    width: 380px;
    height: 3px;
    background: var(--text-main);
    margin-top: -5px;
}

/* FLEXBOX FOR ABOUT & PODCAST */
.flex-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.flex-text {
    flex: 1;
    min-width: 320px;
    font-size: 1.6rem;
    font-weight: 400;
}

.flex-image {
    flex: 1;
    min-width: 320px;
}

.flex-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* BLOG & PODCAST LISTS */
.list-item {
    margin: 25px 0;
    font-size: 1.25rem;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.list-item:hover {
    transform: translateX(12px);
    color: var(--accent);
}

/* FOOTER */
footer {
    padding: 120px 10% 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1.1rem;
}

.social-links a {
    display: block;
    text-decoration: none;
    color: var(--text-main);
    text-align: right;
    margin-top: 5px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    .underline { width: 100%; }
    .section { padding: 60px 5%; }
}
