/* Overall page styling */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    font-family: "Georgia", serif;
    font-size: 18px;
    color: #111;
    margin: 40px auto 60px;
    line-height: 1.55;        /* slightly tighter lines if it feels too airy */
    max-width: 1200px;      /* wide text block */
    padding: 0 40px;        /* side padding so it doesn't touch the edges */
}

/* Two-column layout: text + photo */
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;              /* space between text and photo */
}

/* Left text column: take all remaining width */
.text {
    flex: 1 1 auto;
}

/* Right photo column */
.photo {
    flex: 0 0 auto;
}

.photo img {
    width: 220px;
    border-radius: 4px;
}

/* Typography */
h1 {
    font-size: 44px;
    margin-top: 0;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 18px;
}

p {
    line-height: 1.6;
}

/* Extra space before the Classical Guitar link if you use:
   <p class="guitar-link"> ... </p> */
.guitar-link {
    margin-top: 32px;
}

/* Mobile / narrow screens */
@media (max-width: 900px) {

    /* smaller base text */
    body {
        font-size: 15px;
        line-height: 1.55;
        margin: 20px auto 32px;
        padding: 0 18px;
        max-width: 100%;
    }

    /* slightly smaller name */
    h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    /* slightly smaller section titles */
    h2 {
        font-size: 22px;
        margin-top: 36px;
        margin-bottom: 16px;
    }

    /* stack the layout vertically */
    .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* reduce photo size */
    .photo img {
        width: 170px;
        margin-top: 10px;
    }
}

