/* Global Body Settings */
body {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Gabriola', 'Georgia', 'Times New Roman', serif;
}

/* Headings */
h1 {
    color: rgb(52, 52, 58);
    font-size: 42px;
    margin-bottom: 10px;
}

h2 {
    color: rgb(52, 52, 58);
    font-size: 28px;
}

/* Specific colored headings */
.hero-subtitle {
    color: rgb(88, 42, 61);
    font-size: 32px;
    margin-top: 0;
}

.section-title-accent {
    color: rgb(88, 42, 61);
    font-size: 32px;
}

.price-tag {
    color: rgb(88, 42, 61);
    font-size: 22px;
    margin-top: -10px;
}

/* Paragraphs and Lists */
p, li {
    color: rgb(52, 52, 58);
    font-size: 22px;
    line-height: 1.4;
}

/* Specific text overrides */
.highlight-text {
    color: rgb(38, 88, 92);
    font-size: 25px;
}

.muted-text {
    color: rgb(38, 88, 92);
    font-size: 22px;
}

/* Mobile-first layout (stacked vertically) */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-container img {
    width: 100%;
    max-width: 350px;
    height: auto;
}

/* Desktop layout (side-by-side on screens wider than 600px) */
@media (min-width: 600px) {
    .about-container {
        flex-direction: row;
        align-items: center;
    }
    
    .about-container img {
        width: 40%;
    }
}
