/* style.css */

/* General Body Styles - Overrides for specific fonts or base colors if needed */
body {
    font-family: 'Inter', sans-serif; /* Ensures Inter font is used */
    line-height: 1.6;
    color: #333; /* Default text color */
}

/* Custom classes for spacing and rounding, if Tailwind's defaults aren't enough */
/* You can add more specific Dreamweaver-friendly classes here if needed */
.section-spacing {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.card-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Example of a custom button style not fully covered by Tailwind (less common with Tailwind) */
.btn-primary-custom {
    background-color: #3B82F6; /* Blue-600 */
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px; /* Fully rounded */
    transition: all 0.3s ease-in-out;
}

.btn-primary-custom:hover {
    background-color: #2563EB; /* Blue-700 */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Adjustments for the prose class in about.html */
/* This makes the default text within the 'prose' class a bit larger and more readable */
.prose h1 {
    font-size: 2.5rem; /* Larger heading for better readability */
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1D4ED8; /* Blue-700 */
}

.prose h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2563EB; /* Blue-600 */
}

.prose p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

/* Mobile-specific adjustments (if needed, though Tailwind handles most of this) */
@media (max-width: 767px) {
    /* For smaller screens, you might adjust font sizes or padding more aggressively */
    .hero-section h1 {
        font-size: 2.5rem; /* Smaller hero title on mobile */
    }
    .hero-section p {
        font-size: 1rem;
    }
}
