/* styles.css */
#title-block-header {
  display: none;
}

h2 {
    font-family: 'Inter', sans-serif;
    color: #1f2937; /* text-gray-800 */
    text-align: center;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb; /* bg-gray-50 */
    color: #1f2937; /* text-gray-800 */
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0rem; /* p-4 */
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding: 1.5rem; /* sm:p-6 */
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding: 2rem; /* lg:p-8 */
    }
}
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Header Styles */
.project-header {
    text-align: center;
    margin-bottom: 0rem;
}

.project-header .subtitle {
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem; /* text-lg */
    color: #4b5563; /* text-gray-500 */
}

.project-header .subtitle a {
    font-weight: 600;
    color: #4338ca; /* text-indigo-700 */
    text-decoration: none;
}

.project-header .subtitle a:hover {
    text-decoration: underline;
}


.project-header .tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937; 
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* Card Styles */
.card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem; /* rounded-2xl */
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); /* shadow-sm */
    border: 1px solid #e5e7eb; /* border-gray-200 */
}

.card-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    color: #111827; /* text-gray-900 */
    margin-top: 0rem;
    margin-bottom: 1rem;
}

/* Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Details List Styles */
.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.details-list li {
    display: flex;
    align-items: flex-start;
}

.details-list .icon {
    color: #6366f1; /* text-indigo-500 */
    margin-top: 0.25rem;
    margin-right: 0.75rem;
}

.details-list strong {
    color: #1f2937; /* text-gray-800 */
    display: block;
    margin-bottom: 0.25rem;
}



/* Content Section Styles */
.content-section {
    margin-top: 2.5rem;
}

.card h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: #111827; /* text-gray-900 */
    border-bottom: 1px solid #e5e7eb; /* border-b border-gray-200 */
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.card .icon {
    font-size: 1.5rem;
    color: #6366f1; /* text-indigo-500 */
    margin-right: 0.75rem;
}

.content-text {
    color: #374151; /* text-gray-600 */
    line-height: 1.625;
}

/* Placeholder for Results Section */
.results-placeholder {
    border: 2px dashed #d1d5db;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    color: #6b7280;
    background-color: #f9fafb;
}

.results-placeholder p {
    margin: 0;
    font-weight: 500;
}




/* Button Styles */
.resource-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    text-decoration: none;
}

.btn .icon {
    margin-right: 0.5rem;
}

.btn-primary {
    border-color: #4f46e5;
    background-color: #4f46e5; /* bg-indigo-600 */
    color: white;
}

.card .btn-primary .icon {
    color: white;
}


.btn-primary:hover {
    background-color: #4338ca; /* hover:bg-indigo-700 */
}

.btn-secondary {
    border-color: #0d9488;
    background-color: #0d9488; /* bg-teal-600 */
    color: white;
}


.card .btn-secondary .icon {
    color: white;
}

.btn-secondary:hover {
    background-color: #0f766e; /* hover:bg-teal-700 */
}

.btn-tertiary {
    background-color: #e5e7eb; /* bg-gray-200 */
    color: #374151; /* text-gray-700 */
}

.card .btn-tertiary .icon{
    color: #374151; /* text-gray-700 */
}

.btn-tertiary:hover {
    background-color: #d1d5db; /* hover:bg-gray-300 */
}
