/* Tenorite font stack with custom background */
body {
    font-family: "Tenorite", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
    background-color: #F7F6F3; /* Your custom background color */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* REMOVED gray background from header */
header {
    padding: 40px 0; /* Increased padding for larger header */
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Optional subtle bottom border */
}

/* Increase size of h1 */
h1 {
    font-size: 3rem; /* Increased from 2.5rem */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Increase size of first paragraph (p1) */
header p:first-of-type,
.hero-text p:first-of-type,
.intro p:first-of-type {
    font-size: 1.25rem; /* Increased size */
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

/* Optional: Make all paragraphs slightly larger */
p {
    font-size: 1.1rem; /* Slightly larger base size */
    margin-bottom: 1.2em;
    line-height: 1.7;
}

/* Image size reduction */
img {
    max-width: 100%;
    height: auto;
}

/* Specific image size reduction - adjust as needed */
header img,
.hero-image img,
.main-image img {
    max-width: 600px; /* Reduced maximum width */
    width: 100%;
    margin: 30px auto;
    display: block;
    border-radius: 8px; /* Optional rounded corners */
}

/* If you have image classes, reduce them too */
.profile-img,
.featured-img,
.logo-img {
    max-width: 400px; /* Even smaller for specific images */
}

/* Optional: Center content in header */
.header-content {
    text-align: center;
}

/* Additional spacing improvements */
h2 {
    font-size: 2.2rem;
    margin-top: 50px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Form elements also inherit Tenorite */
button, input, textarea, select {
    font-family: "Tenorite", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Links */
a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* If you want specific image size for all images on page */
body img:not([class]) {
    max-width: 500px;
    width: 100%;
}